Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.9.10"
current_version = "0.9.11"
commit = true
tag = false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-14]
os: [macos-15, macos-15-intel]
backend: [ruy, accelerate]
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v21.1.1
rev: v21.1.2
hooks:
- id: clang-format
types_or: [c++, c, cuda]
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["ct2rs", "ct2rs-platform"]
resolver = "2"

[workspace.package]
version = "0.9.10"
version = "0.9.11"
authors = ["Junpei Kawamoto <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ Add this crate to your `Cargo.toml` with selecting the backends you want to use

```toml
[dependencies]
ct2rs = { version = "0.9.10", features = ["cuda", "dnnl", "mkl"] }
ct2rs = { version = "0.9.11", features = ["cuda", "dnnl", "mkl"] }
```

Or you can use platform-specific default features by using the `ct2rs-platform` crate:

```toml
[dependencies]
ct2rs = { version = "0.9.10", package = "ct2rs-platform" }
ct2rs = { version = "0.9.11", package = "ct2rs-platform" }
```

If you want [Whisper](https://huggingface.co/docs/transformers/model_doc/whisper) model support,
Expand Down
10 changes: 5 additions & 5 deletions ct2rs-platform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,31 @@ repository.workspace = true
description = "Platform-specific default feature sets for ct2rs"

[target.'cfg(target_os = "windows")'.dependencies.ct2rs]
version = "=0.9.10"
version = "=0.9.11"
path = "../ct2rs"
default-features = false
features = ["openmp-runtime-intel", "dnnl", "cuda", "cudnn", "cuda-dynamic-loading", "mkl"]

[target.'cfg(all(target_os = "macos", not(target_arch = "aarch64")))'.dependencies.ct2rs]
version = "=0.9.10"
version = "=0.9.11"
path = "../ct2rs"
default-features = false
features = ["dnnl", "mkl"]

[target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies.ct2rs]
version = "=0.9.10"
version = "=0.9.11"
path = "../ct2rs"
default-features = false
features = ["accelerate", "ruy"]

[target.'cfg(all(target_os = "linux", not(target_arch = "aarch64")))'.dependencies.ct2rs]
version = "=0.9.10"
version = "=0.9.11"
path = "../ct2rs"
default-features = false
features = ["dnnl", "openmp-runtime-comp", "cuda", "cudnn", "cuda-dynamic-loading", "mkl", "tensor-parallel"]

[target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'.dependencies.ct2rs]
version = "=0.9.10"
version = "=0.9.11"
path = "../ct2rs"
default-features = false
features = ["openmp-runtime-comp", "openblas", "ruy"]
Expand Down
2 changes: 1 addition & 1 deletion ct2rs-platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Add this crate as the `package` argument of the `ct2rs` crate in your `Cargo.tom

```toml
[dependencies]
ct2rs = { package = "ct2rs-platform", version = "0.9.10" }
ct2rs = { package = "ct2rs-platform", version = "0.9.11" }
```

See the [ct2rs crate](../README.md) for more information.
Loading