Skip to content

Commit e8c5145

Browse files
committed
Added CI configurations for simple-add
1 parent 855d889 commit e8c5145

File tree

1 file changed

+46
-1
lines changed
  • DirectProgramming/DPC++/DenseLinearAlgebra/simple-add

1 file changed

+46
-1
lines changed

DirectProgramming/DPC++/DenseLinearAlgebra/simple-add/sample.json

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,50 @@
66
"languages": [{"cpp": {"properties": {"projectOptions": [{"projectType": "makefile"}]}}}],
77
"targetDevice": ["CPU", "GPU", "FPGA"],
88
"os": ["linux", "windows"],
9-
"builder": ["ide", "make"]
9+
"builder": ["ide", "make"],
10+
"configurations": {
11+
"linux": [
12+
{
13+
"id": "cpu_usm",
14+
"build": [
15+
"make all"
16+
],
17+
"run": [
18+
"make run"
19+
],
20+
"clean": [
21+
"make clean"
22+
]
23+
},
24+
{
25+
"id": "cpu_buffers",
26+
"build": [
27+
"make build_buffers"
28+
],
29+
"run": [
30+
"make run_buffers"
31+
],
32+
"clean": [
33+
"make clean"
34+
]
35+
},
36+
{
37+
"id": "fpga_emu_buffers",
38+
"build": [
39+
"make clean -f Makefile.fpga",
40+
"make fpga_emu -f Makefile.fpga"
41+
],
42+
"run": [
43+
"make run_emu -f Makefile.fpga"
44+
]
45+
},
46+
{
47+
"id": "fpga_repots_buffers",
48+
"build": [
49+
"make clean -f Makefile.fpga",
50+
"make report -f Makefile.fpga"
51+
]
52+
}
53+
]
54+
}
1055
}

0 commit comments

Comments
 (0)