Skip to content

Commit 56a1ac4

Browse files
authored
Fix CI steps in vector-add and simple-add (#1496)
The Windows USM fpga_emu targets of these two samples where missing the cmake option to trigger the USM compile, resulting in a CI failure.
1 parent 52b47c1 commit 56a1ac4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: DirectProgramming/C++SYCL/DenseLinearAlgebra/simple-add/sample.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"steps": [
115115
"mkdir build",
116116
"cd build",
117-
"cmake -G \"NMake Makefiles\" ..",
117+
"cmake -G \"NMake Makefiles\" -DUSM=1 ..",
118118
"nmake fpga_emu",
119119
"simple-add-usm.fpga_emu.exe",
120120
"nmake clean"

Diff for: DirectProgramming/C++SYCL/DenseLinearAlgebra/vector-add/sample.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@
282282
"steps": [
283283
"mkdir build",
284284
"cd build",
285-
"cmake -G \"NMake Makefiles\" ..",
285+
"cmake -G \"NMake Makefiles\" -DUSM=1 ..",
286286
"nmake fpga_emu",
287287
"vector-add-usm.fpga_emu.exe",
288288
"nmake clean"

0 commit comments

Comments
 (0)