diff --git a/src/modules/module_08200.c b/src/modules/module_08200.c index 35c50bd53..b8a7b75d9 100644 --- a/src/modules/module_08200.c +++ b/src/modules/module_08200.c @@ -62,6 +62,11 @@ typedef struct pbkdf2_sha512_tmp bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra, MAYBE_UNUSED const hc_device_param_t *device_param) { + if (device_param->opencl_device_vendor_id == VENDOR_ID_INTEL_SDK) + { + return true; + } + // AMD Radeon Pro W5700X, Metal.Version.: 261.13, compiler hangs if (device_param->is_metal == true) { diff --git a/src/modules/module_21700.c b/src/modules/module_21700.c index 8ca3f4ca6..68d4f60eb 100644 --- a/src/modules/module_21700.c +++ b/src/modules/module_21700.c @@ -68,6 +68,11 @@ static const char *SIGNATURE_ELECTRUM = "$electrum$4*"; bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra, MAYBE_UNUSED const hc_device_param_t *device_param) { + if (device_param->opencl_device_vendor_id == VENDOR_ID_INTEL_SDK) + { + return true; + } + // AMD Radeon Pro W5700X, Metal.Version.: 261.13, compiler hangs if (device_param->is_metal == true) { diff --git a/src/modules/module_25000.c b/src/modules/module_25000.c index 69857dac7..71461a8f0 100644 --- a/src/modules/module_25000.c +++ b/src/modules/module_25000.c @@ -81,6 +81,16 @@ typedef struct snmpv3 } snmpv3_t; +bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra, MAYBE_UNUSED const hc_device_param_t *device_param) +{ + if (device_param->opencl_device_vendor_id == VENDOR_ID_INTEL_SDK) + { + return true; + } + + return false; +} + u64 module_esalt_size (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra) { const u64 esalt_size = (const u64) sizeof (snmpv3_t); @@ -337,6 +347,6 @@ void module_init (module_ctx_t *module_ctx) module_ctx->module_st_hash = module_st_hash; module_ctx->module_st_pass = module_st_pass; module_ctx->module_tmp_size = module_tmp_size; - module_ctx->module_unstable_warning = MODULE_DEFAULT; + module_ctx->module_unstable_warning = module_unstable_warning; module_ctx->module_warmup_disable = MODULE_DEFAULT; }