From 664e595b45ad1b4dea2c07c26f72d85cca85e3bb Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Thu, 14 Nov 2019 12:46:09 +0100 Subject: [PATCH] Add unstable warning for -m 10700 for Intel CPU --- src/modules/module_10700.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/modules/module_10700.c b/src/modules/module_10700.c index 3e669131e..3577e173e 100644 --- a/src/modules/module_10700.c +++ b/src/modules/module_10700.c @@ -141,6 +141,12 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE } } + // l_opencl_p_18.1.0.013.tgz: Segmentation fault + if ((device_param->opencl_device_vendor_id == VENDOR_ID_INTEL_SDK) && (device_param->opencl_device_type & CL_DEVICE_TYPE_CPU)) + { + return true; + } + return false; }