Skip to content

Commit 169b056

Browse files
committed
Merge remote-tracking branch 'microsoft/main' into fs-eire/ex-compute-context
2 parents 19e2d51 + 4870d45 commit 169b056

File tree

18 files changed

+1350
-356
lines changed

18 files changed

+1350
-356
lines changed

cmake/deps.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ googletest;https://github.com/google/googletest/archive/refs/tags/v1.17.0.zip;f6
3131
googlexnnpack;https://github.com/google/XNNPACK/archive/3cf85e705098622d59056dcb8f5f963ea7bb0a00.zip;6f6bbba627241f89463ca845febaf063982b34fe
3232
json;https://github.com/nlohmann/json/archive/refs/tags/v3.11.3.zip;5e88795165cc8590138d1f47ce94ee567b85b4d6
3333
microsoft_gsl;https://github.com/microsoft/GSL/archive/refs/tags/v4.0.0.zip;cf368104cd22a87b4dd0c80228919bb2df3e2a14
34-
microsoft_wil;https://github.com/microsoft/wil/archive/refs/tags/v1.0.230629.1.zip;e4a542a323c070376f7c2d1973d0f7ddbc1d2fa5
34+
microsoft_wil;https://github.com/microsoft/wil/archive/refs/tags/v1.0.250325.1.zip;826c8bd47c2258ec61b8b218e031e5b33d27f761
3535
mimalloc;https://github.com/microsoft/mimalloc/archive/refs/tags/v2.1.1.zip;d5ee7d34223d0567892db5179849939c8769dc41
3636
mp11;https://github.com/boostorg/mp11/archive/refs/tags/boost-1.82.0.zip;9bc9e01dffb64d9e0773b2e44d2f22c51aace063
3737
onnx;https://github.com/onnx/onnx/archive/refs/tags/v1.19.1.zip;c5215b5697dcdfd71799f001b8c4054a6bba6b09

cmake/onnxruntime_unittests.cmake

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1528,8 +1528,14 @@ endif()
15281528
onnxruntime_add_shared_library(onnxruntime_runtime_path_test_shared_library
15291529
${onnxruntime_runtime_path_test_shared_library_src})
15301530

1531-
target_link_libraries(onnxruntime_runtime_path_test_shared_library PRIVATE
1532-
onnxruntime_common cpuinfo ${CMAKE_DL_LIBS})
1531+
if (CMAKE_SYSTEM_NAME MATCHES "AIX")
1532+
target_link_libraries(onnxruntime_runtime_path_test_shared_library PRIVATE
1533+
onnxruntime_common ${CMAKE_DL_LIBS})
1534+
set_target_properties(onnxruntime_runtime_path_test_shared_library PROPERTIES AIX_SHARED_LIBRARY_ARCHIVE OFF)
1535+
else()
1536+
target_link_libraries(onnxruntime_runtime_path_test_shared_library PRIVATE
1537+
onnxruntime_common cpuinfo ${CMAKE_DL_LIBS})
1538+
endif()
15331539
target_include_directories(onnxruntime_runtime_path_test_shared_library PRIVATE ${ONNXRUNTIME_ROOT})
15341540

15351541
if(UNIX)

docs/OperatorKernels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Do not modify directly.*
8888
|Conv|*in* X:**T**<br> *in* W:**T**<br> *in* B:**T**<br> *out* Y:**T**|22+|**T** = tensor(float)|
8989
|||[11, 21]|**T** = tensor(float)|
9090
|||[1, 10]|**T** = tensor(float)|
91-
|ConvInteger|*in* x:**T1**<br> *in* w:**T2**<br> *in* x_zero_point:**T1**<br> *in* w_zero_point:**T2**<br> *out* y:**T3**|10+|**T1** = tensor(uint8)<br/> **T2** = tensor(uint8)<br/> **T3** = tensor(int32)|
91+
|ConvInteger|*in* x:**T1**<br> *in* w:**T2**<br> *in* x_zero_point:**T1**<br> *in* w_zero_point:**T2**<br> *out* y:**T3**|10+|**T1** = tensor(int8), tensor(uint8)<br/> **T2** = tensor(int8), tensor(uint8)<br/> **T3** = tensor(int32)|
9292
|ConvTranspose|*in* X:**T**<br> *in* W:**T**<br> *in* B:**T**<br> *out* Y:**T**|22+|**T** = tensor(float)|
9393
|||[11, 21]|**T** = tensor(float)|
9494
|||[1, 10]|**T** = tensor(float)|

include/onnxruntime/core/session/onnxruntime_ep_device_ep_metadata_keys.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
// Key for the execution provider version string. This should be available for all plugin EPs.
1010
static const char* const kOrtEpDevice_EpMetadataKey_Version = "version";
1111

12+
// Key for the execution provider OS driver version.
13+
static const char* const kOrtEpDevice_EpMetadataKey_OSDriverVersion = "os_driver_version";
14+
1215
// Prefix for execution provider compatibility information stored in model metadata.
1316
// Used when generating EP context models to store compatibility strings for each EP.
1417
// Full key format: "ep_compatibility_info.<EP_TYPE>"

0 commit comments

Comments
 (0)