Skip to content

Commit 416180f

Browse files
fhiebertdomhan
authored andcommitted
Update to MXNet 1.3.1. Removed Cuda7.5 and Cuda9.1 requirement files. (#589)
1 parent 2409742 commit 416180f

File tree

9 files changed

+12
-18
lines changed

9 files changed

+12
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ Note that Sockeye has checks in place to not translate with an old model that wa
1010

1111
Each version section may have have subsections for: _Added_, _Changed_, _Removed_, _Deprecated_, and _Fixed_.
1212

13+
## [1.18.61]
14+
### Changed
15+
- Update to MXNet 1.3.1. Removed requirements/requirements.gpu-cu{75,91}.txt as CUDA 7.5 and 9.1 are deprecated.
16+
1317
## [1.18.60]
1418
### Fixed
1519
- Performance optimization to skip the softmax operation for single model greedy decoding is now only applied if no translation scores are required in the output.

docs/setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Sockeye requires:
66
- **Python3**
7-
- [MXNet 1.3.0](https://github.com/apache/incubator-mxnet/tree/1.3.0)
7+
- [MXNet 1.3.1](https://github.com/apache/incubator-mxnet/tree/1.3.1)
88
- numpy
99

1010
## Installation
@@ -28,7 +28,7 @@ wget https://raw.githubusercontent.com/awslabs/sockeye/master/requirements/requi
2828
pip install sockeye --no-deps -r requirements.gpu-cu${CUDA_VERSION}.txt
2929
rm requirements.gpu-cu${CUDA_VERSION}.txt
3030
```
31-
where `${CUDA_VERSION}` can be `75` (7.5), `80` (8.0), `90` (9.0), `91` (9.1), or `92` (9.2).
31+
where `${CUDA_VERSION}` can be `80` (8.0), `90` (9.0), or `92` (9.2).
3232

3333
### → via source...
3434

@@ -47,7 +47,7 @@ running the following:
4747
> pip install -r requirements/requirements.gpu-cu${CUDA_VERSION}.txt
4848
> pip install .
4949
```
50-
where `${CUDA_VERSION}` can be `75` (7.5), `80` (8.0), `90` (9.0), or `91` (9.1), or `92` (9.2).
50+
where `${CUDA_VERSION}` can be `80` (8.0), `90` (9.0), or `92` (9.2).
5151

5252
Developers will be better served by pointing `$PYTHONPATH` to the root of the git-cloned source.
5353

requirements/requirements.gpu-cu75.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pyyaml==3.12
2-
mxnet-cu80mkl==1.3.0.post0
2+
mxnet-cu80mkl==1.3.1
33
numpy>=1.14
44
typing
55
portalocker
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pyyaml==3.12
2-
mxnet-cu90mkl==1.3.0.post0
2+
mxnet-cu90mkl==1.3.1
33
numpy>=1.14
44
typing
55
portalocker

requirements/requirements.gpu-cu91.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pyyaml==3.12
2-
mxnet-cu92mkl==1.3.0.post0
2+
mxnet-cu92mkl==1.3.1
33
numpy>=1.14
44
typing
55
portalocker

requirements/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pyyaml==3.12
2-
mxnet-mkl==1.3.0.post0
2+
mxnet-mkl==1.3.1
33
numpy>=1.14
44
typing
55
portalocker

sockeye/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
__version__ = '1.18.60'
14+
__version__ = '1.18.61'

0 commit comments

Comments
 (0)