Skip to content

Commit

Permalink
AMD Driver: Updated requirements for AMD Linux drivers to ROCm 4.5 or…
Browse files Browse the repository at this point in the history
… later due to new HIP interface
  • Loading branch information
jsteube committed Oct 21, 2021
1 parent 44a5e2a commit 49a68cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/backend.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)");
Expand Down Expand Up @@ -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)");
Expand Down

0 comments on commit 49a68cd

Please sign in to comment.