mirror of https://github.com/GOSTSec/sgminer
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.
15 lines
249 B
15 lines
249 B
11 years ago
|
#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 */
|