diff --git a/README.md b/README.md index f196c80..5110831 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,8 @@ curl http://localhost:3000/models - `cuda_tf32` featureでcudaのtf32機能 - `tensorrt` featureでbert部分のtensorrt利用 - `dynamic` featureで手元のonnxruntime共有ライブラリを利用(`ORT_DYLIB_PATH=./libonnxruntime.dll`などで指定) -- `directml` featureでdirectmlの利用 -ができます。 +- `directml` featureでdirectmlの利用ができます。 +- `coreml` featureでcoremlの利用ができます。 ### 環境変数 diff --git a/sbv2_api/Cargo.toml b/sbv2_api/Cargo.toml index 4b0b43a..44b959e 100644 --- a/sbv2_api/Cargo.toml +++ b/sbv2_api/Cargo.toml @@ -9,7 +9,7 @@ axum = "0.7.5" dotenvy.workspace = true env_logger.workspace = true log = "0.4.22" -sbv2_core = { version = "0.1.1", path = "../sbv2_core" } +sbv2_core = { version = "0.1.2", path = "../sbv2_core" } serde = { version = "1.0.210", features = ["derive"] } tokio = { version = "1.40.0", features = ["full"] } diff --git a/sbv2_bindings/Cargo.toml b/sbv2_bindings/Cargo.toml index f372191..b757387 100644 --- a/sbv2_bindings/Cargo.toml +++ b/sbv2_bindings/Cargo.toml @@ -12,4 +12,4 @@ crate-type = ["cdylib"] anyhow.workspace = true ndarray.workspace = true pyo3 = { version = "0.22.0", features = ["anyhow"] } -sbv2_core = { version = "0.1.0", path = "../sbv2_core" } +sbv2_core = { version = "0.1.2", path = "../sbv2_core" }