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.
17 lines
552 B
17 lines
552 B
#ifndef __FINDNONCE_H__ |
|
#define __FINDNONCE_H__ |
|
#include "miner.h" |
|
#include "config.h" |
|
|
|
#define MAXTHREADS (0xFFFFFFFEULL) |
|
/* Maximum worksize 4k to match page size */ |
|
#define MAXBUFFERS (0xFFFF) |
|
#define BUFFERSIZE (sizeof(uint32_t) * MAXBUFFERS) |
|
#define FOUND (0x80) |
|
/* #define NFLAG (0x7F) Just for reference */ |
|
|
|
#ifdef HAVE_OPENCL |
|
extern void precalc_hash(dev_blk_ctx *blk, uint32_t *state, uint32_t *data); |
|
extern void postcalc_hash_async(struct thr_info *thr, struct work *work, uint32_t *res); |
|
#endif /* HAVE_OPENCL */ |
|
#endif /*__FINDNONCE_H__*/
|
|
|