Skip to content

Commit

Permalink
Bump version to 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Jul 16, 2020
1 parent dd13987 commit 27a2007
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,24 @@

### New features

* Support `float16` data type for model conversion (with `--quantization float16`) and computation (with `--compute_type float16`). FP16 execution requires a NVIDIA GPU with Compute Capability >= 7.0.
### Fixes and improvements

## [v1.12.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v1.12.0) (2020-07-16)

### Changes

* Docker images based on Ubuntu 16.04 are no longer updated

### New features

* Support `float16` data type for model conversion (with `--quantization float16`) and computation (with `--compute_type float16`). FP16 execution can improve performance by up to 50% on NVIDIA GPUs with Compute Capability >= 7.0.
* Add Docker images with newer CUDA versions, which can improve performance in some cases:
* `latest-ubuntu18-cuda10.0` (same as `latest-ubuntu18-gpu`)
* `latest-ubuntu18-cuda10.1`
* `latest-ubuntu18-cuda10.2`
* `latest-centos7-cuda10.0` (same as `latest-centos7-gpu`)
* `latest-centos7-cuda10.1`
* `latest-centos7-cuda10.2`
* Allow setting a computation type per device (e.g. `Translator(..., compute_type={"cuda": "float16", "cpu": "int8"})` with the Python API)
* [C++] Add `ModelReader` interface to customize model loading

Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def _maybe_add_library_root(lib_name):

setup(
name="ctranslate2",
version="1.11.0",
version="1.12.0",
license="MIT",
description="Optimized inference engine for OpenNMT models",
long_description=_get_long_description(),
Expand Down

0 comments on commit 27a2007

Please sign in to comment.