Skip to content

Commit 3f3975a

Browse files
authored
[7.0][BACKPORT] Fix multi buffer test on gfx950 (#1915)
Fix multi buffer test on gfx950
1 parent 330c587 commit 3f3975a

File tree

2 files changed

+173
-0
lines changed

2 files changed

+173
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
if (not config.arch_support_mfma):
22
config.unsupported = True
3+
4+
# Conditionally skip tests based on architecture
5+
if hasattr(config, 'arch') and config.arch:
6+
if 'gfx950' in config.arch:
7+
# For gfx950, skip the regular multibuffer test and run gfx950 specific one
8+
config.excludes = ['test_multi_buffer_full.mlir']
9+
else:
10+
# For other architectures, skip the gfx950 specific test
11+
config.excludes = ['test_multi_buffer_full_gfx950.mlir']

0 commit comments

Comments
 (0)