Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

366 rivejä
9.8 KiB
Plaintext

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:"\
"KFDQMTest.AllXgmiSdmaQueues:"\
2019-11-06 19:52:03 -05:00
"KFDQMTest.AllQueues:"\
"KFDLocalMemoryTest.AccessLocalMem:"\
"KFDEventTest.SignalEvent"
# HWS mode
FILTER[core]=\
"${FILTER[core_sws]}:"\
"KFDCWSRTest.BasicTest"
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.
#
# 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.
#
# CU Masking Even is added here due to some non-obvious baseline measurements. Though
# using wallclock to measure performance is always risky, there are just too many ASICs
# where this test is failing. Ideally we'll get better CU Masking coverage via rocrtst
#
# 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=\
"-${FILTER[pm]}:"\
2018-07-23 14:45:44 -04:00
"KFDQMTest.BasicCuMaskingLinear:"\
"KFDQMTest.BasicCuMaskingEven:"\
2019-02-13 14:36:05 -05:00
"RDMATest.GPUDirect:"\
"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
#
# KFDQMTest.GPUDoorbellWrite fails intermittently (KFD-318)
# KFDQMTest.mGPUShareBO (KFD-334)
# KFDHWSTest.* (SWDEV-193035)
# KFDEvictTest.BurstyTest (ROCMOPS-464)
# KFDEvictTest.BurstyTest (SWDEV-291256)
# KFDEvictTest.BurstyTest (KFD-425)
# KFDDBGTest.SuspendQueues (SWDEV-417850)
# KFDDBGTest.HitAddressWatch (SWDEV-420281)
2018-07-23 14:45:44 -04:00
TEMPORARY_BLACKLIST_ALL_ASICS=\
"KFDQMTest.GPUDoorbellWrite:"\
"KFDQMTest.mGPUShareBO:"\
"KFDQMTest.SdmaEventInterrupt:"\
"KFDMemoryTest.CacheInvalidateOnRemoteWrite:"\
"KFDEvictTest.BurstyTest:"\
"KFDHWSTest.*:"\
"KFDSVMRangeTest.ReadOnlyRangeTest*:"\
"KFDDBGTest.SuspendQueues:"\
"KFDDBGTest.HitAddressWatch"
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.AllQueues:"\
2019-06-21 15:14:45 -04:00
"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=\
2019-12-13 11:17:02 -05:00
"KFDExceptionTest.AddressFault:"\
"KFDExceptionTest.PermissionFault:"\
2018-07-23 14:45:44 -04:00
"KFDLocalMemoryTest.*:"\
"KFDEventTest.Signal*Event*:"\
"KFDQMTest.CreateQueueStressSingleThreaded:"\
"KFDQMTest.*CpQueue*:"\
"KFDQMTest.*Dispatch*:"\
"KFDQMTest.Atomics:"\
"KFDQMTest.GPUDoorbellWrite"
# KFDCWSRTest.BasicTest*: SWDEV-353206
2022-05-05 11:18:06 -04:00
BLACKLIST_GFX10=\
"KFDMemoryTest.DeviceHdpFlush:"\
"KFDSVMEvictTest.*:"\
"KFDCWSRTest.BasicTest*"
2022-05-05 11:18:06 -04:00
BLACKLIST_GFX10_NV2X=\
"$BLACKLIST_GFX10:"\
"KFDPerfCountersTest.*"
2022-06-08 16:49:32 -04:00
# KFDMemoryTest.FlatScratchAccess - SWDEV-329877
2023-07-20 11:22:56 -04:00
# KFDGWSTest.*: GFX11 will no longer use global wave sync
2022-10-05 15:45:50 -04:00
BLACKLIST_GFX11=\
2022-06-08 16:49:32 -04:00
"KFDQMTest.CreateAqlCpQueue:"\
"KFDCWSRTest.InterruptRestore:"\
2022-10-05 15:45:50 -04:00
"KFDPerfCountersTest.*:"\
2023-07-20 11:22:56 -04:00
"KFDMemoryTest.FlatScratchAccess:"\
"KFDGWSTest.*"
2022-06-08 16:49:32 -04:00
2023-02-16 13:13:21 -05:00
BLACKLIST_GFX12=\
2024-03-28 14:04:03 -04:00
"KFDQMTest.CreateAqlCpQueue:"\
"KFDPerfCountersTest.*:"\
"KFDMemoryTest.FlatScratchAccess:"\
"KFDGWSTest.*"
2023-02-16 13:13:21 -05:00
2018-07-23 14:45:44 -04:00
# 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.BigSysBufferStressTest was failing intermittently on 4.9
# and hangs when executed twice (KFD-312)
2018-07-23 14:45:44 -04:00
# 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.BigSysBufferStressTest:"\
2018-07-23 14:45:44 -04:00
"KFDQMTest.GPUDoorbellWrite"
FILTER[carrizo]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST:"\
2019-12-13 11:17:02 -05:00
"KFDExceptionTest.PermissionFault"
2018-07-23 14:45:44 -04:00
# 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)
# KFDQMTest.AllSdmaQueues (ROCMOPS-463)
FILTER[vega10]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
"KFDIPCTest.BasicTest:"\
"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"\
FILTER[vega20]=\
2018-07-23 14:45:44 -04:00
"$BLACKLIST_ALL_ASICS:"\
2018-12-05 08:41:16 -05:00
"$SDMA_BLACKLIST:"\
"KFDQMTest.GPUDoorbellWrite"
2018-07-23 14:45:44 -04:00
FILTER[raven_dgpuFallback]=\
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST:"\
"KFDEvictTest.*:"\
"KFDMemoryTest.MemoryRegister:"\
"KFDSVMRangeTest.BasicSystemMemTest:"\
"KFDSVMRangeTest.BasicVramTest:"\
"KFDSVMRangeTest.EvictSystemRangeTest:"\
"KFDSVMRangeTest.PartialUnmapSysMemTest:"\
"KFDSVMRangeTest.MigrateTest:"\
"KFDSVMRangeTest.MigratePolicyTest:"\
"KFDSVMRangeTest.MigrateGranularityTest:"\
"KFDSVMRangeTest.MigrateLargeBufTest:"\
"KFDSVMRangeTest.MultiThreadMigrationTest:"\
"KFDSVMRangeTest.MigrateAccessInPlaceTest:"\
"KFDSVMEvictTest.QueueTest"
2018-10-30 16:37:56 -04:00
FILTER[raven]=\
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST:"\
"KFDEvictTest.*:"\
"KFDSVMRangeTest.EvictSystemRangeTest:"\
"KFDSVMRangeTest.PartialUnmapSysMemTest:"\
"KFDSVMRangeTest.PrefetchTest:"\
"KFDSVMRangeTest.MultiThreadMigrationTest:"\
"KFDSVMEvictTest.QueueTest:"\
"KFDQMTest.MultipleCpQueuesStressDispatch"
2019-11-12 14:32:19 +08:00
FILTER[renoir]=\
"$BLACKLIST_ALL_ASICS:"\
2020-09-09 08:47:41 +08:00
"KFDEvictTest.*:"\
"KFDMemoryTest.LargestSysBufferTest:"\
"KFDMemoryTest.SignalHandling"
2019-11-12 14:32:19 +08:00
2019-08-16 19:30:31 -04:00
# KFDExceptionTest.* (KFD-435)
FILTER[arcturus]=\
2019-07-25 11:14:36 -04:00
"$BLACKLIST_ALL_ASICS:"\
"KFDExceptionTest.FaultStorm:"\
"KFDNegativeTest.*"
2019-07-25 11:14:36 -04:00
2019-12-12 20:23:10 -05:00
FILTER[aldebaran]=\
"$BLACKLIST_ALL_ASICS:"\
"KFDExceptionTest.FaultStorm:"\
"KFDMemoryTest.PtraceAccess:"\
"KFDMemoryTest.DeviceHdpFlush"
2019-12-12 20:23:10 -05:00
FILTER[navi10]=\
"$BLACKLIST_ALL_ASICS:"\
2022-05-05 11:18:06 -04:00
"$BLACKLIST_GFX10:"\
"KFDMemoryTest.MMBench:"\
"KFDDBGTest.HitMemoryViolation"
2021-07-06 09:48:02 -04:00
# Need to verify the following failed tests on another machine:
# Exceptions not being received during exception tests
# PerfCounters return HSAKMT_STATUS_INVALID_PARAMETER
# P2PBandwidth failing (wait times out) on node-to-multiple-nodes by [push, NONE]
FILTER[navi12]=\
"$BLACKLIST_ALL_ASICS:"\
2022-05-05 11:18:06 -04:00
"$BLACKLIST_GFX10:"\
2021-07-06 09:48:02 -04:00
"KFDExceptionTest.*:"\
"KFDPerfCountersTest.*:"\
2022-05-05 11:18:06 -04:00
"KFDPerformanceTest.P2PBandWidthTest"
2021-07-06 09:48:02 -04:00
FILTER[navi14]=\
"$BLACKLIST_ALL_ASICS:"\
2022-05-05 11:18:06 -04:00
"$BLACKLIST_GFX10"
2019-09-17 19:05:53 -04:00
FILTER[sienna_cichlid]=\
"$BLACKLIST_ALL_ASICS:"\
2022-05-05 11:18:06 -04:00
"$BLACKLIST_GFX10_NV2X"
2020-06-08 11:08:55 +08:00
FILTER[navy_flounder]=\
"$BLACKLIST_ALL_ASICS:"\
2022-05-05 11:18:06 -04:00
"$BLACKLIST_GFX10_NV2X"
2020-07-24 14:14:13 +08:00
FILTER[dimgrey_cavefish]=\
"$BLACKLIST_ALL_ASICS:"\
2022-05-05 11:18:06 -04:00
"$BLACKLIST_GFX10_NV2X"
2020-11-06 17:30:04 +08:00
FILTER[beige_goby]=\
"$BLACKLIST_ALL_ASICS:"\
2022-05-05 11:18:06 -04:00
"$BLACKLIST_GFX10_NV2X"
2021-06-30 11:01:34 +08:00
FILTER[yellow_carp]=\
"$BLACKLIST_ALL_ASICS:"\
2022-05-05 11:18:06 -04:00
"$BLACKLIST_GFX10_NV2X"
2022-05-18 10:41:22 -04:00
FILTER[gfx1100]=\
2022-05-18 10:41:22 -04:00
"$BLACKLIST_ALL_ASICS:"\
2022-10-05 15:45:50 -04:00
"$BLACKLIST_GFX11"
2022-05-18 10:41:22 -04:00
2022-10-05 15:45:50 -04:00
# SWDEV-384028
2022-08-11 12:23:25 -04:00
FILTER[gfx1101]=\
2022-05-18 10:41:22 -04:00
"$BLACKLIST_ALL_ASICS:"\
2022-10-05 15:45:50 -04:00
"$BLACKLIST_GFX11:"\
"KFDExceptionTest.SdmaQueueException"
2022-05-18 10:41:22 -04:00
FILTER[gfx1102]=\
2022-05-18 10:41:22 -04:00
"$BLACKLIST_ALL_ASICS:"\
2022-10-05 15:45:50 -04:00
"$BLACKLIST_GFX11"
2022-09-01 17:02:02 +08:00
2022-10-12 10:06:53 +08:00
FILTER[gfx1103]=\
"$BLACKLIST_ALL_ASICS:"\
2022-10-05 15:45:50 -04:00
"$BLACKLIST_GFX11"
2022-10-12 10:06:53 +08:00
FILTER[gfx1150]=\
"$BLACKLIST_ALL_ASICS:"\
"$BLACKLIST_GFX11"
FILTER[gfx1151]=\
"$BLACKLIST_ALL_ASICS:"\
"$BLACKLIST_GFX11"
2024-07-02 13:31:17 +08:00
FILTER[gfx1152]=\
"$BLACKLIST_ALL_ASICS:"\
"$BLACKLIST_GFX11"
2024-12-12 13:55:07 +08:00
FILTER[gfx1153]=\
"$BLACKLIST_ALL_ASICS:"\
"$BLACKLIST_GFX11"
2022-09-01 17:02:02 +08:00
FILTER[gfx1036]=\
"$BLACKLIST_ALL_ASICS:"\
"$BLACKLIST_GFX10_NV2X"
FILTER[gfx942]=\
"$BLACKLIST_ALL_ASICS:"\
"KFDMemoryTest.LargestSysBufferTest:"\
"KFDMemoryTest.BigSysBufferStressTest:"\
"KFDMemoryTest.FlatScratchAccess:"\
2024-04-29 17:26:31 -04:00
"KFDIPCTest.BasicTest:"\
"KFDQMTest.QueueLatency"
2023-02-16 13:13:21 -05:00
2025-01-22 19:25:51 -05:00
FILTER[gfx950]=\
"$BLACKLIST_ALL_ASICS:"\
"KFDMemoryTest.LargestSysBufferTest:"\
"KFDMemoryTest.BigSysBufferStressTest:"\
"KFDMemoryTest.FlatScratchAccess:"\
"KFDIPCTest.BasicTest:"\
"KFDQMTest.QueueLatency:"\
"KFDEvictTest.*:"\
"KFDSVMEvictTest.QueueTest*:"\
2025-01-22 19:25:51 -05:00
"KFDGWSTest.Semaphore"
2023-02-16 13:13:21 -05:00
FILTER[gfx1200]=\
"$BLACKLIST_ALL_ASICS:"\
"$BLACKLIST_GFX12"
2023-09-07 14:47:05 -04:00
FILTER[gfx1201]=\
"$BLACKLIST_ALL_ASICS:"\
"$BLACKLIST_GFX12"
2025-02-24 17:47:00 -05:00
FILTER[RHEL9]=\
"$BLACKLIST_ALL_ASICS:"\
"$BLACKLIST_GFX11:"\
"KFDQMTest.ExtendedCuMasking:"\
"KFDEvictTest.QueueTest:"\
"KFDPCSamplingTest.*"
2025-03-26 16:08:40 -04:00
FILTER[upstream]=\
"KFDIPCTest.*:"\
"KFDPCSamplingTest.*"