From 61492e00246b5e3818b56fb27d570220c87b6194 Mon Sep 17 00:00:00 2001 From: Minh-Thuc <46375464+minhthuc2502@users.noreply.github.com> Date: Thu, 15 Feb 2024 13:49:12 +0100 Subject: [PATCH] Update changelog for new release 4.0.0 (#1623) Co-authored-by: thucpham --- CHANGELOG.md | 23 ++++++++++++++++++- python/ctranslate2/version.py | 2 +- .../benchmark/opus_mt_ende/marian/Dockerfile | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a1adfbe8..19d5893b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,28 @@ ### Fixes and improvements -## [v3.24.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.23.0) (2024-01-08) +## [v4.0.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v4.0.0) (2024-02-15) + +This major version introduces the breaking change while updating to cuda 12. + +### Breaking changes + +### Python + +* Support cuda 12 + +### New features + +* Add feature to_device() in class StorageView in Python to move data between host <-> device + +### Fixes and improvements + +* Implement Conv1D with im2col and GEMM to improvement in performance +* Get tokens in the range of the vocab size for LlaMa models +* Fix loss of performance +* Update cibuildwheel to 2.16.5 + +## [v3.24.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.24.0) (2024-01-08) ### New features * Support of new option offset to ignore token score of special tokens diff --git a/python/ctranslate2/version.py b/python/ctranslate2/version.py index 4416d629f..1e4b744c1 100644 --- a/python/ctranslate2/version.py +++ b/python/ctranslate2/version.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "3.24.0" +__version__ = "4.0.0" diff --git a/tools/benchmark/opus_mt_ende/marian/Dockerfile b/tools/benchmark/opus_mt_ende/marian/Dockerfile index 9e800a6d5..a4a543912 100644 --- a/tools/benchmark/opus_mt_ende/marian/Dockerfile +++ b/tools/benchmark/opus_mt_ende/marian/Dockerfile @@ -1,4 +1,4 @@ -FROM nvidia/cuda:11.2.2-devel-ubuntu20.04 as builder +FROM nvidia/cuda:12.2.2-devel-ubuntu20.04 as builder RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \