Files
oneDNN/cmake/Threading.cmake
2023-06-27 12:23:51 -07:00

90 lines
3.6 KiB
CMake

#===============================================================================
# Copyright 2018-2023 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#===============================================================================
# Utils for managing threading-related configuration
#===============================================================================
if(Threading_cmake_included)
return()
endif()
set(Threading_cmake_included true)
# CPU threading runtime specifies the threading used by the library:
# sequential, OpenMP or TBB. In future it may be different from CPU runtime.
if(DNNL_CPU_RUNTIME STREQUAL "NONE")
set(DNNL_CPU_THREADING_RUNTIME "SEQ")
elseif(DNNL_CPU_SYCL)
set(DNNL_CPU_THREADING_RUNTIME "TBB")
else()
set(DNNL_CPU_THREADING_RUNTIME "${DNNL_CPU_RUNTIME}")
endif()
# Always require pthreads even for sequential threading (required for e.g.
# std::call_once that relies on mutexes)
find_package(Threads REQUIRED)
list(APPEND EXTRA_SHARED_LIBS "${CMAKE_THREAD_LIBS_INIT}")
# A macro to avoid code duplication
macro(find_package_tbb)
# Try to find TBB using a TBB-provided CMake config file.
find_package(TBB QUIET COMPONENTS tbb)
# If the previous `find_package` call failed then try to
# use a TBB CMake config file that is maintained by oneDNN.
# The reason the previous call may fail is that TBB package is
# very old and doesn't provide a CMake config file.
if(NOT TBB_FOUND)
message(STATUS "TBB-provided CMake config either failed or was not found. Trying to use a custom one.")
set(_cmake_proj_dir "${PROJECT_SOURCE_DIR}/cmake")
if(WIN32)
find_package(TBB ${ARGN} COMPONENTS tbb HINTS ${_cmake_proj_dir}/win)
elseif(APPLE)
find_package(TBB ${ARGN} COMPONENTS tbb HINTS ${_cmake_proj_dir}/mac)
elseif(UNIX)
find_package(TBB ${ARGN} COMPONENTS tbb HINTS ${_cmake_proj_dir}/lnx)
endif()
endif()
if(TBB_FOUND)
# Check for TBB version, required >= 2017
foreach (_tbb_ver_header tbb_stddef.h version.h)
foreach (_tbb_include_subdir oneapi "")
get_target_property(_tbb_include_dirs TBB::tbb
INTERFACE_INCLUDE_DIRECTORIES)
set(_tbb_ver_header_full_path
"${_tbb_include_dirs}/${_tbb_include_subdir}/tbb/${_tbb_ver_header}")
if(EXISTS ${_tbb_ver_header_full_path})
file(READ "${_tbb_ver_header_full_path}" _tbb_ver)
string(REGEX REPLACE
".*#define TBB_INTERFACE_VERSION ([0-9]+).*" "\\1"
TBB_INTERFACE_VERSION "${_tbb_ver}")
if (${TBB_INTERFACE_VERSION} VERSION_LESS 9100)
if("${mode}" STREQUAL REQUIRED)
message(FATAL_ERROR
"oneDNN requires TBB version 2017 or above")
endif()
unset(TBB_FOUND)
else()
break()
endif()
endif()
endforeach()
endforeach()
else()
message(FATAL_ERROR "TBB package was not found.")
endif()
endmacro()