mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-26 01:50:10 +00:00
OpenCL Runtime: Updated AMDGPU-Pro driver version check, do warn if version 17.10 is detected which is known to be broken
This commit is contained in:
parent
fee364ec7a
commit
318ba234f8
@ -10,6 +10,7 @@
|
||||
## Technical
|
||||
##
|
||||
|
||||
- OpenCL Runtime: Updated AMDGPU-Pro driver version check, do warn if version 17.10 is detected which is known to be broken
|
||||
- WPA cracking: Reduced --nonce-error-corrections default from 16 to 8 to compensate speed drop caused due to Big-Endian fixes
|
||||
|
||||
* changes v3.40 -> 3.5.0:
|
||||
|
@ -3106,6 +3106,8 @@ int opencl_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime)
|
||||
if (atoi (device_param->driver_version) == 2236) amd_warn = true;
|
||||
// AMDGPU-Pro Driver 16.60 is known to be broken
|
||||
if (atoi (device_param->driver_version) == 2264) amd_warn = true;
|
||||
// AMDGPU-Pro Driver 17.10 is known to be broken
|
||||
if (atoi (device_param->driver_version) == 2348) amd_warn = true;
|
||||
#elif defined (_WIN)
|
||||
// AMD Radeon Software 14.9 and higher, should be updated to 15.12
|
||||
if (atoi (device_param->driver_version) >= 1573) amd_warn = false;
|
||||
|
Loading…
Reference in New Issue
Block a user