You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Suggested by https://gitlab.kitware.com/cmake/cmake/-/issues/20132
60
-
# Because MacCatalyst does not support well in CMake
61
-
add_compile_options(-Wno-overriding-t-option)
62
-
add_link_options(-Wno-overriding-t-option)
63
-
64
53
# Enable CTest
65
54
enable_testing()
66
55
include(Dart)
@@ -130,7 +119,7 @@ option(onnxruntime_DONT_VECTORIZE "Do not vectorize operations in Eigen" OFF)
130
119
131
120
option(onnxruntime_USE_FULL_PROTOBUF"Link to libprotobuf instead of libprotobuf-lite when this option is ON"OFF)
132
121
option(onnxruntime_ENABLE_LANGUAGE_INTEROP_OPS"Enable operator implemented in language other than cpp"OFF)
133
-
option(onnxruntime_DEBUG_NODE_INPUTS_OUTPUTS"Dump debug information about node inputs and outputs when executing the model."ON)
122
+
option(onnxruntime_DEBUG_NODE_INPUTS_OUTPUTS"Dump debug information about node inputs and outputs when executing the model."OFF)
134
123
cmake_dependent_option(onnxruntime_DEBUG_NODE_INPUTS_OUTPUTS_ENABLE_DUMP_TO_SQLDB"Build dump debug information about node inputs and outputs with support for sql database."OFF"onnxruntime_DEBUG_NODE_INPUTS_OUTPUTS"OFF)
135
124
option(onnxruntime_USE_DML"Build with DirectML support"OFF)
136
125
option(onnxruntime_USE_MIGRAPHX"Build with AMDMIGraphX support"OFF)
@@ -1661,8 +1650,6 @@ endif()
1661
1650
#Now the 'onnxruntime_EXTERNAL_LIBRARIES' variable should be sealed. It will be used in onnxruntime.cmake which will be included in the next.
1662
1651
#The order of the following targets matters. Right depends on left. If target A appears before target B. Then A.cmake can not use variables defined in B.cmake.
0 commit comments