Skip to content

Commit

Permalink
Removed volatile (again), has issues with cn-pico and 18.50 driver.
Browse files Browse the repository at this point in the history
  • Loading branch information
xmrig committed Feb 10, 2019
1 parent 9502226 commit e0039ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/amd/opencl/cryptonight.cl
Original file line number Diff line number Diff line change
Expand Up @@ -1772,7 +1772,7 @@ __kernel void Groestl(__global ulong *states, __global uint *BranchBuf, __global
states += 25 * BranchBuf[idx];

ulong State[8] = { 0UL, 0UL, 0UL, 0UL, 0UL, 0UL, 0UL, 0x0001000000000000UL };
volatile ulong H[8], M[8];
ulong H[8], M[8];

for (uint i = 0; i < 3; ++i) {
((ulong8 *)M)[0] = vload8(i, states);
Expand Down

0 comments on commit e0039ca

Please sign in to comment.