Lines Matching full:opencl

1 # OpenCL<sup>TM</sup> API C++ bindings
5 http://khronosgroup.github.io/OpenCL-CLHPP/
9 * `include/CL/opencl.hpp`:
11 versions of OpenCL (including 1.x). This is what most users will want.
14 Includes `opencl.hpp` and emits a warning, for backwards compability.
17 Doxygen file used to generate HTML documentation for `opencl.hpp`.
35 …ilt and installed in isolation, it is part of the [OpenCL SDK](https://github.com/KhronosGroup/Ope…
41 - the [OpenCL Headers](https://github.com/KhronosGroup/OpenCL-Headers/).
42 …` to CMake, one may specify the location of OpenCL Headers. By default, the C++ Headers will look …
43 - the [OpenCL-ICD-Loader](https://github.com/KhronosGroup/OpenCL-ICD-Loader/) when building the exa…
44 …CMake, one may specify the location of the OpenCL ICD loader. By default, the C++ headers will loo…
54 1. Clone this repo, the OpenCL ICD Loader and the OpenCL Headers:
56 git clone --recursive https://github.com/KhronosGroup/OpenCL-CLHPP
57 git clone https://github.com/KhronosGroup/OpenCL-ICD-Loader
58 git clone https://github.com/KhronosGroup/OpenCL-Headers
60 1. Install OpenCL Headers CMake package
62 …cmake -D CMAKE_INSTALL_PREFIX=./OpenCL-Headers/install -S ./OpenCL-Headers -B ./OpenCL-Headers/bui…
63 cmake --build ./OpenCL-Headers/build --target install
65 1. Build and install OpenCL ICD Loader CMake package. _(Note that `CMAKE_PREFIX_PATH` need to be an…
67 …ATH=/absolute/path/to/OpenCL-Headers/install -D CMAKE_INSTALL_PREFIX=./OpenCL-ICD-Loader/install -…
68 cmake --build ./OpenCL-ICD-Loader/build --target install
70 1. Build and install OpenCL C++ Headers CMake package.
72 …/to/OpenCL-Headers/install;/absolute/path/to/OpenCL-ICD-Loader/install" -D CMAKE_INSTALL_PREFIX=./
73 cmake --build ./OpenCL-CLHPP/build --target install
80 …/headers;/chosen/install/prefix/of/loader;/chosen/install/prefix/of/cppheaders" /path/to/opencl/app
93 target_link_libraries(app PRIVATE OpenCL::Headers OpenCL::OpenCL OpenCL::HeadersCpp)