Skip to content

Commit 41f93e6

Browse files
committed
added "ciTests" to the sample.json file. It passed the check.
Signed-off-by: todd.erdner <[email protected]>
1 parent f640fa8 commit 41f93e6

File tree

2 files changed

+44
-45
lines changed

2 files changed

+44
-45
lines changed

DirectProgramming/DPC++/ParallelPatterns/dpc_reduce/sample.json

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,20 @@
1010
"targetDevice": ["CPU", "GPU"],
1111
"os": ["linux"],
1212
"builder": ["cmake"],
13+
"ciTests": {
14+
"linux": [
15+
{
16+
"id": "dpc_reduce",
17+
"steps": [
18+
"mkdir build",
19+
"cd build",
20+
"cmake ..",
21+
"make dpc_reduce",
22+
"./src/dpc_reduce"
23+
]
24+
}
25+
]
26+
}
27+
}
28+
1329

14-
"path": "DPC++Compiler/oneDPL/dpc_reduce",
15-
"configurations": [{
16-
"id": "dpc_reduce",
17-
"build": [
18-
"mkdir build",
19-
"cd build",
20-
"cmake ..",
21-
"make dpc_reduce"
22-
],
23-
"run": [
24-
"./src/dpc_reduce"
25-
],
26-
"clean": [
27-
"make clean"
28-
]
29-
}]
30-
}
Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
{
2-
"guid": "3C2AA983-1B31-4C05-BCA0-724F159B8535",
3-
"name": "openmp_reduction",
4-
"categories": ["Toolkit/Intel® oneAPI Base Toolkit/oneAPI DPC++ Compiler/oneAPI DPC++ Library/CPU and GPU"],
5-
"description": "It models transform reduce in different ways showing capability of oneAPI.",
6-
"toolchain": ["icpx"],
7-
"languages": [{"cpp":{}}],
8-
"targetDevice": ["CPU", "GPU"],
9-
"os": ["linux"],
10-
"builder": ["cmake"],
11-
"path": "DPC++Compiler/openmp_reduction",
12-
"configurations": [
13-
{
14-
"id": "openmp_reduction",
15-
"build": [
16-
"mkdir build",
17-
"cd build",
18-
"cmake ..",
19-
"make openmp_reduction"
20-
],
21-
"run": [
22-
"./src/openmp_reduction"
23-
],
24-
"clean": [
25-
"make clean"
26-
]
27-
}
1+
{
2+
"guid": "ECF6C8EB-753B-4107-AF64-60662CE41726",
3+
"name": "DPC Reduce",
4+
"categories": ["Toolkit/Intel® oneAPI Base Toolkit/oneAPI DPC++ Compiler/oneAPI DPC++ Library/CPU and GPU"],
5+
"description": "It models transform reduce in different ways showing capability of oneAPI.",
6+
"toolchain": ["dpcpp"],
7+
"languages": [{
8+
"cpp": {}
9+
}],
10+
"targetDevice": ["CPU", "GPU"],
11+
"os": ["linux"],
12+
"builder": ["cmake"],
13+
"ciTests": {
14+
"linux": [
15+
{
16+
"id": "dpc_reduce",
17+
"steps": [
18+
"mkdir build",
19+
"cd build",
20+
"cmake ..",
21+
"make dpc_reduce",
22+
"./src/dpc_reduce"
23+
]
24+
}
2825
]
29-
}
26+
}
27+
}
28+
29+

0 commit comments

Comments
 (0)