Skip to content

Commit

Permalink
Bump version to 2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Apr 4, 2022
1 parent 619336a commit 707feb4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@

### Fixes and improvements

## [v2.15.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.15.0) (2022-04-04)

### New features

* Expose translator option `max_queued_batches` to configure the maximum number of queued batches (when the queue is full, future requests will block until a free slot is available)
* Allow converters to customize the vocabulary special tokens `<unk>`, `<s>`, and `</s>`

### Fixes and improvements

* Fix compatibility of models converted on Windows with other platforms by saving the vocabulary files with the newline character "\n" instead of "\r\n"
* Clarify conversion error when no TensorFlow checkpoints are found in the configured model directory
* Enable fused QKV transposition by switching the heads and time dimensions before the QKV split
* Cache the prepared source lengths mask in the Transformer decoder state and reuse it in the next decoding steps
* Pad the output layer to enable Tensor Cores only once instead of updating the layer on each batch
* Vectorize copy in Concat and Split ops on GPU
* Factorize all OpenMP parallel for loops to call the `parallel_for` function
* Compile CUDA kernels for deprecated Compute Capabilities that are not yet dropped by CUDA:
* CUDA 11: 3.5 and 5.0
* CUDA 10: 3.0

## [v2.14.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.14.0) (2022-03-16)

### New features
Expand Down
2 changes: 1 addition & 1 deletion python/ctranslate2/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version information."""

__version__ = "2.14.0"
__version__ = "2.15.0"

0 comments on commit 707feb4

Please sign in to comment.