Initial open source release of OpenCL 2.2 CTS.

This commit is contained in:
Kedar Patil
2017-05-16 18:25:37 +05:30
parent 6911ba5116
commit 2821bf1323
1035 changed files with 343518 additions and 0 deletions

15
CMakeVendor.txt Normal file
View File

@@ -0,0 +1,15 @@
# Include cmake files to build driver
# to build driver as a dependency of tests
# in this example environment variable $OPENCL_DRIVER points to driver base
# Ex include($ENV{OPENCL_DRIVER}/driver.cmake)
# We intentionally hardcode "_win32" to ensure backwards compatibility (to avoid breaking HAAVE)
if(ANDROID)
if(ARM64_V8A)
set(ARCH "64")
else(ARM64_V8A)
set(ARCH "32")
endif(ARM64_V8A)
endif (ANDROID)
set (CL_INCLUDE_DIR "$ENV{OPENCL_DRIVER}/include/public/")