diff options
author | Pasha <pasha@member.fsf.org> | 2022-10-25 18:48:39 +0000 |
---|---|---|
committer | Pasha <pasha@member.fsf.org> | 2022-10-25 18:48:39 +0000 |
commit | 4550eacc18535ea8480c8303c62adbd046fa031d (patch) | |
tree | 39c850531e37a9ae6d390ac35cf21a6029d5b5e7 /simplex-dev/sample.json | |
download | oneapi-4550eacc18535ea8480c8303c62adbd046fa031d.tar.gz oneapi-4550eacc18535ea8480c8303c62adbd046fa031d.tar.bz2 |
initial test
Diffstat (limited to 'simplex-dev/sample.json')
-rwxr-xr-x | simplex-dev/sample.json | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/simplex-dev/sample.json b/simplex-dev/sample.json new file mode 100755 index 0000000..a67feba --- /dev/null +++ b/simplex-dev/sample.json @@ -0,0 +1,41 @@ +{ + "guid": "1457B49A-2CD3-48E5-B3A9-753EAD2D18F7", + "name": "Fast Recompile", + "categories": ["Toolkit/oneAPI Direct Programming/DPC++ FPGA/Getting Started Tutorials"], + "description": "An IntelĀ® FPGA tutorial demonstrating how to separate the compilation of host and device code to save development time", + "toolchain": ["dpcpp"], + "os": ["linux", "windows"], + "targetDevice": ["FPGA"], + "builder": ["ide", "cmake"], + "languages": [{"cpp":{}}], + "ciTests": { + "linux": [ + { + "id": "fpga_emu", + "steps": [ + "dpcpp --version", + "mkdir build", + "cd build", + "cmake ..", + "make fpga_emu", + "./fast_recompile.fpga_emu" + ] + } + ], + "windows": [ + { + "id": "fpga_emu", + "steps": [ + "dpcpp --version", + "cd ../../..", + "mkdir build", + "cd build", + "cmake -G \"NMake Makefiles\" ../Tutorials/GettingStarted/fast_recompile", + "nmake fpga_emu", + "fast_recompile.fpga_emu.exe" + ] + } + ] + }, + "expertise": "Getting Started" +} |