Skip to content

Commit

Permalink
Update to onnxruntime 1.16.3 (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
csukuangfj authored Nov 24, 2023
1 parent 2a91524 commit 8444d54
Show file tree
Hide file tree
Showing 26 changed files with 141 additions and 141 deletions.
2 changes: 1 addition & 1 deletion build-android-arm64-v8a.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fi

echo "ANDROID_NDK: $ANDROID_NDK"
sleep 1
onnxruntime_version=v1.16.2
onnxruntime_version=v1.16.3

if [ ! -f ./android-onnxruntime-libs/$onnxruntime_version/jni/arm64-v8a/libonnxruntime.so ]; then
if [ ! -d android-onnxruntime-libs ]; then
Expand Down
2 changes: 1 addition & 1 deletion build-android-armv7-eabi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fi
echo "ANDROID_NDK: $ANDROID_NDK"
sleep 1

onnxruntime_version=v1.16.2
onnxruntime_version=v1.16.3

if [ ! -f ./android-onnxruntime-libs/$onnxruntime_version/jni/armeabi-v7a/libonnxruntime.so ]; then
if [ ! -d android-onnxruntime-libs ]; then
Expand Down
2 changes: 1 addition & 1 deletion build-android-x86-64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fi
echo "ANDROID_NDK: $ANDROID_NDK"
sleep 1

onnxruntime_version=v1.16.2
onnxruntime_version=v1.16.3

if [ ! -f ./android-onnxruntime-libs/$onnxruntime_version/jni/x86_64/libonnxruntime.so ]; then
if [ ! -d android-onnxruntime-libs ]; then
Expand Down
2 changes: 1 addition & 1 deletion build-android-x86.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fi
echo "ANDROID_NDK: $ANDROID_NDK"
sleep 1

onnxruntime_version=v1.16.2
onnxruntime_version=v1.16.3

if [ ! -f ./android-onnxruntime-libs/$onnxruntime_version/jni/x86/libonnxruntime.so ]; then
if [ ! -d android-onnxruntime-libs ]; then
Expand Down
2 changes: 1 addition & 1 deletion build-ios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
dir=build-ios
mkdir -p $dir
cd $dir
onnxruntime_version=1.16.2
onnxruntime_version=1.16.3

if [ ! -f ios-onnxruntime/$onnxruntime_version/onnxruntime.xcframework/ios-arm64/onnxruntime.a ]; then
if [ ! -d ios-onnxruntime ]; then
Expand Down
16 changes: 8 additions & 8 deletions cmake/onnxruntime-linux-aarch64-static.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ if(BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-linux-aarch64-static_lib-1.16.2.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-aarch64-static_lib-1.16.2.zip")
set(onnxruntime_HASH "SHA256=47c3f93612d978900eee8201ab36ee16bfc63b2ccbb216014bea7fdf5930c526")
set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.3/onnxruntime-linux-aarch64-static_lib-1.16.3.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-aarch64-static_lib-1.16.3.zip")
set(onnxruntime_HASH "SHA256=c46dbb2799605684193d8f3c1a4377c3478950ccdb7cc7bf49b914a54cde69ca")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-linux-aarch64-static_lib-1.16.2.zip
${PROJECT_SOURCE_DIR}/onnxruntime-linux-aarch64-static_lib-1.16.2.zip
${PROJECT_BINARY_DIR}/onnxruntime-linux-aarch64-static_lib-1.16.2.zip
/tmp/onnxruntime-linux-aarch64-static_lib-1.16.2.zip
/star-fj/fangjun/download/github/onnxruntime-linux-aarch64-static_lib-1.16.2.zip
$ENV{HOME}/Downloads/onnxruntime-linux-aarch64-static_lib-1.16.3.zip
${PROJECT_SOURCE_DIR}/onnxruntime-linux-aarch64-static_lib-1.16.3.zip
${PROJECT_BINARY_DIR}/onnxruntime-linux-aarch64-static_lib-1.16.3.zip
/tmp/onnxruntime-linux-aarch64-static_lib-1.16.3.zip
/star-fj/fangjun/download/github/onnxruntime-linux-aarch64-static_lib-1.16.3.zip
)

foreach(f IN LISTS possible_file_locations)
Expand Down
16 changes: 8 additions & 8 deletions cmake/onnxruntime-linux-aarch64.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ if(NOT BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-linux-aarch64-1.16.2.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-aarch64-1.16.2.tgz")
set(onnxruntime_HASH "SHA256=4c1a21bd9c3acc17d4176a09b89602954f511a97d489be0cfdf356ebd789c409")
set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.3/onnxruntime-linux-aarch64-1.16.3.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-aarch64-1.16.3.tgz")
set(onnxruntime_HASH "SHA256=784dbef93b40196aa668d29d78294a81c0d21361d36530b817bb24d87e8730e8")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-linux-aarch64-1.16.2.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-linux-aarch64-1.16.2.tgz
${PROJECT_BINARY_DIR}/onnxruntime-linux-aarch64-1.16.2.tgz
/tmp/onnxruntime-linux-aarch64-1.16.2.tgz
/star-fj/fangjun/download/github/onnxruntime-linux-aarch64-1.16.2.tgz
$ENV{HOME}/Downloads/onnxruntime-linux-aarch64-1.16.3.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-linux-aarch64-1.16.3.tgz
${PROJECT_BINARY_DIR}/onnxruntime-linux-aarch64-1.16.3.tgz
/tmp/onnxruntime-linux-aarch64-1.16.3.tgz
/star-fj/fangjun/download/github/onnxruntime-linux-aarch64-1.16.3.tgz
)

foreach(f IN LISTS possible_file_locations)
Expand Down
16 changes: 8 additions & 8 deletions cmake/onnxruntime-linux-arm-static.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ if(BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-linux-arm-static_lib-1.16.2.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-arm-static_lib-1.16.2.zip")
set(onnxruntime_HASH "SHA256=688cadd403c41975d29a9659e2ffcbbcdb5c60de281084a7a93170be5b33e60e")
set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.3/onnxruntime-linux-arm-static_lib-1.16.3.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-arm-static_lib-1.16.3.zip")
set(onnxruntime_HASH "SHA256=f5808e40f89c151b1b11bb01041d8b011850af5038758875863fc86cf6c1d965")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-linux-arm-static_lib-1.16.2.zip
${PROJECT_SOURCE_DIR}/onnxruntime-linux-arm-static_lib-1.16.2.zip
${PROJECT_BINARY_DIR}/onnxruntime-linux-arm-static_lib-1.16.2.zip
/tmp/onnxruntime-linux-arm-static_lib-1.16.2.zip
/star-fj/fangjun/download/github/onnxruntime-linux-arm-static_lib-1.16.2.zip
$ENV{HOME}/Downloads/onnxruntime-linux-arm-static_lib-1.16.3.zip
${PROJECT_SOURCE_DIR}/onnxruntime-linux-arm-static_lib-1.16.3.zip
${PROJECT_BINARY_DIR}/onnxruntime-linux-arm-static_lib-1.16.3.zip
/tmp/onnxruntime-linux-arm-static_lib-1.16.3.zip
/star-fj/fangjun/download/github/onnxruntime-linux-arm-static_lib-1.16.3.zip
)

foreach(f IN LISTS possible_file_locations)
Expand Down
16 changes: 8 additions & 8 deletions cmake/onnxruntime-linux-arm.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ if(NOT BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-linux-arm-1.16.2.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-arm-1.16.2.zip")
set(onnxruntime_HASH "SHA256=3744a80478cba2c08d8a32a4d6a9dab45b47fd9bb4bde2ba1d1633bc00ca9990")
set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.3/onnxruntime-linux-arm-1.16.3.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-arm-1.16.3.zip")
set(onnxruntime_HASH "SHA256=2fa5a10f3f5c188dd42f69306b010bc112cf35c1634a3893535ef5b02a7275c6")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-linux-arm-1.16.2.zip
${PROJECT_SOURCE_DIR}/onnxruntime-linux-arm-1.16.2.zip
${PROJECT_BINARY_DIR}/onnxruntime-linux-arm-1.16.2.zip
/tmp/onnxruntime-linux-arm-1.16.2.zip
/star-fj/fangjun/download/github/onnxruntime-linux-arm-1.16.2.zip
$ENV{HOME}/Downloads/onnxruntime-linux-arm-1.16.3.zip
${PROJECT_SOURCE_DIR}/onnxruntime-linux-arm-1.16.3.zip
${PROJECT_BINARY_DIR}/onnxruntime-linux-arm-1.16.3.zip
/tmp/onnxruntime-linux-arm-1.16.3.zip
/star-fj/fangjun/download/github/onnxruntime-linux-arm-1.16.3.zip
)

foreach(f IN LISTS possible_file_locations)
Expand Down
16 changes: 8 additions & 8 deletions cmake/onnxruntime-linux-x86_64-gpu.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ if(NOT SHERPA_ONNX_ENABLE_GPU)
message(FATAL_ERROR "This file is for NVIDIA GPU only. Given SHERPA_ONNX_ENABLE_GPU: ${SHERPA_ONNX_ENABLE_GPU}")
endif()

set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-linux-x64-gpu-1.16.2.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-gpu-1.16.2.tgz")
set(onnxruntime_HASH "SHA256=84618c385d5cbac48fc714b8fb86e43828b52038144c1e0fdcb4c03293ae2d5a")
set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.3/onnxruntime-linux-x64-gpu-1.16.3.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-gpu-1.16.3.tgz")
set(onnxruntime_HASH "SHA256=bbdc33367c056029b3ac0c042cbca2236b8f59a3a53b4daf23432ef1d8bf52de")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-linux-x64-gpu-1.16.2.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-gpu-1.16.2.tgz
${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-gpu-1.16.2.tgz
/tmp/onnxruntime-linux-x64-gpu-1.16.2.tgz
/star-fj/fangjun/download/github/onnxruntime-linux-x64-gpu-1.16.2.tgz
$ENV{HOME}/Downloads/onnxruntime-linux-x64-gpu-1.16.3.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-gpu-1.16.3.tgz
${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-gpu-1.16.3.tgz
/tmp/onnxruntime-linux-x64-gpu-1.16.3.tgz
/star-fj/fangjun/download/github/onnxruntime-linux-x64-gpu-1.16.3.tgz
)

foreach(f IN LISTS possible_file_locations)
Expand Down
16 changes: 8 additions & 8 deletions cmake/onnxruntime-linux-x86_64-static.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ if(BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-linux-x64-static_lib-1.16.2.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-static_lib-1.16.2.zip")
set(onnxruntime_HASH "SHA256=912205ff23d7b717f6a24e6fa5287feefbea51657b24c0934b0a178ead371bdb")
set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.3/onnxruntime-linux-x64-static_lib-1.16.3.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-static_lib-1.16.3.zip")
set(onnxruntime_HASH "SHA256=ebf0f4f34d1720d8df7e0be0bc2553bcb1469c44121acb43c9d972dad9b00607")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-linux-x64-static_lib-1.16.2.zip
${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-static_lib-1.16.2.zip
${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-static_lib-1.16.2.zip
/tmp/onnxruntime-linux-x64-static_lib-1.16.2.zip
/star-fj/fangjun/download/github/onnxruntime-linux-x64-static_lib-1.16.2.zip
$ENV{HOME}/Downloads/onnxruntime-linux-x64-static_lib-1.16.3.zip
${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-static_lib-1.16.3.zip
${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-static_lib-1.16.3.zip
/tmp/onnxruntime-linux-x64-static_lib-1.16.3.zip
/star-fj/fangjun/download/github/onnxruntime-linux-x64-static_lib-1.16.3.zip
)

foreach(f IN LISTS possible_file_locations)
Expand Down
16 changes: 8 additions & 8 deletions cmake/onnxruntime-linux-x86_64.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ if(NOT BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-linux-x64-1.16.2.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-1.16.2.tgz")
set(onnxruntime_HASH "SHA256=70c769771ad4b6d63b87ca1f62d3f11e998ea0b9d738d6bbdd6a5e6d8c1deb31")
set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.3/onnxruntime-linux-x64-1.16.3.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-1.16.3.tgz")
set(onnxruntime_HASH "SHA256=b072f989d6315ac0e22dcb4771b083c5156d974a3496ac3504c77f4062eb248e")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-linux-x64-1.16.2.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-1.16.2.tgz
${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-1.16.2.tgz
/tmp/onnxruntime-linux-x64-1.16.2.tgz
/star-fj/fangjun/download/github/onnxruntime-linux-x64-1.16.2.tgz
$ENV{HOME}/Downloads/onnxruntime-linux-x64-1.16.3.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-1.16.3.tgz
${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-1.16.3.tgz
/tmp/onnxruntime-linux-x64-1.16.3.tgz
/star-fj/fangjun/download/github/onnxruntime-linux-x64-1.16.3.tgz
)

foreach(f IN LISTS possible_file_locations)
Expand Down
14 changes: 7 additions & 7 deletions cmake/onnxruntime-osx-arm64-static.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ if(BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-osx-arm64-static_lib-1.16.2.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-arm64-static_lib-1.16.2.zip")
set(onnxruntime_HASH "SHA256=d981882bc46d7bdbbf44ea5678549fa620cc33989682cd4f0362c5affbf9e83c")
set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.3/onnxruntime-osx-arm64-static_lib-1.16.3.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-arm64-static_lib-1.16.3.zip")
set(onnxruntime_HASH "SHA256=0481532b262dac3d09845bf11dc8b93c493359947edc449e066f1943b820d789")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-osx-arm64-static_lib-1.16.2.zip
${PROJECT_SOURCE_DIR}/onnxruntime-osx-arm64-static_lib-1.16.2.zip
${PROJECT_BINARY_DIR}/onnxruntime-osx-arm64-static_lib-1.16.2.zip
/tmp/onnxruntime-osx-arm64-static_lib-1.16.2.zip
$ENV{HOME}/Downloads/onnxruntime-osx-arm64-static_lib-1.16.3.zip
${PROJECT_SOURCE_DIR}/onnxruntime-osx-arm64-static_lib-1.16.3.zip
${PROJECT_BINARY_DIR}/onnxruntime-osx-arm64-static_lib-1.16.3.zip
/tmp/onnxruntime-osx-arm64-static_lib-1.16.3.zip
)

foreach(f IN LISTS possible_file_locations)
Expand Down
14 changes: 7 additions & 7 deletions cmake/onnxruntime-osx-arm64.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ if(NOT BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-osx-arm64-1.16.2.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-arm64-1.16.2.tgz")
set(onnxruntime_HASH "SHA256=129eb884b39102492ff6fad3dc5aeaa2b1cca3a941fbd7436aaacf87a549facf")
set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.3/onnxruntime-osx-arm64-1.16.3.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-arm64-1.16.3.tgz")
set(onnxruntime_HASH "SHA256=30f3acaa17c51ccd7ae1f6c3d7ac3154031abb9f91a0eb834aeb804f097ce795")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-osx-arm64-1.16.2.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-osx-arm64-1.16.2.tgz
${PROJECT_BINARY_DIR}/onnxruntime-osx-arm64-1.16.2.tgz
/tmp/onnxruntime-osx-arm64-1.16.2.tgz
$ENV{HOME}/Downloads/onnxruntime-osx-arm64-1.16.3.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-osx-arm64-1.16.3.tgz
${PROJECT_BINARY_DIR}/onnxruntime-osx-arm64-1.16.3.tgz
/tmp/onnxruntime-osx-arm64-1.16.3.tgz
)

foreach(f IN LISTS possible_file_locations)
Expand Down
14 changes: 7 additions & 7 deletions cmake/onnxruntime-osx-universal-static.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ if(BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-osx-universal2-static_lib-1.16.2.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-universal2-static_lib-1.16.2.zip")
set(onnxruntime_HASH "SHA256=d81e878186cddc70d9e0c5b36a0cc1bd7e7e705c97fad5878a300df2d12236a4")
set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.3/onnxruntime-osx-universal2-static_lib-1.16.3.zip")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-universal2-static_lib-1.16.3.zip")
set(onnxruntime_HASH "SHA256=19e39beefbb6d103c1d4c5a2d64bfbd6dd4c21f37d6545170ce3c59a5e2af452")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-osx-universal2-static_lib-1.16.2.zip
${PROJECT_SOURCE_DIR}/onnxruntime-osx-universal2-static_lib-1.16.2.zip
${PROJECT_BINARY_DIR}/onnxruntime-osx-universal2-static_lib-1.16.2.zip
/tmp/onnxruntime-osx-universal2-static_lib-1.16.2.zip
$ENV{HOME}/Downloads/onnxruntime-osx-universal2-static_lib-1.16.3.zip
${PROJECT_SOURCE_DIR}/onnxruntime-osx-universal2-static_lib-1.16.3.zip
${PROJECT_BINARY_DIR}/onnxruntime-osx-universal2-static_lib-1.16.3.zip
/tmp/onnxruntime-osx-universal2-static_lib-1.16.3.zip
)

foreach(f IN LISTS possible_file_locations)
Expand Down
14 changes: 7 additions & 7 deletions cmake/onnxruntime-osx-universal.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ if(NOT BUILD_SHARED_LIBS)
message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}")
endif()

set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-osx-universal2-1.16.2.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-universal2-1.16.2.tgz")
set(onnxruntime_HASH "SHA256=eb5200ceb5d196c5c84eb72a7831a780d1b63349b158405bc28a7817ad125b3d")
set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.3/onnxruntime-osx-universal2-1.16.3.tgz")
set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-universal2-1.16.3.tgz")
set(onnxruntime_HASH "SHA256=6428d0f0ff1386e8e8256a708e187c1f8861387c9554bfc9c5f3390ffa0df5cc")

# If you don't have access to the Internet,
# please download onnxruntime to one of the following locations.
# You can add more if you want.
set(possible_file_locations
$ENV{HOME}/Downloads/onnxruntime-osx-universal2-1.16.2.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-osx-universal2-1.16.2.tgz
${PROJECT_BINARY_DIR}/onnxruntime-osx-universal2-1.16.2.tgz
/tmp/onnxruntime-osx-universal2-1.16.2.tgz
$ENV{HOME}/Downloads/onnxruntime-osx-universal2-1.16.3.tgz
${PROJECT_SOURCE_DIR}/onnxruntime-osx-universal2-1.16.3.tgz
${PROJECT_BINARY_DIR}/onnxruntime-osx-universal2-1.16.3.tgz
/tmp/onnxruntime-osx-universal2-1.16.3.tgz
)

foreach(f IN LISTS possible_file_locations)
Expand Down
Loading

0 comments on commit 8444d54

Please sign in to comment.