Files
oneDNN/cmake/host_compiler.cmake
2025-09-26 15:15:49 -07:00

120 lines
5.4 KiB
CMake

#===============================================================================
# Copyright 2021-2025 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.
#===============================================================================
if(host_compiler_cmake_included)
return()
endif()
set(host_compiler_cmake_included true)
# There is nothing to do for the default host compiler.
if(DPCPP_HOST_COMPILER_KIND STREQUAL "DEFAULT")
return()
endif()
if(NOT DPCPP_HOST_COMPILER_KIND MATCHES "^(GNU|CLANG)$")
message(FATAL_ERROR "The DNNL_DPCPP_HOST_COMPILER value ${DNNL_DPCPP_HOST_COMPILER} is not supported")
endif()
if(DPCPP_HOST_COMPILER_KIND MATCHES "^(GNU|CLANG)$")
# Common flags for GNU and CLANG IDs.
platform_unix_and_mingw_common_ccxx_flags(DPCPP_HOST_COMPILER_OPTS)
platform_unix_and_mingw_common_cxx_flags(DPCPP_HOST_COMPILER_OPTS)
# Stripping Wundef before passing it into a host compiler.
string(REGEX REPLACE "-Wundef" "" DPCPP_HOST_COMPILER_OPTS "${DPCPP_HOST_COMPILER_OPTS}")
sdl_unix_common_ccxx_flags(DPCPP_HOST_COMPILER_OPTS)
sdl_unix_src_ccxx_flags(DPCPP_SRC_COMPILER_OPTS)
sdl_unix_example_ccxx_flags(DPCPP_EXAMPLE_COMPILER_OPTS)
# SYCL uses C++17 features in headers hence C++17 support should be enabled
# for host compiler.
# The main compiler driver doesn't automatically specify C++ standard for
# custom host compilers.
append(DPCPP_HOST_COMPILER_OPTS "-std=c++17")
# Unconditionally enable OpenMP during compilation to use `#pragma omp simd`
append(DPCPP_HOST_COMPILER_OPTS "-fopenmp")
if(UPPERCASE_CMAKE_BUILD_TYPE STREQUAL "RELEASE")
append(DPCPP_HOST_COMPILER_OPTS "${CMAKE_CXX_FLAGS_RELEASE}")
else()
append(DPCPP_HOST_COMPILER_OPTS "${CMAKE_CXX_FLAGS_DEBUG}")
endif()
# Intel oneAPI DPC++/C++ Compiler version 2025.2 and earlier emits spurious
# deprecation warnings from system headers when used
# with '-fsycl-host-compiler' option.
# Open source version identifies as Clang and does not offer a reliable way
# to detect version. Warning is suppressed unconditionally in this case.
if((CMAKE_CXX_COMPILER_ID STREQUAL "IntelLLVM"
AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "2025.3")
OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
append(DPCPP_HOST_COMPILER_OPTS "-Wno-deprecated-declarations")
endif()
# Using single_task, cgh.copy, cgh.fill may cause the following warning:
# "warning: `clang::sycl_kernel` scoped attribute directive ignored [-Wattributes]"
# We don't have control over it so just suppress it for the time being.
append(DPCPP_HOST_COMPILER_OPTS "-Wno-attributes")
# DPCPP_HOST_COMPILER_KIND specific flags.
if(DNNL_TARGET_ARCH STREQUAL "X64")
if(DNNL_ARCH_OPT_FLAGS STREQUAL "HostOpts")
if(DPCPP_HOST_COMPILER_KIND STREQUAL "GNU")
platform_gnu_x64_arch_ccxx_flags(DPCPP_HOST_COMPILER_OPTS)
elseif(DPCPP_HOST_COMPILER_KIND STREQUAL "CLANG")
platform_clang_x64_arch_ccxx_flags(DPCPP_HOST_COMPILER_OPTS)
endif()
else()
# Assumption is that the passed flags are compatible with GNU compiler
append(DPCPP_HOST_COMPILER_OPTS "${DNNL_ARCH_OPT_FLAGS}")
endif()
else()
message(FATAL_ERROR "The DNNL_DPCPP_HOST_COMPILER option is only supported for DNNL_TARGET_ARCH=X64")
endif()
if(DPCPP_HOST_COMPILER_KIND STREQUAL "GNU")
platform_gnu_nowarn_ccxx_flags(DPCPP_CXX_NOWARN_FLAGS ${DPCPP_HOST_COMPILER_MAJOR_VER}.${DPCPP_HOST_COMPILER_MINOR_VER})
sdl_gnu_common_ccxx_flags(DPCPP_HOST_COMPILER_OPTS DPCPP_HOST_COMPILER_VER)
# SYCL headers contain some comments that trigger warning with GNU compiler
append(DPCPP_HOST_COMPILER_OPTS "-Wno-comment")
# Host compiler operates on preprocessed files and headers, and it
# mistakenly assumes that anonymous namespace types are used from a header
# which is not always the case.
append(DPCPP_HOST_COMPILER_OPTS "-Wno-subobject-linkage")
elseif(DPCPP_HOST_COMPILER_KIND STREQUAL "CLANG")
platform_clang_nowarn_ccxx_flags(DPCPP_CXX_NOWARN_FLAGS)
endif()
# When using a non-default host compiler the main compiler doesn't
# handle some arguments properly and issues the warning.
# Suppress the warning until the bug is fixed.
#
# Affects both, GNU and CLANG kinds.
append(CMAKE_CXX_FLAGS "-Wno-unused-command-line-argument")
# Option `-fsycl-unnamed-lambda` is enabled by default, but not compatible
# with `-fsycl-host-compiler`. While icpx driver adds
# `-fno-sycl-unnamed-lambda` to avoid build issues clang++ does not do that.
append(CMAKE_CXX_FLAGS "-fno-sycl-unnamed-lambda")
append(CMAKE_CXX_FLAGS "-fsycl-host-compiler=${DPCPP_HOST_COMPILER}")
append_host_compiler_options(CMAKE_CXX_FLAGS "${DPCPP_HOST_COMPILER_OPTS}")
endif()