1
0
mirror of https://github.com/GOSTSec/ccminer synced 2025-01-12 15:57:59 +00:00

bmw256: reduce target array size

This commit is contained in:
Tanguy Pruvot 2015-08-19 07:12:12 +02:00
parent 6500e7401a
commit b256ca47a0

View File

@ -9,7 +9,7 @@
static uint32_t *d_gnounce[MAX_GPUS];
static uint32_t *d_GNonce[MAX_GPUS];
__constant__ uint64_t pTarget[8];
__constant__ uint64_t pTarget[4];
#define shl(x, n) ((x) << (n))
#define shr(x, n) ((x) >> (n))