-
Notifications
You must be signed in to change notification settings - Fork 27
/
ocl.h
63 lines (54 loc) · 1.46 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
56
57
58
59
60
61
62
63
#ifndef OCL_H
#define OCL_H
#include <stdbool.h>
typedef struct __clState {
cl_context context;
cl_kernel kernel;
cl_kernel *extra_kernels;
cl_kernel GenerateDAG;
/// mtp kernels
cl_kernel mtp_0; //initialization
cl_kernel mtp_1; //initialization
cl_kernel mtp_2; //initialization
cl_kernel mtp_3; //initialization
cl_kernel mtp_fc; //initialization
cl_kernel mtp_yloop; // main kernel
// yescrypt kernels
cl_kernel yescrypt_gpu_hash_k0;
cl_kernel yescrypt_gpu_hash_k1;
cl_kernel yescrypt_gpu_hash_k2c_r8;
cl_kernel yescrypt_gpu_hash_k2c1_r8;
cl_kernel yescrypt_gpu_hash_k5;
// yescryptr16 kernels
cl_kernel yescrypt_gpu_hash_k2c_r16;
cl_kernel yescrypt_gpu_hash_k2c1_r16;
// neoscrypt kernels
cl_kernel neoscrypt_gpu_hash_start;
cl_kernel neoscrypt_gpu_hash_salsa1;
cl_kernel neoscrypt_gpu_hash_chacha1;
cl_kernel neoscrypt_gpu_hash_ending;
size_t n_extra_kernels;
cl_command_queue commandQueue;
cl_program program;
cl_mem outputBuffer;
cl_mem CLbuffer0;
cl_mem MidstateBuf;
cl_mem MatrixBuf;
cl_mem padbuffer8;
cl_mem buffer1;
cl_mem buffer2;
cl_mem buffer3;
cl_mem buffer4;
cl_mem buffer5;
unsigned char cldata[256];
bool goffset;
cl_uint vwidth;
int devid;
size_t max_work_size;
size_t wsize;
size_t compute_shaders;
bool prebuilt;
} _clState;
extern int clDevicesNum(void);
extern _clState *initCl(unsigned int gpu, char *name, size_t nameSize, algorithm_t *algorithm);
#endif /* OCL_H */