forked from nbigaouette/onnxruntime-rs
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
directmlのダウンロードをwindowsでのみ有効にするように修正
- Loading branch information
1 parent
7d112cb
commit 0a8c6cd
Showing
3 changed files
with
39 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = ["Nicolas Bigaouette <[email protected]>"] | ||
edition = "2018" | ||
name = "onnxruntime-sys" | ||
version = "0.0.23" | ||
version = "0.0.24" | ||
|
||
description = "Unsafe wrapper around Microsoft's ONNX Runtime" | ||
documentation = "https://docs.rs/onnxruntime-sys" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = ["Nicolas Bigaouette <[email protected]>"] | ||
edition = "2018" | ||
name = "onnxruntime" | ||
version = "0.0.28" | ||
version = "0.0.29" | ||
|
||
description = "Wrapper around Microsoft's ONNX Runtime" | ||
documentation = "https://docs.rs/onnxruntime" | ||
|
@@ -19,7 +19,7 @@ name = "integration_tests" | |
required-features = ["model-fetching"] | ||
|
||
[dependencies] | ||
onnxruntime-sys = { path = "../onnxruntime-sys", version = "0.0.23" } | ||
onnxruntime-sys = { path = "../onnxruntime-sys", version = "0.0.24" } | ||
|
||
lazy_static = "1.4" | ||
ndarray = "0.15" | ||
|