commit | ba0baf1e88c18af8e03600ab64e9ca0de9a27167 | [log] [tgz] |
---|---|---|
author | Jeremy Kemp <[email protected]> | Tue May 21 10:56:38 2024 +0100 |
committer | Jeremy Kemp <[email protected]> | Fri May 24 13:29:36 2024 +0100 |
tree | ee3fd34fbc7e4cb4319bbf556b96777efe33ef26 | |
parent | 83cc072d8240aad47ef4663d572a31ef27d0411a [diff] |
Third-Party Import of: https://github.com/KhronosGroup/OpenCL-CLHPP Request Document: go/android3p For CL Reviewers: go/android3p#reviewing-a-cl For Build Team: go/ab-third-party-imports Bug: http://b/339404338 Original import of the code can be found at: https://googleplex-android.googlesource.com/platform/external/OpenCL-CLHPP/+/refs/heads/third-party-review. Security Questionnaire: http://b/339404338#comment1 Change-Id: I4d5fd8db9d1a0eee0174f3fcac3df068a7a1ee87
Doxgen documentation for the bindings is available here:
http://khronosgroup.github.io/OpenCL-CLHPP/
Components:
include/CL/opencl.hpp
: The latest, maintained, version of the C++ bindings. It should work with all versions of OpenCL (including 1.x). This is what most users will want.
include/CL/cl2.hpp
: Includes opencl.hpp
and emits a warning, for backwards compability.
docs
: Doxygen file used to generate HTML documentation for opencl.hpp
.
examples
: A simple example application using the very basic features of the bindings.
tests
: A (very small, incomplete) set of regression tests. Building the tests requires Python, Ruby, and CMock. For the last one we use CMock top-of-tree from Github, as the latest (at the time this was written) released CMock version, v2.5.3, has some issues.
CMakeLists.txt
: Build system for the examples and tests and logic for the bindings installation.
While the C++ Headers can be built and installed in isolation, it is part of the OpenCL SDK. If looking for streamlined build experience and a complete development package, refer to the SDK build instructions instead of the following guide.
The C++ Headers require:
OPENCL_CLHPP_HEADERS_DIR
to CMake, one may specify the location of OpenCL Headers. By default, the C++ Headers will look for OpenCL Headers under ${OPENCL_DIST_DIR}/include
.OPENCL_CLHPP_LOADER_DIR
to CMake, one may specify the location of the OpenCL ICD loader. By default, the C++ headers will look for OpenCL ICD loader under ${OPENCL_DIST_DIR}/lib
.--recursive
when cloning the repository, or run git submodule update --init --recursive
.docs
target.Clone this repo, the OpenCL ICD Loader and the OpenCL Headers:
git clone --recursive https://github.com/KhronosGroup/OpenCL-CLHPP git clone https://github.com/KhronosGroup/OpenCL-ICD-Loader git clone https://github.com/KhronosGroup/OpenCL-Headers
Install OpenCL Headers CMake package
cmake -D CMAKE_INSTALL_PREFIX=./OpenCL-Headers/install -S ./OpenCL-Headers -B ./OpenCL-Headers/build cmake --build ./OpenCL-Headers/build --target install
Build and install OpenCL ICD Loader CMake package. (Note that CMAKE_PREFIX_PATH
need to be an absolute path. Update as needed.)
cmake -D CMAKE_PREFIX_PATH=/absolute/path/to/OpenCL-Headers/install -D CMAKE_INSTALL_PREFIX=./OpenCL-ICD-Loader/install -S ./OpenCL-ICD-Loader -B ./OpenCL-ICD-Loader/build cmake --build ./OpenCL-ICD-Loader/build --target install
Build and install OpenCL C++ Headers CMake package.
cmake -D CMAKE_PREFIX_PATH="/absolute/path/to/OpenCL-Headers/install;/absolute/path/to/OpenCL-ICD-Loader/install" -D CMAKE_INSTALL_PREFIX=./OpenCL-CLHPP/install -S ./OpenCL-CLHPP -B ./OpenCL-CLHPP/build cmake --build ./OpenCL-CLHPP/build --target install
Example CMake invocation
cmake -D CMAKE_PREFIX_PATH="/chosen/install/prefix/of/headers;/chosen/install/prefix/of/loader;/chosen/install/prefix/of/cppheaders" /path/to/opencl/app
and sample CMakeLists.txt
cmake_minimum_required(VERSION 3.0) cmake_policy(VERSION 3.0...3.18.4) project(proj) add_executable(app main.cpp) find_package(OpenCLHeaders REQUIRED) find_package(OpenCLICDLoader REQUIRED) find_package(OpenCLHeadersCpp REQUIRED) target_link_libraries(app PRIVATE OpenCL::Headers OpenCL::OpenCL OpenCL::HeadersCpp)