Skip to content

Commit

Permalink
fix alignment error in neoscrypt
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausT committed Sep 29, 2016
1 parent d8fc392 commit 5671ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neoscrypt/cuda_neoscrypt.cu
Expand Up @@ -1393,7 +1393,7 @@ __global__ __launch_bounds__(TPB2, 8) void neoscrypt_gpu_hash_ending(int stratum

#pragma unroll
for(int i = 0; i<8; i++)
Z[i] = __ldg4(&(Tr2 + shiftTr)[i]) ^ __ldg4(&(Tr + shiftTr)[i]);
Z[i] = (Tr2 + shiftTr)[i] ^ (Tr + shiftTr)[i];

#if __CUDA_ARCH__ < 500
fastkdf32_v1(thread, ZNonce, (uint32_t*)Z, s_data, outbuf);
Expand Down

0 comments on commit 5671ac5

Please sign in to comment.