Add warning about automatically disabled Metal devices

This commit is contained in:
jsteube 2022-12-29 19:37:56 +00:00
parent b228816067
commit b7925f1149
1 changed files with 4 additions and 0 deletions

View File

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