From 119344c084e5f0a4e51c92bbef791d843a5f61bd Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Fri, 13 Mar 2020 09:51:27 +0100 Subject: [PATCH] Mark -m 13100 as unstable on Apple + Iris --- src/modules/module_13100.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/modules/module_13100.c b/src/modules/module_13100.c index 2f6b98b45..1203e34aa 100644 --- a/src/modules/module_13100.c +++ b/src/modules/module_13100.c @@ -75,6 +75,15 @@ u32 module_kernel_threads_max (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYB 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_platform_vendor_id == VENDOR_ID_APPLE) + { + // self-test failed + if ((device_param->opencl_device_vendor_id == VENDOR_ID_INTEL_SDK) && (device_param->opencl_device_type & CL_DEVICE_TYPE_GPU)) + { + return true; + } + } + // amdgpu-pro-19.30-934563-ubuntu-18.04: CL_OUT_OF_RESOURCES if ((device_param->opencl_device_vendor_id == VENDOR_ID_AMD) && (device_param->has_vperm == false)) {