1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-25 17:38:23 +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:
jsteube 2017-04-11 13:33:25 +02:00
parent fee364ec7a
commit 318ba234f8
2 changed files with 3 additions and 0 deletions

View File

@ -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:

View File

@ -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;