-
Notifications
You must be signed in to change notification settings - Fork 50
/
CMakePresets.json
141 lines (141 loc) · 4.32 KB
/
CMakePresets.json
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
{
"version" : 3,
"configurePresets": [
{
"name" : "base-fp32",
"displayName" : "Base FP32 Configuration",
"warnings": {
"deprecated": true
},
"cacheVariables": {
"CMAKE_BUILD_TYPE" : "RelWithDebInfo",
"TRACCC_BUILD_TESTING" : "TRUE",
"TRACCC_BUILD_EXAMPLES" : "TRUE",
"TRACCC_BUILD_BENCHMARKS" : "TRUE",
"TRACCC_FAIL_ON_WARNINGS" : "TRUE",
"TRACCC_USE_ROOT" : "FALSE",
"TRACCC_ALGEBRA_PLUGINS" : "ARRAY",
"TRACCC_CUSTOM_SCALARTYPE" : "float",
"DETRAY_CUSTOM_SCALARTYPE" : "float"
}
},
{
"name" : "base-fp64",
"displayName" : "Base FP64 Configuration",
"warnings": {
"deprecated": true
},
"cacheVariables": {
"CMAKE_BUILD_TYPE" : "RelWithDebInfo",
"TRACCC_BUILD_TESTING" : "TRUE",
"TRACCC_BUILD_EXAMPLES" : "TRUE",
"TRACCC_BUILD_BENCHMARKS" : "TRUE",
"TRACCC_FAIL_ON_WARNINGS" : "TRUE",
"TRACCC_USE_ROOT" : "FALSE",
"TRACCC_ALGEBRA_PLUGINS" : "ARRAY",
"TRACCC_CUSTOM_SCALARTYPE" : "double",
"DETRAY_CUSTOM_SCALARTYPE" : "double"
}
},
{
"name" : "cuda-fp32",
"displayName" : "CUDA FP32 Code Development",
"inherits": ["base-fp32"],
"cacheVariables": {
"TRACCC_BUILD_CUDA" : "TRUE",
"VECMEM_BUILD_CUDA_LIBRARY" : "TRUE"
}
},
{
"name" : "cuda-fp64",
"displayName" : "CUDA FP64 Code Development",
"inherits": ["base-fp64"],
"cacheVariables": {
"TRACCC_BUILD_CUDA" : "TRUE",
"VECMEM_BUILD_CUDA_LIBRARY" : "TRUE"
}
},
{
"name" : "sycl-fp32",
"displayName" : "SYCL FP32 Code Development",
"inherits": ["base-fp32"],
"cacheVariables": {
"TRACCC_BUILD_SYCL" : "TRUE",
"VECMEM_BUILD_SYCL_LIBRARY" : "TRUE"
}
},
{
"name" : "sycl-fp64",
"displayName" : "SYCL FP64 Code Development",
"inherits": ["base-fp64"],
"cacheVariables": {
"TRACCC_BUILD_SYCL" : "TRUE",
"VECMEM_BUILD_SYCL_LIBRARY" : "TRUE"
}
},
{
"name" : "alpaka-fp32",
"displayName" : "Alpaka FP32 Code Development",
"inherits": ["base-fp32"],
"cacheVariables": {
"TRACCC_BUILD_ALPAKA" : "TRUE"
}
},
{
"name" : "alpaka-fp64",
"displayName" : "Alpaka FP64 Code Development",
"inherits": ["base-fp64"],
"cacheVariables": {
"TRACCC_BUILD_ALPAKA" : "TRUE"
}
},
{
"name" : "kokkos-fp32",
"displayName" : "Kokkos FP32 Code Development",
"inherits": ["base-fp32"],
"cacheVariables": {
"TRACCC_BUILD_KOKKOS" : "TRUE"
}
},
{
"name" : "kokkos-fp64",
"displayName" : "Kokkos FP64 Code Development",
"inherits": ["base-fp64"],
"cacheVariables": {
"TRACCC_BUILD_KOKKOS" : "TRUE"
}
},
{
"name" : "host-fp32",
"displayName": "Host FP32 Code Development",
"inherits": ["base-fp32"],
"cacheVariables": {
"TRACCC_USE_ROOT" : "TRUE",
"TRACCC_USE_SYSTEM_TBB" : "TRUE",
"ALGEBRA_PLUGINS_USE_SYSTEM_VC" : "TRUE"
}
},
{
"name" : "host-fp64",
"displayName": "Host FP64 Code Development",
"inherits": ["base-fp64"],
"cacheVariables": {
"TRACCC_USE_ROOT" : "TRUE",
"TRACCC_USE_SYSTEM_TBB" : "TRUE",
"ALGEBRA_PLUGINS_USE_SYSTEM_VC" : "TRUE"
}
},
{
"name" : "full-fp32",
"displayName": "Full FP32 Code Development",
"inherits": ["host-fp32", "cuda-fp32", "sycl-fp32", "alpaka-fp32",
"kokkos-fp32"]
},
{
"name" : "full-fp64",
"displayName": "Full FP64 Code Development",
"inherits": ["host-fp64", "cuda-fp64", "sycl-fp64", "alpaka-fp64",
"kokkos-fp64"]
}
]
}