Skip to content

Commit ff117b9

Browse files
committed
add sample.json
1 parent 7c948b4 commit ff117b9

File tree

1 file changed

+72
-0
lines changed
  • DirectProgramming/C++SYCL_FPGA/Tutorials/DesignPatterns/restartable_kernel

1 file changed

+72
-0
lines changed
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"guid": "393AA016-DF50-40A7-A9D4-DA389B29CACF",
3+
"name": "Restartable Kernel",
4+
"categories": ["Toolkit/oneAPI Direct Programming/C++SYCL FPGA/Tutorials/Design Patterns"],
5+
"description": "An Intel® FPGA tutorial that demonstrates how to create a kernel that can be stopped at any time by your host application.",
6+
"toolchain": ["icpx"],
7+
"os": ["linux", "windows"],
8+
"targetDevice": ["FPGA"],
9+
"builder": ["cmake"],
10+
"languages": [{"cpp":{}}],
11+
"commonFolder": {
12+
"base": "../../..",
13+
"include": [
14+
"README.md",
15+
"Tutorials/DesignPatterns/restartable_kernel",
16+
"include"
17+
],
18+
"exclude": []
19+
},
20+
"ciTests": {
21+
"linux": [
22+
{
23+
"id": "fpga_emu",
24+
"steps": [
25+
"icpx --version",
26+
"mkdir build",
27+
"cd build",
28+
"cmake ..",
29+
"make fpga_emu",
30+
"./restartable.fpga_emu"
31+
]
32+
},
33+
{
34+
"id": "report",
35+
"steps": [
36+
"icpx --version",
37+
"mkdir build",
38+
"cd build",
39+
"cmake ..",
40+
"make report"
41+
]
42+
}
43+
],
44+
"windows": [
45+
{
46+
"id": "fpga_emu",
47+
"steps": [
48+
"icpx --version",
49+
"cd ../../..",
50+
"mkdir build",
51+
"cd build",
52+
"cmake -G \"NMake Makefiles\" ../Tutorials/DesignPatterns/restartable_kernel",
53+
"nmake fpga_emu",
54+
"restartable.fpga_emu.exe"
55+
]
56+
},
57+
{
58+
"id": "report",
59+
"steps": [
60+
"icpx --version",
61+
"cd ../../..",
62+
"mkdir build",
63+
"cd build",
64+
"cmake -G \"NMake Makefiles\" ../Tutorials/DesignPatterns/restartable_kernel",
65+
"nmake report"
66+
]
67+
}
68+
]
69+
},
70+
"expertise": "Getting Started"
71+
}
72+

0 commit comments

Comments
 (0)