Arquivos
rocm-systems/tests/kfdtest/scripts/kfdtest.exclude
T

213 linhas
6.4 KiB
Plaintext
Original Visão Normal Histórico

declare -A FILTER
2019-08-14 20:34:44 -04:00
# Power management tests
FILTER[pm]=\
2019-08-14 20:34:44 -04:00
"KFDPMTest.SuspendWithActiveProcess:"\
"KFDPMTest.SuspendWithIdleQueue:"\
"KFDPMTest.SuspendWithIdleQueueAfterWork"
# Core tests, used in scenarios like bringup
# Software scheduler mode, i. e. non HWS mode
FILTER[core_sws]=\
"KFDQMTest.CreateDestroyCpQueue:"\
"KFDQMTest.SubmitNopCpQueue:"\
"KFDQMTest.SubmitPacketCpQueue:"\
"KFDQMTest.AllCpQueues:"\
"KFDQMTest.CreateDestroySdmaQueue:"\
"KFDQMTest.SubmitNopSdmaQueue:"\
"KFDQMTest.SubmitPacketSdmaQueue:"\
"KFDQMTest.AllSdmaQueues:"\
"KFDEventTest.SignalEvent"
# HWS mode
FILTER[core]=\
"${FILTER[core_sws]}:"\
"KFDCWSRTest.BasicTest"
2019-08-14 20:34:44 -04:00
2018-07-23 14:45:44 -04:00
# Permanent exclusions
# These tests are included for debugging, but are not executed in normal execution on any ASIC:
# FILTER[pm] need human intervention, so put it here. Developers can run them
2019-08-14 20:34:44 -04:00
# manually through "-p pm" option.
#
# Fragmentation test fails intermittently on different systems (see KFD-344). It
# stresses memory management in unusual ways by having lots of memory allocated but
# not mapped, which is not relevant to compute applications over ROCr.
#
# CU Masking Linear are not working correctly due to how the HW distributes work over CUs.
# They are available for testing but are not currently expected to pass on CI/VI/AI.
#
# The CheckZeroInitializationVram test is no longer expected to pass as KFD no longer
# clears memory at allocation time.
2018-07-23 14:45:44 -04:00
PERMANENT_BLACKLIST_ALL_ASICS=\
"-KFDEventTest.MeasureInterruptConsumption:"\
"${FILTER[pm]}:"\
"KFDLocalMemoryTest.Fragmentation:"\
2018-07-23 14:45:44 -04:00
"KFDQMTest.BasicCuMaskingLinear:"\
2019-02-13 14:36:05 -05:00
"RDMATest.GPUDirect:"\
"KFDRASTest.*:"\
"KFDLocalMemoryTest.CheckZeroInitializationVram"
2018-07-23 14:45:44 -04:00
# This is the temporary blacklist for all ASICs. This is to be used when a test is failing consistently
# on every ASIC (Kaveri, Carrizo, Hawaii, Tonga, Fiji, Polaris10, Polaris11 and Vega10 .
# TODO means that a JIRA ticket needs to be created for this issue, as no documentation regarding
# failures can be found
# NOTE: If you update this alphabetical listing, add the corresponding JIRA ticket for reference
#
# KFDPNPTest.DisableAndCreateQueue (KFD-329)
# KFDQMTest.GPUDoorbellWrite fails intermittently (KFD-318)
# KFDQMTest.mGPUShareBO (KFD-334)
# KFDHWSTest.* (SWDEV-193035)
2018-07-23 14:45:44 -04:00
TEMPORARY_BLACKLIST_ALL_ASICS=\
"KFDPNPTest.DisableAndCreateQueue:"\
"KFDQMTest.GPUDoorbellWrite:"\
"KFDQMTest.mGPUShareBO:"\
"KFDQMTest.SdmaEventInterrupt:"\
"KFDMemoryTest.CacheInvalidateOnRemoteWrite:"\
"KFDDBGTest.BasicDebuggerSuspendResume:"\
"KFDHWSTest.*"
2018-07-23 14:45:44 -04:00
BLACKLIST_ALL_ASICS=\
"$PERMANENT_BLACKLIST_ALL_ASICS:"\
"$TEMPORARY_BLACKLIST_ALL_ASICS"
2019-06-21 15:14:45 -04:00
# SDMA-based tests (KFDIPCTest.BasicTest, KFDQM.*Sdma*, KFDMemoryTest.MMBench) are all
2018-07-23 14:45:44 -04:00
# disabled on non-Hawaii due to SDMA instability - SWDEV-101666
SDMA_BLACKLIST=\
"KFDIPCTest.*:"\
"KFDLocalMemoryTest.CheckZeroInitializationVram:"\
2019-06-21 15:14:45 -04:00
"KFDMemoryTest.MemoryRegister:"\
"KFDMemoryTest.MMBench:"\
"KFDMemoryTest.SignalHandling:"\
"KFDQMTest.*Sdma*:"\
"KFDQMTest.CreateQueueStressSingleThreaded:"\
"KFDQMTest.GPUDoorbellWrite:"\
2018-08-27 15:08:43 +08:00
"KFDQMTest.P2PTest:"\
2018-09-19 15:12:04 +08:00
"KFDPerformanceTest.P2PBandWidthTest:"\
"KFDPerformanceTest.P2POverheadTest"
2018-07-23 14:45:44 -04:00
# Anything involving CP queue creation is failing on Kaveri. Separate them here for convenience (KFD-336)
KV_QUEUE_BLACKLIST=\
"KFDExceptionTest.InvalidBadAddress:"\
"KFDExceptionTest.InvalidWriteAddress:"\
"KFDExceptionTest.InvalidPPR*:"\
"KFDLocalMemoryTest.*:"\
"KFDEventTest.Signal*Event*:"\
"KFDQMTest.CreateQueueStressSingleThreaded:"\
"KFDQMTest.*CpQueue*:"\
"KFDQMTest.*Dispatch*:"\
"KFDQMTest.Atomics:"\
"KFDQMTest.GPUDoorbellWrite"
# KFDQMTest.CpuWriteCoherence fails. 0 dwordsAvailable (KFD-338)
# KFDMemoryTest.MemoryRegister fails on SDMA queue creation (KFD-337)
FILTER[kaveri]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST:"\
"$KV_QUEUE_BLACKLIST:"\
"KFDMemoryTest.MemoryRegister:"\
"KFDQMTest.CpuWriteCoherence"
# KFDLocalMemoryTest.BasicTest is failing intermittently (KFD-368)
# KFDMemoryTest.BigBufferStressTest was failing intermittently on 4.9 and hangs when executed twice (KFD-312)
# KFDQMTest.GPUDoorbellWrite fails on Hawaii. Could be HW-related (KFD-342)
FILTER[hawaii]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
"KFDLocalMemoryTest.BasicTest:"\
"KFDMemoryTest.BigBufferStressTest:"\
"KFDQMTest.GPUDoorbellWrite"
FILTER[carrizo]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST:"\
"KFDExceptionTest.InvalidWriteAddress"
# KFDPerfCountersTest.*Trace fail (KFD-339)
# KFDMemoryTest.QueryPointerInfo/MemoryRegister* (KFD-341)
# The remaining tests listed here fail on map memory to GPU with a VA conflict (KFD-340)
FILTER[tonga]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST:"\
"KFDCWSRTest.BasicTest:"\
"KFDPerfCountersTest.*:"\
2019-08-30 00:20:21 -04:00
"KFDQMTest.OverSubscribeCpQueues"
2018-07-23 14:45:44 -04:00
# Since Navi10 was merged, the PM4Event test takes 6min to run
FILTER[fiji]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
"KFDQMTest.PM4EventInterrupt:"\
2018-07-23 14:45:44 -04:00
"$SDMA_BLACKLIST"
FILTER[polaris10]=\
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST"
FILTER[polaris11]=\
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST"
FILTER[polaris12]=\
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST"
# KFDIPCTest.BasicTest (ROCMOPS-459) .CMABasicTest (ROCMOPS-460) .CrossMemoryAttachTest (ROCMOPS-461)
# KFDEvictTest.BurstyTest (ROCMOPS-464)
# KFDQMTest.AllSdmaQueues (ROCMOPS-463)
FILTER[vega10]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
"KFDIPCTest.BasicTest:"\
"KFDEvictTest.BurstyTest:"\
"KFDIPCTest.CMABasicTest:"\
"KFDIPCTest.CrossMemoryAttachTest:"\
"KFDQMTest.AllSdmaQueues"
2018-07-23 14:45:44 -04:00
FILTER[vega12]=\
"$BLACKLIST_ALL_ASICS:"\
2019-07-02 11:54:28 -04:00
"$SDMA_BLACKLIST"\
# KFDEvictTest.BurstyTest (ROCMOPS-464)
FILTER[vega20]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
2018-12-05 08:41:16 -05:00
"$SDMA_BLACKLIST:"\
"KFDEvictTest.BurstyTest:"\
2018-07-23 14:45:44 -04:00
"KFDExceptionTest.InvalidBadAddress:"\
"KFDExceptionTest.InvalidWriteAddress:"\
"KFDQMTest.GPUDoorbellWrite"
2018-07-23 14:45:44 -04:00
FILTER[raven]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
2018-08-31 00:49:06 -04:00
"KFDQMTest.QueueLatency:"\
"KFDQMTest.SdmaEventInterrupt"
2018-10-30 16:37:56 -04:00
2019-11-12 14:32:19 +08:00
FILTER[renoir]=\
"$BLACKLIST_ALL_ASICS:"\
"KFDQMTest.QueueLatency:"\
"KFDQMTest.SdmaEventInterrupt"
2019-08-16 19:30:31 -04:00
# KFDExceptionTest.* (KFD-435)
# KFDEvictTest.BurstyTest (KFD-425)
FILTER[arcturus]=\
2019-07-25 11:14:36 -04:00
"$BLACKLIST_ALL_ASICS:"\
"KFDExceptionTest.FaultStorm:"\
"KFDEvictTest.BurstyTest"
2019-07-25 11:14:36 -04:00
FILTER[navi10]=\
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST:"\
"KFDEvictTest.BurstyTest:"\
"KFDEvictTest.QueueTest:"\
"KFDPerfCountersTest.*:"\
"KFDExceptionTest.InvalidBadAddress:"\
"KFDExceptionTest.InvalidWriteAddress:"\
"KFDQMTest.GPUDoorbellWrite"
FILTER[navi14]=\
2019-09-04 19:14:33 -04:00
"$BLACKLIST_ALL_ASICS:"\
"KFDQMTest.BasicCuMaskingEven:"\
"KFDDBGTest.*:"\
"KFDExceptionTest.*:"\
"KFDPerfCountersTest.*:"\
"KFDQMTest.CreateQueueStressSingleThreaded:"\
"KFDPNPTest.DisableWithActiveProcess"