Skip to content

Commit

Permalink
Ensure recent numpy version to avoid MKL conflicts. (#494)
Browse files Browse the repository at this point in the history
* Making sure to use numpy>=1.14 to avoid MKL conflicts.

* changelog

* Update CHANGELOG.md

* Update __init__.py

* Update CHANGELOG.md

* Update __init__.py
  • Loading branch information
tdomhan authored Jul 27, 2018
1 parent 1474841 commit 64a5cbf
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ Note that Sockeye has checks in place to not translate with an old model that wa

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

## [1.18.41]
### Changed
- Require numpy 1.14 or later to avoid MKL conflicts between numpy as mxnet-mkl.

## [1.18.40]
### Fixed
- Fixed bad check for existence of negative constraints.
- Resolved conflict for phrases that are both positive and negative constraints.

## [1.18.40]
### Fixed
- Fixed softmax temperature at inference time.

## [1.18.39]
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.gpu-cu75.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml==3.12
mxnet-cu75mkl==1.2.1
numpy>=1.12
numpy>=1.14
typing
2 changes: 1 addition & 1 deletion requirements/requirements.gpu-cu80.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml==3.12
mxnet-cu80mkl==1.2.1
numpy>=1.12
numpy>=1.14
typing
2 changes: 1 addition & 1 deletion requirements/requirements.gpu-cu90.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml==3.12
mxnet-cu90mkl==1.2.1
numpy>=1.12
numpy>=1.14
typing
2 changes: 1 addition & 1 deletion requirements/requirements.gpu-cu91.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml==3.12
mxnet-cu91mkl==1.2.1
numpy>=1.12
numpy>=1.14
typing
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml==3.12
mxnet-mkl==1.2.1
numpy>=1.12
numpy>=1.14
typing
2 changes: 1 addition & 1 deletion sockeye/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

__version__ = '1.18.40'
__version__ = '1.18.41'

0 comments on commit 64a5cbf

Please sign in to comment.