-
Notifications
You must be signed in to change notification settings - Fork 53
/
test_sets.txt
141 lines (127 loc) · 8.41 KB
/
test_sets.txt
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
###############################################################################
#
# Copyright (c) 2016-2023, Intel Corporation
# Copyright (c) 2019-2020, University of Utah
#
# 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.
#
###############################################################################
# README:
# Testing configuration file
# You can start single-line comment with #. Don't use indentation at the beginning of line!
# Config can contain only one "Compiler specs" and "Testing sets" blocks!
# You should always specify "Compiler specs" before "Testing sets"!
###############################################################################
Compiler specs:
# Spec name - codename for compiler and its options
# Executable name - name of compiler binary file. It should be in your PATH
# Common arguments - arguments which will be passed to every compiler run
# Arch prefix - prefix for specifying different architectures (it will be concatenated with Compiler arch value)
# Spec name | C++ executable name | C executable name | Common arguments | Arch prefix
gcc | g++ | gcc | -fPIC -mcmodel=large -w -fpermissive | -march=
clang | clang++ | clang | -fPIC -mcmodel=large -w -fopenmp-simd | -march=
polly | clang++ | clang | -fPIC -mcmodel=large -w -fopenmp-simd -mllvm -polly -mllvm -polly-vectorizer=stripmine | -march=
# Ubsan is clang or gcc with sanitizer options. It is used for generator check.
# If you want to use sanitizer with -m32, please make sure that you pass "-rtlib=compiler-rt -lgcc_s" options if you are using clang.
# Otherwise it may fail with "undefined reference to `__mulodi4'" error message.
# See https://bugs.llvm.org//show_bug.cgi?id=16404 for more information
# Note that -fpermissive option for gcc is required to allow reduction of ubsan_gcc fails.
# Otherwise result of reduction is empty program.
ubsan_clang | clang++ | clang | -fPIC -mcmodel=large -fsanitize=undefined -fno-sanitize-recover=undefined -Werror=uninitialized -Werror=implicitly-unsigned-literal | -march=
ubsan_gcc | g++ | gcc | -fPIC -mcmodel=large -fsanitize=undefined -fno-sanitize-recover=undefined -Werror=uninitialized -fpermissive | -march=
icc | icpc | icc | -fPIC -mcmodel=large -w | -x
icx | icpx | icx | -fPIC -mcmodel=large -w -fopenmp-simd -mllvm -vec-threshold=0 | -march=
dpcpp | clang++ | clang | -fsycl -w | -march=
ispc | ispc-proxy | ispc-proxy | -woff --pic --mcmodel=large | --target=
Testing sets:
# Set name - codename for testing set
# Spec name - codename of spec, it should be described in Compiler specs
# Arguments - compiler options for this testing set
# Compiler arch - architecture which will be passed to compiler
# Sde arch - architecture which will be passed to SDE
# Set name | Spec name | Arguments | Compiler arch | Sde arch
ubsan_clang_o0 | ubsan_clang | -O0 | |
#ubsan_clang_o2 | ubsan_clang | -O2 | |
ubsan_gcc_o0 | ubsan_gcc | -O0 | |
#ubsan_gcc_o2 | ubsan_gcc | -O2 | |
gcc_no_opt | gcc | -O0 | |
gcc_opt | gcc | -O3 | |
#gcc_wsm_opt | gcc | -O3 | westmere | wsm
#gcc_ivb_opt | gcc | -O3 | ivybridge | ivb
#gcc_hsw_opt | gcc | -O3 | haswell | hsw
#gcc_bdw_opt | gcc | -O3 | broadwell | bdw
#gcc_knl_no_opt | gcc | -O0 | knl | knl
#gcc_knl_opt | gcc | -O3 | knl | knl
#gcc_skx_no_opt | gcc | -O0 | skylake-avx512 | skx
gcc_skx_opt | gcc | -O3 | skylake-avx512 | skx
#gcc_icx_no_opt | gcc | -O0 | icelake-server | icx
#gcc_icx_opt | gcc | -O3 | icelake-server | icx
#gcc_tgl_no_opt | gcc | -O0 | tigerlake | tgl
#gcc_tgl_opt | gcc | -O3 | tigerlake | tgl
#gcc_spr_no_opt | gcc | -O0 | sapphirerapids | spr
gcc_spr_opt | gcc | -O3 | sapphirerapids | spr
clang_no_opt | clang | -O0 | |
clang_opt | clang | -O3 | |
#clang_knl_no_opt | clang | -O0 | knl | knl
#clang_knl_opt | clang | -O3 | knl | knl
#clang_skx_no_opt | clang | -O0 | skx | skx
clang_skx_opt | clang | -O3 | skx | skx
#clang_icx_no_opt | clang | -O0 | icelake-server | icx
#clang_icx_opt | clang | -O3 | icelake-server | icx
#clang_tgl_no_opt | clang | -O0 | tigerlake | tgl
#clang_tgl_opt | clang | -O3 | tigerlake | tgl
#clang_spr_no_opt | clang | -O0 | sapphirerapids | spr
clang_spr_opt | clang | -O3 | sapphirerapids | spr
#polly_no_opt | polly | -O0 | |
polly_opt | polly | -O3 | |
#polly_knl_no_opt | polly | -O0 | knl | knl
#polly_knl_opt | polly | -O3 | knl | knl
#polly_skx_no_opt | polly | -O0 | skx | skx
polly_skx_opt | polly | -O3 | skx | skx
#polly_icx_no_opt | polly | -O0 | icelake-server | icx
#polly_icx_opt | polly | -O3 | icelake-server | icx
#polly_tgl_no_opt | polly | -O0 | tigerlake | tgl
#polly_tgl_opt | polly | -O3 | tigerlake | tgl
#polly_spr_no_opt | polly | -O0 | sapphirerapids | spr
polly_spr_opt | polly | -O3 | sapphirerapids | spr
icc_no_opt | icc | -O0 | |
icc_opt | icc | -O3 | |
#icc_knl_no_opt | icc | -O0 | MIC-AVX512 | knl
#icc_knl_opt | icc | -O3 | MIC-AVX512 | knl
#icc_skx_no_opt | icc | -O0 | CORE-AVX512 | skx
#icc_skx_opt | icc | -O3 | CORE-AVX512 | skx
icx_no_opt | icx | -O0 | |
icx_opt | icx | -O3 | |
#icx_skx_no_opt | icx | -O0 | skx | skx
icx_skx_opt | icx | -O3 | skx | skx
#icx_icx_no_opt | icx | -O0 | icelake-server | icx
icx_icx_opt | icx | -O3 | icelake-server | icx
#icx_tgl_no_opt | icx | -O0 | tigerlake | tgl
#icx_tgl_opt | icx | -O3 | tigerlake | tgl
#dpcpp_no_opt | dpcpp | -O0 | |
#dpcpp_opt | dpcpp | -O3 | |
dpcpp_cpu_no_opt | dpcpp | -O0 -DCPU | |
dpcpp_cpu_opt | dpcpp | -O3 -DCPU | |
dpcpp_gpu_no_opt | dpcpp | -O0 -DGPU | |
dpcpp_gpu_opt | dpcpp | -O3 -DGPU | |
ispc_sse_no_opt | ispc | -O0 | sse2-i32x4 |
ispc_avx2_i32x8_opt | ispc | -O2 | avx2-i32x8 |
ispc_avx2_i32x16_opt | ispc | -O2 | avx2-i32x16 |
ispc_avx2_i64x4_opt | ispc | -O2 | avx2-i64x4 |
ispc_avx512skx-i32x16_opt | ispc | -O2 | avx512skx-i32x16 | skx
ispc_avx512skx-i8x64_opt | ispc | -O2 | avx512skx-i8x64 | skx
ispc_avx512skx-i16x32_opt | ispc | -O2 | avx512skx-i16x32 | skx
Options for statistics' capture:
#Spec name | Arguments
ubsan_clang | -save-stats -Xclang -print-stats
clang | -save-stats -Xclang -print-stats