Silenced a new OpenCL warning message

pull/383/head
Cedric Nugteren 2020-03-08 10:14:59 +01:00
parent 8433985051
commit e3ce88154a
3 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
Development version (next version)
- Various minor fixes and enhancements
Version 1.5.1
- Implemented single-kernel version of convolution as GEMM
- Now catches all exceptions thrown by the tuners

View File

@ -47,6 +47,7 @@
#include <assert.h>
// OpenCL
#define CL_TARGET_OPENCL_VERSION 110
#define CL_USE_DEPRECATED_OPENCL_1_1_APIS // to disable deprecation warnings
#define CL_USE_DEPRECATED_OPENCL_1_2_APIS // to disable deprecation warnings
#define CL_USE_DEPRECATED_OPENCL_2_0_APIS // to disable deprecation warnings

View File

@ -21,6 +21,7 @@
// Just needed for 'Precision'
#ifdef OPENCL_API
#define CL_TARGET_OPENCL_VERSION 110
#include "clblast.h"
#elif CUDA_API
#include "clblast_cuda.h"