-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCMakePresets.json
More file actions
168 lines (168 loc) · 5.55 KB
/
CMakePresets.json
File metadata and controls
168 lines (168 loc) · 5.55 KB
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
158
159
160
161
162
163
164
165
166
167
168
{
"version": 3,
"configurePresets": [
{
"name": "base",
"displayName": "Base Developer Configuration",
"warnings": {
"deprecated": true
},
"cacheVariables": {
"CMAKE_BUILD_TYPE" : "RelWithDebInfo"
}
},
{
"name" : "default-fp64",
"displayName": "FP64 Base Developer Configuration",
"inherits" : [ "base" ],
"cacheVariables" : {
"DETRAY_CUSTOM_SCALARTYPE" : "double"
}
},
{
"name" : "default-fp32",
"displayName": "FP32 Base Developer Configuration",
"inherits" : [ "base" ],
"cacheVariables" : {
"DETRAY_CUSTOM_SCALARTYPE" : "float"
}
},
{
"name": "dev-fp32",
"displayName": "FP32 Developer Configuration: Build all Dependencies",
"inherits": [ "default-fp32" ],
"cacheVariables": {
"DETRAY_BUILD_TESTING": "TRUE",
"DETRAY_SETUP_EIGEN": "TRUE",
"DETRAY_SETUP_FASTOR": "TRUE",
"DETRAY_SETUP_VC": "TRUE",
"DETRAY_SETUP_ACTSVG": "TRUE",
"DETRAY_SETUP_BENCHMARK": "TRUE",
"DETRAY_SETUP_COVFIE": "TRUE",
"DETRAY_SETUP_NLOHMANN": "TRUE"
}
},
{
"name": "dev-fp64",
"displayName": "FP64 Developer Configuration: Build all Dependencies",
"inherits": [ "dev-fp32" ],
"cacheVariables": {
"DETRAY_CUSTOM_SCALARTYPE" : "double"
}
},
{
"name": "full-fp32",
"displayName": "FP32 Developer Configuration: Full Build",
"inherits": [ "default-fp32" ],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"DETRAY_EIGEN_PLUGIN" : "TRUE",
"DETRAY_FASTOR_PLUGIN" : "TRUE",
"DETRAY_VC_AOS_PLUGIN" : "TRUE",
"DETRAY_VC_SOA_PLUGIN" : "TRUE",
"DETRAY_SMATRIX_PLUGIN" : "TRUE",
"DETRAY_BUILD_UNITTESTS": "TRUE",
"DETRAY_BUILD_INTEGRATIONTESTS": "TRUE",
"DETRAY_BUILD_TUTORIALS": "TRUE",
"DETRAY_BUILD_BENCHMARKS": "TRUE",
"DETRAY_BUILD_CLI_TOOLS": "TRUE"
}
},
{
"name": "full-fp64",
"displayName": "FP64 Developer Configuration: Full Build",
"inherits": [ "full-fp32" ],
"cacheVariables": {
"DETRAY_CUSTOM_SCALARTYPE" : "double"
}
},
{
"name" : "cuda",
"displayName" : "CUDA Developer Configuration",
"inherits" : [ "default-fp32" ],
"cacheVariables" : {
"DETRAY_BUILD_CUDA" : "TRUE",
"DETRAY_FASTOR_PLUGIN" : "FALSE",
"DETRAY_VC_AOS_PLUGIN" : "FALSE",
"DETRAY_VC_SOA_PLUGIN" : "FALSE",
"DETRAY_SMATRIX_PLUGIN" : "FALSE"
}
},
{
"name" : "sycl",
"displayName" : "SYCL Developer Configuration",
"inherits" : [ "default-fp32" ],
"cacheVariables" : {
"DETRAY_BUILD_SYCL" : "TRUE",
"DETRAY_FASTOR_PLUGIN" : "FALSE",
"DETRAY_VC_AOS_PLUGIN" : "FALSE",
"DETRAY_VC_SOA_PLUGIN" : "FALSE",
"DETRAY_SMATRIX_PLUGIN" : "FALSE"
}
},
{
"name": "hip-fp32",
"displayName": "HIP Developer Configuration",
"inherits" : [ "default-fp32" ],
"cacheVariables" : {
"DETRAY_BUILD_HIP" : "TRUE",
"DETRAY_FASTOR_PLUGIN" : "FALSE",
"DETRAY_VC_AOS_PLUGIN" : "FALSE",
"DETRAY_VC_SOA_PLUGIN" : "FALSE",
"DETRAY_SMATRIX_PLUGIN" : "FALSE"
}
},
{
"name": "hip-fp64",
"displayName": "HIP Developer Configuration",
"inherits" : [ "default-fp64" ],
"cacheVariables" : {
"DETRAY_BUILD_HIP" : "TRUE",
"DETRAY_FASTOR_PLUGIN" : "FALSE",
"DETRAY_VC_AOS_PLUGIN" : "FALSE",
"DETRAY_VC_SOA_PLUGIN" : "FALSE",
"DETRAY_SMATRIX_PLUGIN" : "FALSE"
}
},
{
"name" : "smatrix",
"displayName" : "SMatrix Developer Configuration",
"inherits" : [ "default-fp64" ],
"cacheVariables" : {
"DETRAY_SMATRIX_PLUGIN" : "TRUE"
}
},
{
"name" : "gitlab-cuda-ci",
"displayName" : "Gitlab CUDA CI Configuration",
"inherits" : [ "default-fp32", "cuda" ],
"cacheVariables" : {
"BUILD_TESTING" : "TRUE",
"DETRAY_BUILD_HOST" : "FALSE",
"DETRAY_BUILD_UNITTESTS" : "TRUE",
"DETRAY_BUILD_INTEGRATIONTESTS" : "TRUE",
"DETRAY_BUILD_CLI_TOOLS" : "FALSE",
"DETRAY_BUILD_BENCHMARKS" : "FALSE",
"DETRAY_BUILD_TUTORIALS" : "FALSE",
"DETRAY_FAIL_ON_WARNINGS" : "TRUE",
"DETRAY_EIGEN_PLUGIN" : "TRUE"
}
},
{
"name" : "gitlab-sycl-ci",
"displayName" : "Gitlab SYCL CI Configuration",
"inherits" : [ "default-fp32", "sycl" ],
"cacheVariables" : {
"BUILD_TESTING" : "TRUE",
"DETRAY_BUILD_HOST" : "FALSE",
"DETRAY_BUILD_UNITTESTS" : "TRUE",
"DETRAY_BUILD_INTEGRATIONTESTS" : "TRUE",
"DETRAY_BUILD_CLI_TOOLS" : "FALSE",
"DETRAY_BUILD_BENCHMARKS" : "FALSE",
"DETRAY_BUILD_TUTORIALS" : "FALSE",
"DETRAY_FAIL_ON_WARNINGS" : "TRUE",
"DETRAY_EIGEN_PLUGIN" : "TRUE"
}
}
]
}