-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathdub.json
More file actions
37 lines (37 loc) · 1.11 KB
/
dub.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "dcompute",
"description": "Native Heterogeneous Computing for D",
"copyright": "Copyright © 2017, Nicholas Wilson",
"authors": ["Nicholas Wilson"],
"license": "BSL-1.0",
"dependencies": {
"derelict-cl" : "~>3.2.0",
"derelict-cuda": "~>3.1.1",
"taggedalgebraic": "~>0.10.7"
},
"configurations": [
{
"name": "library",
"targetType": "library",
"excludedSourceFiles": ["source/dcompute/tests/*"],
},
{
"name": "unittest",
"dflags" : ["-mdcompute-targets=cuda-210" ,"-oq"],
"targetType": "executable",
"versions": ["DComputeTesting"],
},
{
"name": "test-cuda",
"dflags" : ["--mdcompute-targets=cuda-210", "-oq"],
"targetType": "executable",
"versions": ["DComputeTestCUDA"],
},
{
"name": "test-ocl",
"dflags" : ["--mdcompute-targets=ocl-200", "-oq"],
"targetType": "executable",
"versions": ["DComputeTestOpenCL"],
},
]
}