From 027a3a0b395511a33c504beab278af68d231f399 Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Mon, 16 Jun 2025 08:05:50 +0200 Subject: [PATCH] Modules: Updated module_unstable_warning for hash-mode 1500 --- src/modules/module_01500.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/modules/module_01500.c b/src/modules/module_01500.c index a00ced43a..b66dddff1 100644 --- a/src/modules/module_01500.c +++ b/src/modules/module_01500.c @@ -60,6 +60,12 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE return false; } + if (device_param->opencl_platform_vendor_id != VENDOR_ID_INTEL_SDK) + { + // works on Linux/POCL + return false; + } + // skip by default for now return true; }