Skip to content

Commit 23ad06b

Browse files
Fix CI failures
1 parent af6c7e7 commit 23ad06b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DirectProgramming/DPC++FPGA/Tutorials/DesignPatterns/compute_units/src/build.ninja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ emulator_target = ${target_name}.fpga_emu.exe
55
report_target = ${target_name}_report.a
66
report_target_s10_pac = ${target_name}_s10_pac_report.a
77

8-
hardware_flags = -fintelfpga -Xshardware -std=c++14
9-
emulator_flags = -fintelfpga -DFPGA_EMULATOR -std=c++14
8+
hardware_flags = -fintelfpga -Xshardware
9+
emulator_flags = -fintelfpga -DFPGA_EMULATOR
1010

1111
rule build_fpga_emu
1212
command = dpcpp /GX ${emulator_flags} $in -o $out

DirectProgramming/DPC++FPGA/Tutorials/DesignPatterns/compute_units/src/pipe_array.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct PipeArray {
3535
idxs...>::IsValid(),
3636
"Index out of bounds");
3737
using VerifiedPipe =
38-
cl::sycl::INTEL::pipe<StructId<idxs...>, BaseTy, depth>;
38+
INTEL::pipe<StructId<idxs...>, BaseTy, depth>;
3939
};
4040

4141
template <size_t... idxs>

0 commit comments

Comments
 (0)