From 773dab91616df1088b5887623547ab2bde80d9ba Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 6 Apr 2019 20:06:19 +0200 Subject: [PATCH] Mark -m 10700 as unstable on AMDGPU driver in pure kernel mode --- src/modules/module_10700.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/modules/module_10700.c b/src/modules/module_10700.c index 9e7b03b81..d8833b461 100644 --- a/src/modules/module_10700.c +++ b/src/modules/module_10700.c @@ -132,6 +132,15 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE } } + // amdgpu-pro-18.50-708488-ubuntu-18.04: self-test failed. + if ((device_param->device_vendor_id == VENDOR_ID_AMD) && (device_param->has_vperm == false)) + { + if ((hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) == 0) + { + return true; + } + } + return false; }