forked from savale/sph-sgminer_fresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocl.h
55 lines (50 loc) · 1.22 KB
/
ocl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef __OCL_H__
#define __OCL_H__
#include "config.h"
#include <stdbool.h>
#ifdef __APPLE_CC__
#include <OpenCL/opencl.h>
#else
#include <CL/cl.h>
#endif
#include "miner.h"
typedef struct {
cl_context context;
cl_kernel kernel;
cl_kernel kernel_blake;
cl_kernel kernel_bmw;
cl_kernel kernel_groestl;
cl_kernel kernel_skein;
cl_kernel kernel_jh;
cl_kernel kernel_keccak;
cl_kernel kernel_luffa;
cl_kernel kernel_cubehash;
cl_kernel kernel_shavite;
cl_kernel kernel_simd;
cl_kernel kernel_echo;
cl_kernel kernel_hamsi;
cl_kernel kernel_fugue;
cl_kernel kernel_echo_hamsi_fugue;
cl_command_queue commandQueue;
cl_program program;
cl_mem outputBuffer;
cl_mem CLbuffer0;
cl_mem hash_buffer;
cl_mem padbuffer8;
size_t padbufsize;
unsigned char cldata[80];
bool hasBitAlign;
bool hasOpenCL11plus;
bool hasOpenCL12plus;
bool goffset;
cl_uint vwidth;
size_t max_work_size;
size_t wsize;
size_t compute_shaders;
enum cl_kernels chosen_kernel;
} _clState;
extern char *file_contents(const char *filename, int *length);
extern int clDevicesNum(void);
extern _clState *initCl(unsigned int gpu, char *name, size_t nameSize);
extern bool allocateHashBuffer(unsigned int gpu, _clState *clState);
#endif /* __OCL_H__ */