Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,57 @@
"languages": [{"cpp": {"properties": {"projectOptions": [{"projectType": "makefile"}]}}}],
"targetDevice": ["CPU", "GPU", "FPGA"],
"os": ["linux", "windows"],
"builder": ["ide", "make"]
"builder": ["ide", "make"],
"ciTests": {
"linux": [
{
"id": "cpu_usm",
"steps": [
"make all",
"make run",
"make clean"
]
},
{
"id": "cpu_buffers",
"steps": [
"make build_buffers",
"make run_buffers",
"make clean"
]
},
{
"id": "fpga_emu_buffers",
"steps": [
"make fpga_emu -f Makefile.fpga",
"make run_emu -f Makefile.fpga",
"make clean -f Makefile.fpga"
]
},
{
"id": "fpga_report_buffers",
"steps": [
"make report -f Makefile.fpga"
]
}
],
"windows": [
{
"id": "cpu_usm",
"steps": [
"nmake -f Makefile.win",
"nmake -f Makefile.win run",
"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"
]
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,25 @@
"languages": [{"cpp": {"properties": {"projectOptions": [{"projectType": "makefile"}]}}}],
"targetDevice": ["CPU", "GPU", "FPGA"],
"os": ["linux", "windows"],
"builder": ["ide", "make"]
"builder": ["ide", "make"],
"ciTests": {
"linux": [
{
"steps": [
"make all",
"make run",
"make clean"
]
}
],
"windows": [
{
"steps": [
"nmake -f Makefile.win",
"nmake -f Makefile.win run",
"nmake -f Makefile.win clean"
]
}
]
}
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# oneAPI-samples
This is the readme.
A test update here.