-
Notifications
You must be signed in to change notification settings - Fork 722
/
Copy pathsample.json
68 lines (68 loc) · 1.58 KB
/
sample.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
{
"guid": "62EF3FF6-B286-4D44-8F85-9329AF3FC403",
"name": "Base: Vector Addition Samples",
"categories": ["Toolkit/Get Started", "Toolkit/oneAPI Direct Programming/DPC++/Dense Linear Algebra", "Toolkit/oneAPI Tools/Advisor"],
"description": "This sample shows different ways to express conditionals",
"toolchain": ["icpx"],
"languages": [{"cpp": {"properties": {"projectOptions": [{"projectType": "makefile"}]}}}],
"targetDevice": ["CPU", "GPU"],
"os": ["linux"],
"builder": ["make"],
"ciTests": {
"linux": [
{
"id": "default",
"steps": [
"mkdir build",
"cd build",
"cmake ..",
"make",
"./vector-addition-examples",
"make clean"
]
},
{
"id": "cpu",
"env": [
"export SYCL_DEVICE_TYPE=CPU"
],
"steps": [
"mkdir build",
"cd build",
"cmake ..",
"make",
"./vector-addition-examples",
"make clean"
]
},
{
"id": "gpu",
"env": [
"export SYCL_DEVICE_TYPE=GPU"
],
"steps": [
"mkdir build",
"cd build",
"cmake ..",
"make",
"./vector-addition-examples",
"make clean"
]
},
{
"id": "HOST",
"env": [
"export SYCL_DEVICE_TYPE=HOST"
],
"steps": [
"mkdir build",
"cd build",
"cmake ..",
"make",
"./vector-addition-examples",
"make clean"
]
}
},
"expertise": "Getting Started"
}