OpenCL GPU miner
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
249 B

#ifndef BINARY_KERNEL_H
#define BINARY_KERNEL_H
#ifdef __APPLE_CC__
#include <OpenCL/opencl.h>
#else
#include <CL/cl.h>
#endif
#include "build_kernel.h"
cl_program load_opencl_binary_kernel(build_kernel_data *data);
#endif /* BINARY_KERNEL_H */