0

I am new to OpenCL, I installed the intel sdk for opencl according to the answer on this thread: OpenCL compile on linux But my opencl code won't compile. I am having an error message "CL/cl.hpp:No such file or directory"

Community
  • 1
  • 1
nosmaS
  • 23
  • 4

1 Answers1

1

CL/cl.hpp is a header file from Khronos group (the body behind the OpenCL standard) implementing C++ Bindings Specification. As far as I know, OpenCL providers are not required to provide the file with their packages, so you can download it from the Khronos registry.

ddemidov
  • 1,731
  • 13
  • 15