Skip to content

Commit 9608902

Browse files
committed
0.4.3
1 parent 750267e commit 9608902

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## [master] - 2020-05-19
3+
## [0.4.3] - 2020-05-29
44

55
### Changed
66

LICENSE

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) 2018 Chris Choy ([email protected])
3+
Copyright (c) 2020 NVIDIA CORPORATION.
4+
Copyright (c) 2018-2020 Chris Choy ([email protected])
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy of
67
this software and associated documentation files (the "Software"), to deal in
@@ -19,3 +20,7 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1920
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2021
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2122
SOFTWARE.
23+
24+
Please cite "4D Spatio-Temporal ConvNets: Minkowski Convolutional Neural
25+
Networks", CVPR'19 (https://arxiv.org/abs/1904.08755) if you use any part
26+
of the code.

MinkowskiEngine/__init__.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (c) Chris Choy ([email protected]).
1+
# Copyright (c) 2020 NVIDIA CORPORATION.
2+
# Copyright (c) 2018-2020 Chris Choy ([email protected]).
23
#
34
# Permission is hereby granted, free of charge, to any person obtaining a copy of
45
# this software and associated documentation files (the "Software"), to deal in
@@ -21,7 +22,7 @@
2122
# Please cite "4D Spatio-Temporal ConvNets: Minkowski Convolutional Neural
2223
# Networks", CVPR'19 (https://arxiv.org/abs/1904.08755) if you use any part
2324
# of the code.
24-
__version__ = "0.4.2"
25+
__version__ = "0.4.3"
2526

2627
import os
2728
import sys

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ We visualized a sparse tensor network operation on a sparse tensor, convolution,
4848
## Requirements
4949

5050
- Ubuntu 14.04 or higher
51-
- CUDA 10.1 or higher
51+
- CUDA 10.1.243 or higher
5252
- pytorch 1.5 or higher
5353
- python 3.6 or higher
5454
- GCC 7 or higher
5555

5656

5757
## Installation
5858

59-
You can install the Minkowski Engine with `pip`, with anaconda, or on the system directly. If you experience issues installing the package, please checkout the [common compilation issues page](https://stanfordvl.github.io/MinkowskiEngine/issues.html) or [the installation wiki page](https://github.com/StanfordVL/MinkowskiEngine/wiki/Installation).
59+
You can install the Minkowski Engine with `pip`, with anaconda, or on the system directly. If you experience issues installing the package, please checkout the [the installation wiki page](https://github.com/StanfordVL/MinkowskiEngine/wiki/Installation).
6060
If you cannot find a relevant problem, please report the issue on [the github issue page](https://github.com/StanfordVL/MinkowskiEngine/issues).
6161

6262
### Pip
@@ -67,15 +67,15 @@ First, install pytorch following the [instruction](https://pytorch.org). Next, i
6767
```
6868
sudo apt install libopenblas-dev
6969
pip3 install torch
70-
pip3 install -U MinkowskiEngine
70+
pip3 install -U MinkowskiEngine -v
7171
```
7272

7373
### Pip from the latest source
7474

7575
```
7676
sudo apt install libopenblas-dev
7777
pip3 install torch
78-
pip3 install -U -I git+https://github.com/StanfordVL/MinkowskiEngine
78+
pip3 install -U -I git+https://github.com/StanfordVL/MinkowskiEngine -v
7979
```
8080

8181
### Anaconda

docs/overview.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ We visualized a sparse tensor network operation on a sparse tensor, convolution,
4848
## Requirements
4949

5050
- Ubuntu 14.04 or higher
51-
- CUDA 10.1 or higher
51+
- CUDA 10.1.243 or higher
5252
- pytorch 1.5 or higher
5353
- python 3.6 or higher
5454
- GCC 7 or higher
5555

5656

5757
## Installation
5858

59-
You can install the Minkowski Engine with `pip`, with anaconda, or on the system directly. If you experience issues installing the package, please checkout the [common compilation issues page](https://stanfordvl.github.io/MinkowskiEngine/issues.html) or [the installation wiki page](https://github.com/StanfordVL/MinkowskiEngine/wiki/Installation).
59+
You can install the Minkowski Engine with `pip`, with anaconda, or on the system directly. If you experience issues installing the package, please checkout the [the installation wiki page](https://github.com/StanfordVL/MinkowskiEngine/wiki/Installation).
6060
If you cannot find a relevant problem, please report the issue on [the github issue page](https://github.com/StanfordVL/MinkowskiEngine/issues).
6161

6262
### Pip
@@ -67,15 +67,15 @@ First, install pytorch following the [instruction](https://pytorch.org). Next, i
6767
```
6868
sudo apt install libopenblas-dev
6969
pip3 install torch
70-
pip3 install -U MinkowskiEngine
70+
pip3 install -U MinkowskiEngine -v
7171
```
7272

7373
### Pip from the latest source
7474

7575
```
7676
sudo apt install libopenblas-dev
7777
pip3 install torch
78-
pip3 install -U -I git+https://github.com/StanfordVL/MinkowskiEngine
78+
pip3 install -U -I git+https://github.com/StanfordVL/MinkowskiEngine -v
7979
```
8080

8181
### Anaconda

0 commit comments

Comments
 (0)