12 lines
195 B
C
12 lines
195 B
C
#ifndef _UTIL_H_
|
|
#define _UTIL_H_
|
|
|
|
#define CL_TARGET_OPENCL_VERSION 200
|
|
#include <CL/cl_platform.h>
|
|
|
|
char *clm_loadFile(const char *path);
|
|
|
|
const char *clm_clErrorToString(cl_int error);
|
|
|
|
#endif
|