kfdtest: skip KFDSVMEvictTest.QueueTest on gfx10

KFDSVMEvictTest.QueueTest shader asm code need update to support gfx10
and gfx9, skip the test to unblock CI test.

Change-Id: Id2842127cf5fc98a652afa82035a4b3603bf5c33
Signed-off-by: Philip Yang <Philip.Yang@amd.com>


[ROCm/ROCR-Runtime commit: 7d53e94750]
Этот коммит содержится в:
Philip Yang
2021-04-26 10:31:37 -04:00
родитель 8bdbac1bf1
Коммит 92fe0df166
+1 -1
Просмотреть файл
@@ -371,7 +371,7 @@ TEST_F(KFDSVMEvictTest, QueueTest) {
const HsaNodeProperties *pNodeProperties = m_NodeInfo.HsaDefaultGPUNodeProperties();
/* Skip test for chip it doesn't have CWSR, which the test depends on */
if (m_FamilyId < FAMILY_VI || isTonga(pNodeProperties)) {
if (m_FamilyId < FAMILY_VI || isTonga(pNodeProperties) || m_FamilyId >= FAMILY_NV) {
LOG() << std::hex << "Test is skipped for family ID 0x" << m_FamilyId << std::endl;
return;
}