Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

onnxruntimeを1.14.0に上げる #20

Merged
merged 19 commits into from
Apr 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c7e1f10
onnxruntimeを1.14.0に上げる
PickledChair Apr 10, 2023
e7a6875
Automated generate bindings for x86_64-unknown-linux-gnu
PickledChair Apr 10, 2023
a187ed6
Automated generate bindings for aarch64-apple-darwin
PickledChair Apr 10, 2023
9d47fee
Automated generate bindings for aarch64-unknown-linux-gnu
PickledChair Apr 10, 2023
f9fa207
Automated generate bindings for x86_64-apple-darwin
PickledChair Apr 10, 2023
9a0651b
Automated generate bindings for aarch64-linux-android
PickledChair Apr 10, 2023
8141f29
Automated generate bindings for x86_64-pc-windows-msvc
PickledChair Apr 10, 2023
db8a243
Automated generate bindings for x86_64-pc-windows-msvc
PickledChair Apr 10, 2023
dd31cd7
Automated generate bindings for i686-pc-windows-msvc
PickledChair Apr 10, 2023
f9b5064
Merge pull request #15 from PickledChair/update-to-ort-v1_14_0_auto_g…
PickledChair Apr 10, 2023
6326eb3
Merge pull request #14 from PickledChair/update-to-ort-v1_14_0_auto_g…
PickledChair Apr 10, 2023
5b2f87f
Merge pull request #13 from PickledChair/update-to-ort-v1_14_0_auto_g…
PickledChair Apr 10, 2023
d7b2a70
Merge pull request #12 from PickledChair/update-to-ort-v1_14_0_auto_g…
PickledChair Apr 10, 2023
afdd9f5
Merge pull request #11 from PickledChair/update-to-ort-v1_14_0_auto_g…
PickledChair Apr 10, 2023
3174a6f
Merge pull request #10 from PickledChair/update-to-ort-v1_14_0_auto_g…
PickledChair Apr 10, 2023
3fb14f4
Merge pull request #9 from PickledChair/update-to-ort-v1_14_0_auto_ge…
PickledChair Apr 10, 2023
f2e144f
Merge pull request #8 from PickledChair/update-to-ort-v1_14_0_auto_ge…
PickledChair Apr 10, 2023
2bc15ba
OrtCUDAProviderOptionsの新しいフィールドtunable_op_enabledに対応
PickledChair Apr 10, 2023
94535e7
Merge branch 'master' into update-to-ort-v1_14_0
PickledChair Apr 10, 2023
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 onnxruntime-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::{
/// WARNING: If version is changed, bindings for all platforms will have to be re-generated.
/// To do so, run this:
/// cargo build --package onnxruntime-sys --features generate-bindings
const ORT_VERSION: &str = "1.13.1";
const ORT_VERSION: &str = "1.14.0";

/// Base Url from which to download pre-built releases/
const ORT_RELEASE_BASE_URL: &str = "https://github.com/microsoft/onnxruntime/releases/download";
Expand Down
Loading