mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 13:27:29 -04:00
23 lines
527 B
C
23 lines
527 B
C
#ifndef __OCLH__
|
|
#define __OCLH__
|
|
|
|
#include <stdlib.h>
|
|
|
|
typedef struct {
|
|
cl_context clContext;
|
|
cl_command_queue clCommandQueue;
|
|
cl_kernel clKernel;
|
|
} clPrmtr;
|
|
|
|
void clMemSet(clPrmtr*, cl_mem, int, size_t);
|
|
char* readFile(const char*);
|
|
|
|
#define CHECK_ERROR(errorMessage) \
|
|
if(clStatus != CL_SUCCESS) \
|
|
{ \
|
|
printf("Error: %s!\n",errorMessage); \
|
|
printf("Line: %d\n",__LINE__); \
|
|
exit(1); \
|
|
}
|
|
|
|
#endif
|