Skip to content

Commit a48e2de

Browse files
committed
fix(onnxruntime): update to v1.21.1 to fix Eigen hash mismatch
ONNX Runtime v1.20.0 build fails due to hash mismatch when downloading the Eigen dependency. Update to v1.21.1 which should have updated dependency hashes. Error: Hash of downloaded file has unexpected value expected: 'be8be39fdbc6e60e94fa7870b280707069b5b81a' actual: '32b145f525a8308d7ab1c09388b2e288312d8eba'
1 parent 3ede9a0 commit a48e2de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/onnxruntime/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ The CLI's `extract-onnx-runtime.mjs` script:
4545

4646
## Version
4747

48-
Based on ONNX Runtime v1.20.0 (or latest stable).
48+
Based on ONNX Runtime v1.21.1.

packages/onnxruntime/scripts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const CLEAN_BUILD = args.includes('--clean')
5454
const ROOT_DIR = path.join(__dirname, '..')
5555
const BUILD_DIR = path.join(ROOT_DIR, 'build')
5656
const OUTPUT_DIR = path.join(BUILD_DIR, 'wasm')
57-
const ONNX_VERSION = 'v1.20.0'
57+
const ONNX_VERSION = 'v1.21.1'
5858
const ONNX_REPO = 'https://github.com/microsoft/onnxruntime.git'
5959
const ONNX_SOURCE_DIR = path.join(BUILD_DIR, 'onnxruntime-source')
6060

0 commit comments

Comments
 (0)