Skip to content

Commit 2d92497

Browse files
tianleiwuXXXXRT666derdeljan-msftgithub-actions[bot]mocknen
authored
ORT 1.24.4 release cherry pick round 1 (#27682)
This cherry-picks the following commits for the release: | Commit ID | PR Number | Commit Title | |-----------|-----------|-------------| | eb23be8 | #27354 | Update python_requires | | d626b56 | #27479 | [QNN EP] Enable offline x64 compilation with memhandle IO type | | 60ce0e6 | #27607 | Use `_tpause` instead of `__builtin_ia32_tpause` | | 69feb84 | #27591 | Add PCI bus fallback for Linux GPU device discovery in containerized environments | | de92668 | #27650 | Revert "[QNN EP] Fix error messages being logged as VERBOSE instead o… | | 0f66526 | #27644 | [Plugin EP] Check for nullptr before dereferencing | | 929f73e | #27666 | Plugin EP: Fix bug that incorrectly assigned duplicate MetDef IDs to fused nodes in different GraphViews | --------- Co-authored-by: XXXXRT666 <157766680+XXXXRT666@users.noreply.github.com> Co-authored-by: derdeljan-msft <derdeljan@microsoft.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Shogo Yamazaki <f9ifphmiz7i8akhowc8l5t1x9qp0lfu4@mocknen.net> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: baijumeswani <12852605+baijumeswani@users.noreply.github.com> Co-authored-by: edgchen1 <18449977+edgchen1@users.noreply.github.com> Co-authored-by: Baiju Meswani <bmeswani@microsoft.com> Co-authored-by: Artur Wojcik <artur.wojcik@amd.com> Co-authored-by: Adrian Lizarraga <adlizarraga@microsoft.com>
1 parent 3a728b7 commit 2d92497

38 files changed

+698
-115
lines changed

VERSION_NUMBER

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.3
1+
1.24.4

cmake/onnxruntime_common.cmake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ if (WIN32)
8484
"${ONNXRUNTIME_ROOT}/core/platform/windows/device_discovery.cc")
8585
elseif (LINUX)
8686
list(APPEND onnxruntime_common_src_patterns
87-
"${ONNXRUNTIME_ROOT}/core/platform/linux/device_discovery.cc")
87+
"${ONNXRUNTIME_ROOT}/core/platform/linux/device_discovery.cc"
88+
"${ONNXRUNTIME_ROOT}/core/platform/linux/pci_device_discovery.h")
8889
elseif (APPLE)
8990
list(APPEND onnxruntime_common_src_patterns
9091
"${ONNXRUNTIME_ROOT}/core/platform/apple/device_discovery.cc")

cmake/onnxruntime_unittests.cmake

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,11 @@ if(WIN32)
458458
"${TEST_SRC_DIR}/platform/windows/logging/*.cc" )
459459
endif()
460460

461+
if(LINUX)
462+
list(APPEND onnxruntime_test_framework_src_patterns
463+
"${TEST_SRC_DIR}/platform/linux/*.cc" )
464+
endif()
465+
461466
if(NOT onnxruntime_MINIMAL_BUILD AND NOT onnxruntime_REDUCED_OPS_BUILD)
462467

463468
if(onnxruntime_USE_CUDA)

docs/python/README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://ak
88
Changes
99
-------
1010

11+
1.24.4
12+
^^^^^^
13+
14+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.24.4
15+
1116
1.24.3
1217
^^^^^^
1318

js/common/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
// This file is generated by /js/scripts/update-version.ts
55
// Do not modify file content manually.
66

7-
export const version = '1.24.3';
7+
export const version = '1.24.4';

js/common/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"license": "MIT",
33
"type": "module",
44
"name": "onnxruntime-common",
5-
"version": "1.24.3",
5+
"version": "1.24.4",
66
"repository": {
77
"url": "https://github.com/Microsoft/onnxruntime.git",
88
"type": "git"

js/node/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
// This file is generated by /js/scripts/update-version.ts
55
// Do not modify file content manually.
66

7-
export const version = '1.24.3';
7+
export const version = '1.24.4';

js/node/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
6
1212
]
1313
},
14-
"version": "1.24.3",
14+
"version": "1.24.4",
1515
"dependencies": {
1616
"adm-zip": "^0.5.16",
1717
"global-agent": "^3.0.0",

0 commit comments

Comments
 (0)