Skip to content

Commit

Permalink
Updated ONNX Runtime to 1.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Jul 25, 2023
1 parent 3412d09 commit 13c1bde
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## 0.7.7 (unreleased)

- Updated ONNX Runtime to 1.15.1
- Fixed error with `dup` and `clone`

## 0.7.6 (2023-05-24)
Expand Down
12 changes: 6 additions & 6 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ task :release_platform do
end

def version
"1.15.0"
"1.15.1"
end

def download_official(library, remote_lib, file, sha256)
Expand Down Expand Up @@ -79,17 +79,17 @@ end
# https://github.com/microsoft/onnxruntime/releases
namespace :vendor do
task :linux do
download_official("libonnxruntime.so", "libonnxruntime.so.#{version}", "onnxruntime-linux-x64-#{version}.tgz", "1b3e88c0ea8e2770e5c9b11a36886097954a642c054b341992dcef268d8bb902")
download_official("libonnxruntime.arm64.so", "libonnxruntime.so.#{version}", "onnxruntime-linux-aarch64-#{version}.tgz", "69656d8dd35633f52d79dbe5b82475a8c896c39a74eddaa8b95ae7daac0099c4")
download_official("libonnxruntime.so", "libonnxruntime.so.#{version}", "onnxruntime-linux-x64-#{version}.tgz", "5492f9065f87538a286fb04c8542e9ff7950abb2ea6f8c24993a940006787d87")
download_official("libonnxruntime.arm64.so", "libonnxruntime.so.#{version}", "onnxruntime-linux-aarch64-#{version}.tgz", "85272e75d8dd841138de4b774a9672ea93c1be108d96038c6c34a62d7f976aee")
end

task :mac do
download_official("libonnxruntime.dylib", "libonnxruntime.#{version}.dylib", "onnxruntime-osx-x86_64-#{version}.tgz", "9d932b8a5b13e0f422ac6b9a23d845728e127fd4652e6872bc1e82969cac0af8")
download_official("libonnxruntime.arm64.dylib", "libonnxruntime.#{version}.dylib", "onnxruntime-osx-arm64-#{version}.tgz", "beed38a4768cc0d0dadf879b76bd44f5c68c3a57bfaf02dea876ea5e364003ed")
download_official("libonnxruntime.dylib", "libonnxruntime.#{version}.dylib", "onnxruntime-osx-x86_64-#{version}.tgz", "4b66ebbca24b8b96f6b74655fee3610a7e529b4e01f6790632f24ee82b778e5a")
download_official("libonnxruntime.arm64.dylib", "libonnxruntime.#{version}.dylib", "onnxruntime-osx-arm64-#{version}.tgz", "df97832fc7907c6677a6da437f92339d84a462becb74b1d65217fcb859ee9460")
end

task :windows do
download_official("onnxruntime.dll", "onnxruntime.dll", "onnxruntime-win-x64-#{version}.zip", "577081480887e18d9d1baf4f38e61f416dbd54b3b585cb6267354c76ba47e741")
download_official("onnxruntime.dll", "onnxruntime.dll", "onnxruntime-win-x64-#{version}.zip", "261308ee5526dfd3f405ce8863e43d624a2e0bcd16b2d33cdea8c120ab3534d3")
end

task all: [:linux, :mac, :windows]
Expand Down

0 comments on commit 13c1bde

Please sign in to comment.