Add some more NO_UNROLL to avoid module_unstable_warnings

This commit is contained in:
jsteube
2019-04-20 16:36:43 +02:00
parent 08a74cfcb5
commit 926e99811c
16 changed files with 40 additions and 217 deletions
+1 -10
View File
@@ -295,12 +295,6 @@ 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))
{
return true;
}
return false;
}
@@ -308,10 +302,7 @@ char *module_jit_build_options (MAYBE_UNUSED const hashconfig_t *hashconfig, MAY
{
char *jit_build_options = NULL;
if (device_param->device_vendor_id == VENDOR_ID_NV)
{
hc_asprintf (&jit_build_options, "-D NO_UNROLL");
}
hc_asprintf (&jit_build_options, "-D NO_UNROLL");
return jit_build_options;
}