1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
#===============================================================================
# Copyright 2018-2024 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.
#===============================================================================
# Auxiliary build functions
#===============================================================================
if(utils_cmake_included)
return()
endif()
set(utils_cmake_included true)
include("cmake/options.cmake")
# Common configuration for tests / test cases on Windows
function(maybe_configure_windows_test name kind)
if(WIN32 AND (NOT DNNL_BUILD_FOR_CI))
string(REPLACE ";" "\;" PATH "${CTESTCONFIG_PATH};$ENV{PATH}")
set_property(${kind} ${name} PROPERTY ENVIRONMENT "PATH=${PATH}")
if(TARGET ${name} AND CMAKE_GENERATOR MATCHES "Visual Studio")
configure_file(${PROJECT_SOURCE_DIR}/cmake/template.vcxproj.user
${name}.vcxproj.user @ONLY)
endif()
endif()
endfunction()
# Add test (aka add_test), but possibly appends an emulator
function(add_dnnl_test name command)
add_test(${name} ${DNNL_TARGET_EMULATOR} ${command} ${ARGN})
endfunction()
# Register new executable/test
# name -- name of the executable
# srcs -- list of source, if many must be enclosed with ""
# test -- "test" to mark executable as a test, "" otherwise
# arg4 -- (optional) list of extra library dependencies
function(register_exe name srcs test)
add_executable(${name} ${srcs})
target_link_libraries(${name} ${LIB_PACKAGE_NAME} ${EXTRA_SHARED_LIBS} ${ARGV3})
if("x${test}" STREQUAL "xtest")
add_dnnl_test(${name} ${name})
maybe_configure_windows_test(${name} TEST)
else()
maybe_configure_windows_test(${name} TARGET)
endif()
endfunction()
# Append to a variable
# var = var + value
macro(append var value)
set(${var} "${${var}} ${value}")
endmacro()
# Set variable depending on condition:
# var = cond ? val_if_true : val_if_false
macro(set_ternary var condition val_if_true val_if_false)
if (${condition})
set(${var} "${val_if_true}")
else()
set(${var} "${val_if_false}")
endif()
endmacro()
# Conditionally set a variable
# if (cond) var = value
macro(set_if condition var value)
if (${condition})
set(${var} "${value}")
endif()
endmacro()
# Conditionally append
# if (cond) var = var + value
macro(append_if condition var value)
if (${condition})
append(${var} "${value}")
endif()
endmacro()
# Append options for sycl host compiler
macro(append_host_compiler_options var opts)
if(NOT DNNL_DPCPP_HOST_COMPILER STREQUAL "DEFAULT")
if(${var} MATCHES "-fsycl-host-compiler-options")
if("${ARGV2}" STREQUAL "BEFORE") # prepend
string(REGEX REPLACE
"(.*)(-fsycl-host-compiler-options=)\"(.*)\"(.*)"
"\\1\\2\"${opts} \\3\"\\4" ${var} ${${var}})
elseif("${ARGV2}" STREQUAL "") # append
string(REGEX REPLACE
"(.*)(-fsycl-host-compiler-options=)\"(.*)\"(.*)"
"\\1\\2\"\\3 ${opts}\"\\4" ${var} ${${var}})
else()
message(FATAL_ERROR "Unknown argument: ${ARGV2}")
endif()
else()
append(${var} "-fsycl-host-compiler-options=\"${opts}\"")
endif()
endif()
endmacro()
macro(include_directories_with_host_compiler)
foreach(inc_dir ${ARGV})
include_directories(${inc_dir})
append_host_compiler_options(CMAKE_CXX_FLAGS "-I${inc_dir}")
endforeach()
endmacro()
macro(include_directories_with_host_compiler_before)
foreach(inc_dir ${ARGV})
include_directories(BEFORE ${inc_dir})
append_host_compiler_options(CMAKE_CXX_FLAGS "-I${inc_dir}" BEFORE)
endforeach()
endmacro()
macro(add_definitions_with_host_compiler)
foreach(def ${ARGV})
add_definitions(${def})
append_host_compiler_options(CMAKE_CXX_FLAGS "${def}")
endforeach()
endmacro()
# Append a path to path_list variable (Windows-only version)
macro(append_to_windows_path_list path_list path)
file(TO_NATIVE_PATH "${path}" append_to_windows_path_list_tmp__)
if(${path_list})
set(${path_list}
"${${path_list}};${append_to_windows_path_list_tmp__}")
else()
set(${path_list}
"${append_to_windows_path_list_tmp__}")
endif()
endmacro()
# Strip paths from libraries before populating INSTALL_INTERFACE
function(target_link_libraries_install target list)
foreach(lib ${list})
get_filename_component(base "${lib}" NAME)
target_link_libraries(${target} PUBLIC "$<INSTALL_INTERFACE:${base}>")
endforeach(lib)
endfunction()
function(find_libm var)
if(UNIX)
find_library(${var} m REQUIRED)
endif()
endfunction()
|