diff --git a/docs/changes.txt b/docs/changes.txt index 5f9204b09..ead11b7a1 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -23,6 +23,7 @@ ## Technical ## +- AMD Driver: Updated requirements for AMD Linux drivers to ROCm 4.5 or later due to new HIP interface - Backend devices: In -S mode, limit the number of workitems so that no more than 2GB of host memory is required per backend device - Backend devices: In non -S mode, limit the number of workitems so that no more than 4GB of host memory is required per backend device - Makefile: Added wildcard include src/modules/module_*.mk directive so that plugin developers can add 3rd party libraries for their plugins diff --git a/docs/readme.txt b/docs/readme.txt index 9feba1e39..3fbba56a2 100644 --- a/docs/readme.txt +++ b/docs/readme.txt @@ -10,7 +10,7 @@ hashcat v6.2.4 ============== -AMD GPUs on Linux require "AMD ROCm" (4.3 or later) +AMD GPUs on Linux require "AMD ROCm" (4.5 or later) AMD GPUs on Windows require "AMD Radeon Adrenalin 2020 Edition" (21.2.1 or later) 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 af905647d..375ddac25 100644 --- a/src/backend.c +++ b/src/backend.c @@ -7188,7 +7188,7 @@ int backend_ctx_init (hashcat_ctx_t *hashcat_ctx) #if defined (__linux__) event_log_warning (hashcat_ctx, "* AMD GPUs on Linux require this driver:"); - event_log_warning (hashcat_ctx, " \"AMD ROCm\" (4.3 or later)"); + event_log_warning (hashcat_ctx, " \"AMD ROCm\" (4.5 or later)"); #elif defined (_WIN) event_log_warning (hashcat_ctx, "* AMD GPUs on Windows require this driver:"); event_log_warning (hashcat_ctx, " \"AMD Radeon Adrenalin 2020 Edition\" (21.2.1 or later)"); @@ -7513,7 +7513,7 @@ int backend_ctx_init (hashcat_ctx_t *hashcat_ctx) #if defined (__linux__) event_log_warning (hashcat_ctx, "* AMD GPUs on Linux require this driver:"); - event_log_warning (hashcat_ctx, " \"AMD ROCm\" (4.3 or later)"); + event_log_warning (hashcat_ctx, " \"AMD ROCm\" (4.5 or later)"); #elif defined (_WIN) event_log_warning (hashcat_ctx, "* AMD GPUs on Windows require this driver:"); event_log_warning (hashcat_ctx, " \"AMD Radeon Adrenalin 2020 Edition\" (21.2.1 or later)");