1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-05 11:34:16 +00:00

Correct target value passed to scrypt kernel.

This commit is contained in:
Con Kolivas 2012-07-21 13:30:32 +10:00
parent 1b5c676de7
commit e45ebb62a9
2 changed files with 2 additions and 2 deletions

View File

@ -1001,7 +1001,7 @@ static cl_int queue_scrypt_kernel(_clState *clState, dev_blk_ctx *blk, __maybe_u
cl_uint le_target;
cl_int status = 0;
le_target = ~swab32((uint32_t)blk->work->target[7]);
le_target = ~swab32(*(cl_uint *)(blk->work->target + 28));
clState->cldata = blk->work->data;
status = clEnqueueWriteBuffer(clState->commandQueue, clState->CLbuffer0, true, 0, 80, clState->cldata, 0, NULL,NULL);

View File

@ -724,7 +724,7 @@ const uint4 midstate0, const uint4 midstate16, const uint target)
SHA256_fixed(&tmp0,&tmp1);
SHA256(&ostate0,&ostate1, tmp0, tmp1, (uint4)(0x80000000U, 0U, 0U, 0U), (uint4)(0U, 0U, 0U, 0x300U));
if (!(ostate1.w&target))
if (!(ostate1.w & target))
output[FOUND] = output[NFLAG & gid] = gid;
}