1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-26 01:50:10 +00:00

Workaround added for AMDGPU-Pro OpenCL runtime: RAR3 kernel require a volatile variable to work correctly

This commit is contained in:
jsteube 2017-02-13 11:36:16 +01:00
parent 2d494df5c7
commit 366f5133ac
2 changed files with 2 additions and 1 deletions

View File

@ -1079,7 +1079,7 @@ __kernel void m12500_loop (__global pw_t *pws, __global const kernel_rule_t *rul
iter++;
}
for (u32 j = 0; j < p3; j++)
for (volatile u32 j = 0; j < p3; j++)
{
const u32 j16 = j * 16;

View File

@ -32,6 +32,7 @@
##
- Workaround added for AMDGPU-Pro OpenCL runtime: AES encrypt and decrypt Invertkey function was calculated wrong in certain cases
- Workaround added for AMDGPU-Pro OpenCL runtime: RAR3 kernel require a volatile variable to work correctly
##
## Bugs