Skip to content

Commit 35d7d29

Browse files
authored
Merge branch 'microsoft:main' into img_patch1
2 parents cb50485 + 983c4d5 commit 35d7d29

File tree

136 files changed

+3699
-1839
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+3699
-1839
lines changed

.github/workflows/publish-python-apidocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions:
2222
jobs:
2323
build:
2424
name: Generate Python API docs
25-
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-ubuntu-CPU"]
25+
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v4
2828
- name: Install tools

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
[submodule "cmake/external/emsdk"]
88
path = cmake/external/emsdk
99
url = https://github.com/emscripten-core/emsdk.git
10-
branch = 3.1.62
10+
branch = 3.1.59

cgmanifests/generated/cgmanifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"component": {
77
"type": "git",
88
"git": {
9-
"commitHash": "0fde04880048f743056bed17cb0543a42e040fae",
9+
"commitHash": "d52c46520124845b1e0e0525f2759299d840143f",
1010
"repositoryUrl": "https://github.com/emscripten-core/emsdk.git"
1111
},
1212
"comments": "git submodule at cmake/external/emsdk"

cmake/external/cuDNN.cmake

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,3 @@ elseif(CUDNN_MAJOR_VERSION EQUAL 9)
107107
CUDNN::cudnn_heuristic
108108
)
109109
endif()
110-
111-
mark_as_advanced(CUDNN_INCLUDE_DIR)

cmake/onnxruntime_providers_vitisai.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
)
2020
source_group(TREE ${ONNXRUNTIME_ROOT}/core FILES ${onnxruntime_providers_vitisai_cc_srcs})
2121
onnxruntime_add_shared_library(onnxruntime_providers_vitisai ${onnxruntime_providers_vitisai_cc_srcs})
22-
onnxruntime_add_include_to_target(onnxruntime_providers_vitisai ${ONNXRUNTIME_PROVIDERS_SHARED} ${GSL_TARGET} nlohmann_json::nlohmann_json safeint_interface flatbuffers::flatbuffers)
22+
onnxruntime_add_include_to_target(onnxruntime_providers_vitisai ${ONNXRUNTIME_PROVIDERS_SHARED} ${GSL_TARGET} safeint_interface flatbuffers::flatbuffers)
2323
target_link_libraries(onnxruntime_providers_vitisai PRIVATE ${ONNXRUNTIME_PROVIDERS_SHARED})
2424
if(MSVC)
2525
onnxruntime_add_include_to_target(onnxruntime_providers_vitisai dbghelp)

cmake/onnxruntime_rocm_hipify.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ find_package(Python3 COMPONENTS Interpreter REQUIRED)
55

66
# GLOB pattern of file to be excluded
77
set(contrib_ops_excluded_files
8+
"bert/cudnn_fmha/*"
89
"bert/cutlass_fmha/*"
910
"bert/fastertransformer_decoder_attention/*"
1011
"bert/flash_attention/*"

cmake/onnxruntime_unittests.cmake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,9 +887,10 @@ if (MSVC)
887887
target_compile_options(onnxruntime_test_all PRIVATE "$<$<COMPILE_LANGUAGE:CUDA>:SHELL:--compiler-options /wd4244>"
888888
"$<$<NOT:$<COMPILE_LANGUAGE:CUDA>>:/wd4244>")
889889

890-
# Avoid this compile error in graph_transform_test.cc:
890+
# Avoid this compile error in graph_transform_test.cc and qdq_transformer_test.cc:
891891
# fatal error C1128: number of sections exceeded object file format limit: compile with /bigobj
892892
set_property(SOURCE "${TEST_SRC_DIR}/optimizer/graph_transform_test.cc"
893+
"${TEST_SRC_DIR}/optimizer/qdq_transformer_test.cc"
893894
APPEND PROPERTY COMPILE_OPTIONS "/bigobj")
894895
else()
895896
target_compile_options(onnxruntime_test_all PRIVATE "-Wno-parentheses")

docs/OperatorKernels.md

Lines changed: 22 additions & 15 deletions
Large diffs are not rendered by default.

docs/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pandas
1313
pydot
1414
coloredlogs
1515
flatbuffers
16-
numpy
16+
numpy<2.0.0
1717
packaging
1818
protobuf
1919
sympy

0 commit comments

Comments
 (0)