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.
22 lines
438 B
22 lines
438 B
14 years ago
|
#ifndef __OCL_H__
|
||
|
#define __OCL_H__
|
||
|
#ifdef __APPLE_CC__
|
||
|
#include <OpenCL/opencl.h>
|
||
|
#else
|
||
|
#include <CL/cl.h>
|
||
|
#endif
|
||
|
|
||
|
typedef struct {
|
||
|
cl_context context;
|
||
|
cl_kernel kernel;
|
||
|
cl_command_queue commandQueue;
|
||
|
cl_program program;
|
||
|
cl_mem outputBuffer;
|
||
|
} _clState;
|
||
|
|
||
|
extern char *file_contents(const char *filename, int *length);
|
||
|
extern int clDevicesNum();
|
||
|
extern _clState *initCl(int gpu, char *name, size_t nameSize);
|
||
|
|
||
|
#endif /* __OCL_H__ */
|