Skip to content

Commit b0e1ef5

Browse files
author
agola
committed
2 parents a018851 + c34ba3e commit b0e1ef5

File tree

7 files changed

+98
-0
lines changed

7 files changed

+98
-0
lines changed

.ci/samples_linux.json

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
{
2+
"samples": [
3+
{
4+
"path": "DirectProgramming/DPC++/DenseLinearAlgebra/vector-add",
5+
"configurations": [
6+
{
7+
"id": "cpu_buffers",
8+
"build": [
9+
"make all"
10+
],
11+
"run": [
12+
"make run"
13+
],
14+
"clean": [
15+
"make clean"
16+
]
17+
},
18+
{
19+
"id": "cpu_usm",
20+
"build": [
21+
"make build_usm"
22+
],
23+
"run": [
24+
"make run_usm"
25+
],
26+
"clean": [
27+
"make clean"
28+
]
29+
},
30+
{
31+
"id": "fpga_emu_buffers",
32+
"build": [
33+
"make clean -f Makefile.fpga",
34+
"make fpga_emu -f Makefile.fpga"
35+
],
36+
"run": [
37+
"make run_emu -f Makefile.fpga"
38+
]
39+
},
40+
{
41+
"id": "fpga_report_buffers",
42+
"build": [
43+
"make report -f Makefile.fpga"
44+
],
45+
"clean": [
46+
"make clean -f Makefile.fpga"
47+
]
48+
}
49+
]
50+
},
51+
{
52+
"path": "DirectProgramming/DPC++/DenseLinearAlgebra/simple-add",
53+
"configurations": [
54+
{
55+
"id": "cpu_usm",
56+
"build": [
57+
"make all"
58+
],
59+
"run": [
60+
"make run"
61+
],
62+
"clean": [
63+
"make clean"
64+
]
65+
},
66+
{
67+
"id": "cpu_buffers",
68+
"build": [
69+
"make build_buffers"
70+
],
71+
"run": [
72+
"make run_buffers"
73+
],
74+
"clean": [
75+
"make clean"
76+
]
77+
},
78+
{
79+
"id": "fpga_emu_buffers",
80+
"build": [
81+
"make clean -f Makefile.fpga",
82+
"make fpga_emu -f Makefile.fpga"
83+
],
84+
"run": [
85+
"make run_emu -f Makefile.fpga"
86+
]
87+
},
88+
{
89+
"id": "fpga_repots_buffers",
90+
"build": [
91+
"make clean -f Makefile.fpga",
92+
"make report -f Makefile.fpga"
93+
]
94+
}
95+
]
96+
}
97+
]
98+
}

.img/choose.png

34.7 KB
Loading

.img/compare.png

30.3 KB
Loading

.img/create.png

29.9 KB
Loading

.img/fork.png

7.77 KB
Loading

.img/merge.png

11 KB
Loading

.img/newpr.png

25.9 KB
Loading

0 commit comments

Comments
 (0)