1
0
mirror of https://github.com/xmrig/xmrig.git synced 2026-04-18 21:32:42 -04:00

Merge pull request #3784 from Willie169/master

Fix OpenCL address-space mismatch in keccak_f800_round
This commit is contained in:
xmrig
2026-02-27 11:24:26 +07:00
committed by GitHub
2 changed files with 114 additions and 114 deletions

View File

@@ -74,7 +74,7 @@ void keccak_f800_round(uint32_t st[25], const int r)
// Keccak - implemented as a variant of SHAKE
// The width is 800, with a bitrate of 576, a capacity of 224, and no padding
// Only need 64 bits of output for mining
void keccak_f800(uint32_t* st)
void keccak_f800(uint32_t st[25])
{
// Complete all 22 rounds as a separate impl to
// evaluate only first 8 words is wasteful of registers