Skip to content

Commit

Permalink
chore: update CTranslate2 to v4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkawamoto committed Oct 23, 2024
1 parent cc0dea3 commit 764dce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CTranslate2
Submodule CTranslate2 updated 43 files
+13 −0 CHANGELOG.md
+3 −0 CMakeLists.txt
+12 −4 docs/quantization.md
+8 −0 include/ctranslate2/layers/attention.h
+126 −0 include/ctranslate2/layers/wav2vec2bert.h
+71 −0 include/ctranslate2/models/wav2vec2bert.h
+1 −0 include/ctranslate2/ops/activation.h
+1 −0 include/ctranslate2/ops/ops.h
+21 −0 include/ctranslate2/ops/sigmoid.h
+2 −0 include/ctranslate2/primitives.h
+1 −1 python/cpp/generation_result.cc
+1 −0 python/cpp/module.cc
+1 −0 python/cpp/module.h
+1 −1 python/cpp/translation_result.cc
+124 −0 python/cpp/wav2vec2bert.cc
+2 −0 python/cpp/whisper.cc
+126 −1 python/ctranslate2/converters/transformers.py
+1 −0 python/ctranslate2/models/__init__.py
+1 −0 python/ctranslate2/specs/__init__.py
+6 −0 python/ctranslate2/specs/attention_spec.py
+1 −0 python/ctranslate2/specs/common_spec.py
+86 −0 python/ctranslate2/specs/wav2vec2bert_spec.py
+1 −1 python/ctranslate2/version.py
+1 −1 python/tests/requirements.txt
+80 −0 python/tests/test_transformers.py
+2 −2 python/tools/prepare_build_environment_linux.sh
+17 −3 python/tools/prepare_build_environment_windows.sh
+15 −0 src/cpu/kernels.cc
+2 −0 src/cpu/kernels.h
+9 −0 src/cpu/primitives.cc
+8 −0 src/cuda/helpers.h
+7 −0 src/cuda/primitives.cu
+24 −13 src/decoding.cc
+49 −5 src/layers/attention.cc
+210 −0 src/layers/wav2vec2bert.cc
+3 −0 src/models/model_factory.cc
+118 −0 src/models/wav2vec2bert.cc
+5 −0 src/ops/activation.cc
+5 −0 src/ops/bias_add_gpu.cu
+6 −0 src/ops/dequantize_gpu.cu
+14 −0 src/ops/sigmoid.cc
+10 −0 tests/layers_test.cc
+11 −0 tests/ops_test.cc

0 comments on commit 764dce1

Please sign in to comment.