summaryrefslogtreecommitdiffstats
path: root/build/Cuda.rules
blob: 733aa1ffe7bf545ffcda369d458b5ab03620c310 (plain)
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<?xml version="1.0" encoding="utf-8"?>
<VisualStudioToolFile
	Name="CUDA Build Rule v2.1.0"
	Version="8,00"
	>
	<Rules>
		<CustomBuildRule
			Name="CUDA Build Rule"
			DisplayName="CUDA Build Rule v2.1.0"
			CommandLine="echo [CompilerPath] [Keep] [ExtraNvccOptions] [Platform] [Arch] -ccbin &quot;$(VCInstallDir)bin&quot; [Emulation] [FastMath] [Defines] -Xcompiler &quot;/EHsc [Warning] /nologo [Optimization] /Zi [RuntimeChecks] [Runtime] [TypeInfo] [ExtraCppOptions]&quot; [Include] [MaxRegCount] [PtxAsOptionV] [NvccCompilation] &quot;$(InputPath)&quot; &#x0D;&#x0A; [CompilerPath] [Keep] [ExtraNvccOptions] [Platform] [Arch] -ccbin &quot;$(VCInstallDir)bin&quot; [Emulation] [FastMath] [Defines] -Xcompiler &quot;/EHsc [Warning] /nologo [Optimization] /Zi [RuntimeChecks] [Runtime] [TypeInfo] [ExtraCppOptions]&quot; [Include] [MaxRegCount] [ptxasoptionv] [NvccCompilation] &quot;$(InputPath)&quot; "
			Outputs="[compileout]"
			AdditionalDependencies="[AddedDependencies]"
			FileExtensions="*.cu"
			ExecutionDescription="Compiling with CUDA Build Rule..."
			>
			<Properties>
				<StringProperty
					Name="Include"
					DisplayName="Additional Include Directories"
					Description="Specifies one or more directories to add to the include path; use semi-colon delimited list if more than one.  (/I[path])"
					Switch="-I[value]"
					DefaultValue="&quot;$(CUDA_INC_PATH)&quot;"
					Delimited="true"
					Delimiters=";"
					Inheritable="true"
				/>
				<BooleanProperty
					Name="Debug"
					DisplayName="Generate Debug Information"
					Description="Specifies whether or not debugging information is generated by the CUDA compiler.  (-D_DEBUG)"
					Switch="-D_DEBUG"
				/>
				<EnumProperty
					Name="NvccCompilation"
					DisplayName="NVCC Compilation Type"
					Description="Select desired output of NVCC compilation (-c/-compile, -cuda, -gpu, -cubin, -ptx)"
					>
					<Values>
						<EnumValue
							Value="0"
							Switch="--compile -o &quot;$(IntDir)\$(InputName).cu.obj&quot;"
							DisplayName="Generate hybrid object file  (--compile / -c)"
						/>
						<EnumValue
							Value="1"
							Switch="-cuda -o &quot;$(IntDir)\$(InputName).cu.c&quot;"
							DisplayName="Generate hybrid .c file  (-cuda)"
						/>
						<EnumValue
							Value="2"
							Switch="-gpu -o &quot;$(IntDir)\$(InputName).gpu&quot;"
							DisplayName="Generate .gpu file  (-gpu)"
						/>
						<EnumValue
							Value="3"
							Switch="-m32 -cubin -o &quot;data\$(InputName).cubin&quot;"
							DisplayName="Generate .cubin file  (-cubin)"
						/>
						<EnumValue
							Value="4"
							Switch="-ptx -o &quot;$(IntDir)\$(InputName).ptx&quot;"
							DisplayName="Generate .ptx file  (-ptx)"
						/>
					</Values>
				</EnumProperty>
				<EnumProperty
					Name="compileout"
					DisplayName="Compiler Output (obj/cubin)"
					Description="Sets output as an OBJ or cubin file"
					>
					<Values>
						<EnumValue
							Value="0"
							Switch="&quot;$(IntDir)/$(InputName).cu.obj&quot;"
							DisplayName="&quot;$(IntDir)/$(InputName).cu.obj&quot;"
						/>
						<EnumValue
							Value="1"
							Switch="&quot;data/$(InputName).cubin&quot;"
							DisplayName="&quot;data/$(InputName).cubin&quot;"
						/>
					</Values>
				</EnumProperty>
				<EnumProperty
					Name="Arch"
					DisplayName="GPU Architecture"
					Description="Select option for the GPU architecture to use on the command line (-arch sm_10, sm_11, sm_12, sm_13)"
					DefaultValue="10"
					>
					<Values>
						<EnumValue
							Value="10"
							Switch="-arch sm_10"
							DisplayName="sm_10"
						/>
						<EnumValue
							Value="11"
							Switch="-arch sm_11"
							DisplayName="sm_11"
						/>
						<EnumValue
							Value="12"
							Switch="-arch sm_12"
							DisplayName="sm_12"
						/>
						<EnumValue
							Value="13"
							Switch="-arch sm_13"
							DisplayName="sm_13"
						/>
					</Values>
				</EnumProperty>
				<EnumProperty
					Name="CompilerPath"
					DisplayName="Path to nvcc.exe"
					Description="Specifies the path to the CUDA compiler, nvcc.exe "
					>
					<Values>
						<EnumValue
							Value="0"
							Switch="&quot;$(CUDA_BIN_PATH)\nvcc.exe&quot;"
							DisplayName="Installed Toolkit (uses CUDA_BIN_PATH environment varible)"
						/>
						<EnumValue
							Value="1"
							Switch="&quot;[AlternateNvccPath]&quot;"
							DisplayName="Use Alternate path to CUDA, specified below"
						/>
					</Values>
				</EnumProperty>
				<StringProperty
					Name="AlternateNvccPath"
					DisplayName="Alternate path to nvcc.exe (non-standard installation)"
					Switch="[value]\nvcc.exe"
				/>
				<BooleanProperty
					Name="Emulation"
					DisplayName="Emulation Mode"
					Description="Whether or not to generate emulated code."
					Switch="-deviceemu -D_DEVICEEMU"
				/>
				<BooleanProperty
					Name="FastMath"
					DisplayName="Use Fast Math"
					Category="Default"
					Description="Make use of the fast math library."
					Switch="-use_fast_math"
				/>
				<IntegerProperty
					Name="MaxRegCount"
					DisplayName="maxrregcount"
					Switch="-maxrregcount=[Value]"
					DefaultValue="32"
				/>
				<BooleanProperty
					Name="PtxAsOptionV"
					DisplayName="PtxAsOptionV"
					Switch="--ptxas-options=-v"
				/>
				<StringProperty
					Name="ExtraNvccOptions"
					DisplayName="Extra Options"
					Description="Supply any additional command line options to NVCC"
					Switch="[value]"
				/>
				<StringProperty
					Name="Defines"
					DisplayName="Preprocessor Definitions"
					PropertyPageName="Preprocessor"
					Description="Specifies one or more preprocessor defines.  (-D[macro])"
					Switch="-D[value]"
					Delimited="true"
					Inheritable="true"
				/>
				<BooleanProperty
					Name="Keep"
					DisplayName="Keep preprocessed files (.ptx, .cubin, cudafe1.c, cudafe1.cpp, cudafe1.gpu, etc.)"
					PropertyPageName="Preprocessor"
					Description="Specifies that preprocessor files generated by the CUDA compiler are not deleted."
					Switch="--keep"
				/>
				<EnumProperty
					Name="Warning"
					DisplayName="Warning Level"
					PropertyPageName="Hybrid CUDA/C++ Options"
					Description="Select how strict you want the compiler to be about checking for potentially suspect constructs.   (/W0 - /W4)"
					DefaultValue="3"
					>
					<Values>
						<EnumValue
							Value="0"
							Switch="/W0"
							DisplayName="Off: Turn Off All Warnings (/W0)"
						/>
						<EnumValue
							Value="1"
							Switch="/W1"
							DisplayName="Level 1 (/W1)"
						/>
						<EnumValue
							Value="2"
							Switch="/W2"
							DisplayName="Level 2 (/W2)"
						/>
						<EnumValue
							Value="3"
							Switch="/W3"
							DisplayName="Level 3 (/W3)"
						/>
						<EnumValue
							Value="4"
							Switch="/W4"
							DisplayName="Level 4 (/W4)"
						/>
					</Values>
				</EnumProperty>
				<EnumProperty
					Name="Optimization"
					DisplayName="Optimization"
					Description="Select option for code optimization; choose Custom to use specific optimization options.  (/Od, /O1, /O2, /Ox)"
					DefaultValue="2"
					>
					<Values>
						<EnumValue
							Value="0"
							Switch="/Od"
							DisplayName="Disabled (/Od)"
						/>
						<EnumValue
							Value="1"
							Switch="/O1"
							DisplayName="Minimize Size (/O1)"
						/>
						<EnumValue
							Value="2"
							Switch="/O2"
							DisplayName="Maximize Speed (/O2)"
						/>
						<EnumValue
							Value="3"
							Switch="/Ox"
							DisplayName="Full Optimization (/Ox)"
						/>
					</Values>
				</EnumProperty>
				<StringProperty
					Name="AddedDependencies"
					DisplayName="Source Dependencies"
					Description="Add additional CUDA file dependencies"
					Switch="[value]"
				/>
				<EnumProperty
					Name="RuntimeChecks"
					DisplayName="Basic Runtime Checks"
					PropertyPageName="Hybrid CUDA/C++ Options"
					Description="Perform basic runtime error checks, incompatible with any optimization type other than debug.   (/RTCs, /RTCu, /RTC1)"
					>
					<Values>
						<EnumValue
							Value="0"
							Switch=" "
							DisplayName="Default"
						/>
						<EnumValue
							Value="1"
							Switch="/RTCs"
							DisplayName="Stack Frames (/RTCs)"
						/>
						<EnumValue
							Value="2"
							Switch="/RTCu"
							DisplayName="Uninitialized Variables (/RTCu)"
						/>
						<EnumValue
							Value="3"
							Switch="/RTC1"
							DisplayName="Both (/RTC1, equiv. to /RTCsu)"
						/>
					</Values>
				</EnumProperty>
				<EnumProperty
					Name="Runtime"
					DisplayName="Runtime Library"
					PropertyPageName="Hybrid CUDA/C++ Options"
					Description="Specify runtime library for linking.   (/MT, /MTd, /MD, /MDd, /ML, /MLd)"
					>
					<Values>
						<EnumValue
							Value="0"
							Switch="/MT"
							DisplayName="Multi-Threaded (/MT)"
						/>
						<EnumValue
							Value="1"
							Switch="/MTd"
							DisplayName="Multi-Threaded Debug (/MTd)"
						/>
						<EnumValue
							Value="2"
							Switch="/MD"
							DisplayName="Multi-Threaded DLL (/MD)"
						/>
						<EnumValue
							Value="3"
							Switch="/MDd"
							DisplayName="Multi-Threaded Debug DLL (/MDd)"
						/>
						<EnumValue
							Value="4"
							Switch="/ML"
							DisplayName="Single-Threaded (/ML)"
						/>
						<EnumValue
							Value="5"
							Switch="/MLd"
							DisplayName="Single-Threaded Debug (/MLd)"
						/>
					</Values>
				</EnumProperty>
				<BooleanProperty
					Name="TypeInfo"
					DisplayName="Enable Run-Time Type Info"
					PropertyPageName="Hybrid CUDA/C++ Options"
					Description="Adds code for checking C++ object types at run time (runtime type information). (/GR)"
					Switch="/GR"
				/>
				<StringProperty
					Name="ExtraCppOptions"
					DisplayName="Extra C++ Options"
					PropertyPageName="Hybrid CUDA/C++ Options"
					Description="Supply any additional command line options to the host C++ compiler"
					Switch="[value]"
				/>
				<EnumProperty
					Name="Platform"
					DisplayName="Platform"
					>
					<Values>
						<EnumValue
							Value="0"
							DisplayName="Default"
						/>
						<EnumValue
							Value="1"
							Switch="-m32"
							DisplayName="Win32"
						/>
						<EnumValue
							Value="2"
							Switch="-m64"
							DisplayName="x64"
						/>
					</Values>
				</EnumProperty>
			</Properties>
		</CustomBuildRule>
	</Rules>
</VisualStudioToolFile>