amdgpu: Disable deadlock test suite by default for SI ASICs

Hangs my Cape Verde.

Acked-by: Christian König <christian.koenig@amd.com>
main
Michel Dänzer 2018-01-16 16:48:45 +01:00 committed by Michel Dänzer
parent 429bb5820d
commit 8e75f5a145
1 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,8 @@ CU_BOOL suite_deadlock_tests_enable(void)
&minor_version, &device_handle))
return CU_FALSE;
if (device_handle->info.family_id == AMDGPU_FAMILY_AI) {
if (device_handle->info.family_id == AMDGPU_FAMILY_AI ||
device_handle->info.family_id == AMDGPU_FAMILY_SI) {
printf("\n\nCurrently hangs the CP on this ASIC, deadlock suite disabled\n");
enable = CU_FALSE;
}