-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.json
95 lines (95 loc) · 2.48 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
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
{
"guid" : "49C65CB6-F9FA-4E3C-B8BE-4A141E4E0F07",
"name": "Simple Add",
"categories": ["Toolkit/Get Started", "Toolkit/oneAPI Direct Programming/DPC++/Dense Linear Algebra"],
"description": "This simple sample adds two large vectors in parallel and provides a ‘Hello World!’ like sample to ensure your environment is setup correctly using Intel® oneAPI Data Parallel C++ (DPC++)",
"toolchain": ["dpcpp"],
"languages": [{"cpp": {"properties": {"projectOptions": [{"projectType": "makefile"}]}}}],
"targetDevice": ["CPU", "GPU", "FPGA"],
"os": ["linux", "windows"],
"builder": ["ide", "make"],
"ciTests": {
"linux": [
{
"id": "usm",
"steps": [
"make clean",
"make all",
"make run"
]
},
{
"id": "buffers",
"steps": [
"make clean",
"make build_buffers",
"make run_buffers"
]
},
{
"id": "fpga_emu_buffers",
"steps": [
"make clean -f Makefile.fpga",
"make fpga_emu -f Makefile.fpga",
"make run_emu -f Makefile.fpga"
]
},
{
"id": "fpga_emu_usm",
"steps": [
"make clean -f Makefile.fpga",
"make fpga_emu_usm -f Makefile.fpga",
"make run_emu_usm -f Makefile.fpga"
]
},
{
"id": "fpga_report_buffers",
"steps": [
"make clean -f Makefile.fpga",
"make report -f Makefile.fpga"
]
},
{
"id": "fpga_report_usm",
"steps": [
"make clean -f Makefile.fpga",
"make report_usm -f Makefile.fpga"
]
}
],
"windows": [
{
"id": "usm",
"steps": [
"nmake -f Makefile.win",
"nmake -f Makefile.win run",
"nmake -f Makefile.win clean"
]
},
{
"id": "buffers",
"steps": [
"nmake -f Makefile.win build_buffers",
"nmake -f Makefile.win run_buffers",
"nmake -f Makefile.win clean"
]
},
{
"id": "fpga_emu_buffers",
"steps": [
"nmake -f Makefile.win.fpga",
"nmake -f Makefile.win.fpga run",
"nmake -f Makefile.win.fpga clean"
]
},
{
"id": "fpga_emu_usm",
"steps": [
"nmake -f Makefile.win.fpga fpga_emu_usm",
"nmake -f Makefile.win.fpga run_usm",
"nmake -f Makefile.win.fpga clean"
]
}
]
}
}