mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
Remove onnxruntime_USE_EIGEN_THREADPOOL cmake option
This commit is contained in:
parent
ff64d1f55b
commit
a5da5ff6f4
3 changed files with 1 additions and 10 deletions
|
|
@ -79,7 +79,6 @@ option(onnxruntime_CROSS_COMPILING "Cross compiling onnx runtime" OFF)
|
|||
option(onnxruntime_BUILD_SERVER "Build ONNX Runtime Server" OFF)
|
||||
option(onnxruntime_USE_FULL_PROTOBUF "Use full protobuf" OFF)
|
||||
option(onnxruntime_DISABLE_CONTRIB_OPS "Disable contrib ops" OFF)
|
||||
option(onnxruntime_USE_EIGEN_THREADPOOL "Use eigen threadpool. Otherwise OpenMP or a homemade one will be used" OFF)
|
||||
option(tensorflow_C_PACKAGE_PATH "Path to tensorflow C package installation dir")
|
||||
option(onnxruntime_ENABLE_LANGUAGE_INTEROP_OPS "Enable operator implemented in language other than cpp" OFF)
|
||||
option(onnxruntime_DEBUG_NODE_INPUTS_OUTPUTS "Dump node input shapes and output data to standard output when executing the model." OFF)
|
||||
|
|
|
|||
|
|
@ -450,7 +450,3 @@ endif()
|
|||
if (onnxruntime_ENABLE_MICROSOFT_INTERNAL)
|
||||
include(onnxruntime_providers_internal.cmake)
|
||||
endif()
|
||||
|
||||
if(onnxruntime_USE_EIGEN_THREADPOOL)
|
||||
target_compile_definitions(onnxruntime_providers PUBLIC USE_EIGEN_THREADPOOL)
|
||||
endif()
|
||||
|
|
|
|||
|
|
@ -21,8 +21,4 @@ endif()
|
|||
|
||||
if (onnxruntime_ENABLE_LANGUAGE_INTEROP_OPS AND onnxruntime_ENABLE_PYTHON)
|
||||
target_compile_definitions(onnxruntime_session PUBLIC ENABLE_LANGUAGE_INTEROP_OPS)
|
||||
endif()
|
||||
|
||||
if(onnxruntime_USE_EIGEN_THREADPOOL)
|
||||
target_compile_definitions(onnxruntime_session PUBLIC USE_EIGEN_THREADPOOL)
|
||||
endif()
|
||||
endif()
|
||||
Loading…
Reference in a new issue