From b256ca47a0ac8ec305bea254e30c974640f34786 Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Wed, 19 Aug 2015 07:12:12 +0200 Subject: [PATCH] bmw256: reduce target array size --- Algo256/cuda_bmw256.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algo256/cuda_bmw256.cu b/Algo256/cuda_bmw256.cu index b227e79..6189606 100644 --- a/Algo256/cuda_bmw256.cu +++ b/Algo256/cuda_bmw256.cu @@ -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))