lotus/lib/harmony/resources/miniopencl/cl.h

17 lines
293 B
C
Raw Normal View History

2023-08-21 21:41:00 +00:00
#ifndef CL_H
#define CL_H
#define CL_USE_DEPRECATED_OPENCL_1_1_APIS
#define CL_USE_DEPRECATED_OPENCL_1_2_APIS
#define CL_USE_DEPRECATED_OPENCL_2_0_APIS
2023-08-21 22:13:17 +00:00
#define CL_TARGET_OPENCL_VERSION 300
2023-08-21 21:41:00 +00:00
#ifdef __APPLE__
#include "OpenCL/opencl.h"
#else
#include "CL/opencl.h"
#endif
#endif /* CL_H */