Skip to content

Commit ccf9df7

Browse files
FPGA: Replace CL/sycl.hpp with sycl/sycl.hpp for fpga_compile (#2395)
Replace CL/sycl.hpp with sycl/sycl.hpp for fpga_compile because it is deprecated
1 parent 34d953c commit ccf9df7

File tree

1 file changed

+2
-2
lines changed
  • DirectProgramming/C++SYCL_FPGA/Tutorials/GettingStarted/fpga_compile/part3_dpcpp_lambda_usm/src

1 file changed

+2
-2
lines changed

DirectProgramming/C++SYCL_FPGA/Tutorials/GettingStarted/fpga_compile/part3_dpcpp_lambda_usm/src/vector_add.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <vector>
33

44
// oneAPI headers
5-
#include <CL/sycl.hpp>
5+
#include <sycl/sycl.hpp>
66
#include <sycl/ext/intel/fpga_extensions.hpp>
77

88
using namespace sycl;
@@ -96,4 +96,4 @@ int main() {
9696
std::terminate();
9797
}
9898
return passed ? EXIT_SUCCESS : EXIT_FAILURE;
99-
}
99+
}

0 commit comments

Comments
 (0)