mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
update to emsdk-3.1.51 (#18844)
This commit is contained in:
parent
8f2e57f5d0
commit
96dbac6e4b
9 changed files with 12 additions and 13 deletions
2
.gitmodules
vendored
2
.gitmodules
vendored
|
|
@ -7,4 +7,4 @@
|
|||
[submodule "cmake/external/emsdk"]
|
||||
path = cmake/external/emsdk
|
||||
url = https://github.com/emscripten-core/emsdk.git
|
||||
branch = 3.1.44
|
||||
branch = 3.1.51
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
"component": {
|
||||
"type": "git",
|
||||
"git": {
|
||||
"commitHash": "a896e3d066448b3530dbcaa48869fafefd738f57",
|
||||
"commitHash": "4e2496141eda15040c44e9bbf237a1326368e34c",
|
||||
"repositoryUrl": "https://github.com/emscripten-core/emsdk.git"
|
||||
},
|
||||
"comments": "git submodule at cmake/external/emsdk"
|
||||
|
|
|
|||
|
|
@ -16,9 +16,7 @@ if (NOT MSVC AND NOT onnxruntime_ENABLE_BITCODE)
|
|||
endif()
|
||||
|
||||
if (CMAKE_SYSTEM_NAME STREQUAL "Emscripten")
|
||||
string(APPEND CMAKE_C_FLAGS " -s STRICT=1 -s DEFAULT_TO_CXX=1")
|
||||
string(APPEND CMAKE_CXX_FLAGS " -s STRICT=1 -s DEFAULT_TO_CXX=1")
|
||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s ALLOW_UNIMPLEMENTED_SYSCALLS=1")
|
||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s ALLOW_UNIMPLEMENTED_SYSCALLS=1 -s DEFAULT_TO_CXX=1")
|
||||
|
||||
# Enable LTO for release single-thread build
|
||||
if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
|
|
|
|||
2
cmake/external/emsdk
vendored
2
cmake/external/emsdk
vendored
|
|
@ -1 +1 @@
|
|||
Subproject commit a896e3d066448b3530dbcaa48869fafefd738f57
|
||||
Subproject commit 4e2496141eda15040c44e9bbf237a1326368e34c
|
||||
|
|
@ -906,7 +906,7 @@ if (onnxruntime_ENABLE_TRAINING_TORCH_INTEROP)
|
|||
endif()
|
||||
if (CMAKE_SYSTEM_NAME STREQUAL "Emscripten")
|
||||
set_target_properties(onnxruntime_test_all PROPERTIES LINK_DEPENDS ${TEST_SRC_DIR}/wasm/onnxruntime_test_all_adapter.js)
|
||||
set_target_properties(onnxruntime_test_all PROPERTIES LINK_FLAGS "-s STACK_SIZE=5242880 -s ALLOW_MEMORY_GROWTH=1 -s MAXIMUM_MEMORY=4294967296 --pre-js \"${TEST_SRC_DIR}/wasm/onnxruntime_test_all_adapter.js\" -s \"EXPORTED_RUNTIME_METHODS=['FS']\" --preload-file ${CMAKE_CURRENT_BINARY_DIR}/testdata@/testdata -s EXIT_RUNTIME=1 -s DEMANGLE_SUPPORT=1")
|
||||
set_target_properties(onnxruntime_test_all PROPERTIES LINK_FLAGS "-s STACK_SIZE=5242880 -s ALLOW_MEMORY_GROWTH=1 -s MAXIMUM_MEMORY=4294967296 -s INCOMING_MODULE_JS_API=[preRun,locateFile,arguments,onExit,wasmMemory,buffer,instantiateWasm] --pre-js \"${TEST_SRC_DIR}/wasm/onnxruntime_test_all_adapter.js\" -s \"EXPORTED_RUNTIME_METHODS=['FS']\" --preload-file ${CMAKE_CURRENT_BINARY_DIR}/testdata@/testdata -s EXIT_RUNTIME=1 -s DEMANGLE_SUPPORT=1")
|
||||
if (onnxruntime_ENABLE_WEBASSEMBLY_THREADS)
|
||||
set_property(TARGET onnxruntime_test_all APPEND_STRING PROPERTY LINK_FLAGS " -s DEFAULT_PTHREAD_STACK_SIZE=131072 -s PROXY_TO_PTHREAD=1")
|
||||
endif()
|
||||
|
|
|
|||
|
|
@ -225,6 +225,7 @@ else()
|
|||
"SHELL:-s EXPORT_ALL=0"
|
||||
"SHELL:-s VERBOSE=0"
|
||||
"SHELL:-s FILESYSTEM=0"
|
||||
"SHELL:-s INCOMING_MODULE_JS_API=[preRun,locateFile,arguments,onExit,wasmMemory,buffer,instantiateWasm,mainScriptUrlOrBlob]"
|
||||
${WASM_API_EXCEPTION_CATCHING}
|
||||
--no-entry
|
||||
)
|
||||
|
|
|
|||
|
|
@ -435,7 +435,7 @@ def parse_arguments():
|
|||
# WebAssembly build
|
||||
parser.add_argument("--build_wasm", action="store_true", help="Build for WebAssembly")
|
||||
parser.add_argument("--build_wasm_static_lib", action="store_true", help="Build for WebAssembly static library")
|
||||
parser.add_argument("--emsdk_version", default="3.1.44", help="Specify version of emsdk")
|
||||
parser.add_argument("--emsdk_version", default="3.1.51", help="Specify version of emsdk")
|
||||
|
||||
parser.add_argument("--enable_wasm_simd", action="store_true", help="Enable WebAssembly SIMD")
|
||||
parser.add_argument("--enable_wasm_threads", action="store_true", help="Enable WebAssembly multi-threads support")
|
||||
|
|
|
|||
|
|
@ -93,15 +93,15 @@ jobs:
|
|||
- script: |
|
||||
set -ex
|
||||
cd '$(Build.SourcesDirectory)/cmake/external/emsdk'
|
||||
./emsdk install 3.1.44 ccache-git-emscripten-64bit
|
||||
./emsdk activate 3.1.44 ccache-git-emscripten-64bit
|
||||
./emsdk install 3.1.51 ccache-git-emscripten-64bit
|
||||
./emsdk activate 3.1.51 ccache-git-emscripten-64bit
|
||||
displayName: 'emsdk install and activate ccache for emscripten'
|
||||
- ${{if eq(parameters.WithCache, false)}}:
|
||||
- script: |
|
||||
set -ex
|
||||
cd '$(Build.SourcesDirectory)/cmake/external/emsdk'
|
||||
./emsdk install 3.1.44
|
||||
./emsdk activate 3.1.44
|
||||
./emsdk install 3.1.51
|
||||
./emsdk activate 3.1.51
|
||||
displayName: 'emsdk install and activate ccache for emscripten'
|
||||
|
||||
- template: build-linux-wasm-step.yml
|
||||
|
|
|
|||
|
|
@ -62,4 +62,4 @@ stages:
|
|||
RunWebGpuTestsForReleaseBuild: true
|
||||
WebGpuPoolName: 'onnxruntime-Win2022-webgpu-A10'
|
||||
WebCpuPoolName: 'onnxruntime-Win-CPU-2022-web'
|
||||
WithCache: true
|
||||
WithCache: false
|
||||
|
|
|
|||
Loading…
Reference in a new issue