From b7925f1149bc78eb5fa6a98f1ad53f8ebb41ac73 Mon Sep 17 00:00:00 2001 From: jsteube Date: Thu, 29 Dec 2022 19:37:56 +0000 Subject: [PATCH] Add warning about automatically disabled Metal devices --- src/backend.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/backend.c b/src/backend.c index 4735af169..cad22158f 100644 --- a/src/backend.c +++ b/src/backend.c @@ -6230,6 +6230,10 @@ int backend_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime) { if (backend_ctx->backend_devices_filter == -1ULL) { + event_log_warning (hashcat_ctx, "The device #%d has been disabled as it most likely also exists as an OpenCL device, but it is not possible to automatically map it.", alias_device->device_id + 1); + event_log_warning (hashcat_ctx, "You can use -d #%d to use Metal API instead of OpenCL API. In some rare cases this is more stable.", alias_device->device_id + 1); + event_log_warning (hashcat_ctx, NULL); + device_param->skipped = true; } else