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:
parent
2d494df5c7
commit
366f5133ac
@ -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;
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user