mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-04 23:59:56 +00:00
tools: build: fix typo (#21052)
### Description Typo in the python build script
This commit is contained in:
parent
8b9656717b
commit
8ab8e649a7
2 changed files with 2 additions and 2 deletions
|
|
@ -321,7 +321,7 @@ else()
|
|||
string(APPEND CMAKE_CXX_FLAGS " -mavx512f -mavx512cd -mavx512bw -mavx512dq -mavx512vl")
|
||||
string(APPEND CMAKE_C_FLAGS " -mavx512f -mavx512cd -mavx512bw -mavx512dq -mavx512vl")
|
||||
endif()
|
||||
if (CMAKE_SYSTEM_NAME STREQUAL "Android" AND Onnxruntime_GCOV_COVERAGE)
|
||||
if (CMAKE_SYSTEM_NAME STREQUAL "Android" AND onnxruntime_GCOV_COVERAGE)
|
||||
string(APPEND CMAKE_CXX_FLAGS " -g -O0 --coverage ")
|
||||
string(APPEND CMAKE_C_FLAGS " -g -O0 --coverage ")
|
||||
endif()
|
||||
|
|
|
|||
|
|
@ -1079,7 +1079,7 @@ def generate_build_tree(
|
|||
"-Donnxruntime_USE_NCCL=" + ("ON" if args.enable_nccl else "OFF"),
|
||||
"-Donnxruntime_BUILD_BENCHMARKS=" + ("ON" if args.build_micro_benchmarks else "OFF"),
|
||||
"-Donnxruntime_USE_ROCM=" + ("ON" if args.use_rocm else "OFF"),
|
||||
"-DOnnxruntime_GCOV_COVERAGE=" + ("ON" if args.code_coverage else "OFF"),
|
||||
"-Donnxruntime_GCOV_COVERAGE=" + ("ON" if args.code_coverage else "OFF"),
|
||||
"-Donnxruntime_USE_MPI=" + ("ON" if args.use_mpi else "OFF"),
|
||||
"-Donnxruntime_ENABLE_MEMORY_PROFILE=" + ("ON" if args.enable_memory_profile else "OFF"),
|
||||
"-Donnxruntime_ENABLE_CUDA_LINE_NUMBER_INFO=" + ("ON" if args.enable_cuda_line_info else "OFF"),
|
||||
|
|
|
|||
Loading…
Reference in a new issue