-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathhost_compiler.cmake
105 lines (88 loc) · 4.55 KB
/
host_compiler.cmake
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
#===============================================================================
# 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)
sdl_unix_common_ccxx_flags(DPCPP_HOST_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()
# When a custom host compiler is used some deprecation warnings come
# from sycl.hpp header. Suppress the warnings for now.
append(DPCPP_HOST_COMPILER_OPTS "-Wno-deprecated-declarations")
# 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)
sdl_gnu_src_ccxx_flags(DPCPP_SRC_CXX_FLAGS)
sdl_gnu_example_ccxx_flags(DPCPP_EXAMPLE_CXX_FLAGS)
# 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")
append(CMAKE_CXX_FLAGS "-fsycl-host-compiler=${DPCPP_HOST_COMPILER}")
append_host_compiler_options(CMAKE_CXX_FLAGS "${DPCPP_HOST_COMPILER_OPTS}")
endif()