diff --git a/docs/changes.txt b/docs/changes.txt index 089731de6..37a58be6f 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -36,7 +36,7 @@ ## Technical ## -- AMD Driver: Updated requirements for AMD Windows drivers to "AMD Adrenalin Edition" (Adrenalin 22.5.1 or later) +- AMD Driver: Updated requirements for AMD Windows drivers to "AMD Adrenalin Edition" (Adrenalin 22.5.1 exactly) - Apple Driver: Automatically enable GPU support on Apple OpenCL instead of CPU support - Apple Driver: Updated requirements to use Apple OpenCL API to macOS 13.0 - use - Backend Checks: Described workaround in error message when detecting more than 64 backend devices diff --git a/docs/readme.txt b/docs/readme.txt index 9943c4d19..b034d6e79 100644 --- a/docs/readme.txt +++ b/docs/readme.txt @@ -11,7 +11,7 @@ hashcat v6.2.6 ============== AMD GPUs on Linux require "AMDGPU" (21.50 or later) and "ROCm" (5.0 or later) -AMD GPUs on Windows require "AMD Adrenalin Edition" (Adrenalin 22.5.1 or later) +AMD GPUs on Windows require "AMD Adrenalin Edition" (Adrenalin 22.5.1 exactly) Intel CPUs require "OpenCL Runtime for Intel Core and Intel Xeon Processors" (16.1.1 or later) NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or later) diff --git a/src/backend.c b/src/backend.c index f9cff5717..ca229025c 100644 --- a/src/backend.c +++ b/src/backend.c @@ -4592,7 +4592,7 @@ int backend_ctx_init (hashcat_ctx_t *hashcat_ctx) event_log_warning (hashcat_ctx, " \"AMDGPU\" (21.50 or later) and \"ROCm\" (5.0 or later)"); #elif defined (_WIN) event_log_warning (hashcat_ctx, "* AMD GPUs on Windows require this driver:"); - event_log_warning (hashcat_ctx, " \"AMD Adrenalin Edition\" (Adrenalin 22.5.1 or later)"); + event_log_warning (hashcat_ctx, " \"AMD Adrenalin Edition\" (Adrenalin 22.5.1 exactly)"); #endif event_log_warning (hashcat_ctx, "* Intel CPUs require this runtime:"); @@ -4929,7 +4929,7 @@ int backend_ctx_init (hashcat_ctx_t *hashcat_ctx) event_log_warning (hashcat_ctx, " \"AMDGPU\" (21.50 or later) and \"ROCm\" (5.0 or later)"); #elif defined (_WIN) event_log_warning (hashcat_ctx, "* AMD GPUs on Windows require this driver:"); - event_log_warning (hashcat_ctx, " \"AMD Adrenalin Edition\" (Adrenalin 22.5.1 or later)"); + event_log_warning (hashcat_ctx, " \"AMD Adrenalin Edition\" (Adrenalin 22.5.1 exactly)"); #endif event_log_warning (hashcat_ctx, "* Intel CPUs require this runtime:");