Skip to content

Commit dc1784c

Browse files
authored
Temporarily disable gemmbench configurations affected by IREE bug (#73)
iree-org/iree#20446
1 parent e358bbc commit dc1784c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

iree_kernel_benchmark/gemmbench/problems.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,6 +1129,11 @@ def get_matching_configs(
11291129
continue
11301130
if not config_re.match(config.get_name()):
11311131
continue
1132+
# TODO(https://github.com/iree-org/iree/issues/20446):
1133+
# Mx1xK transpose-A configurations temporarily skipped because they
1134+
# trigger an IREE/MLIR bug causing a compilation failure.
1135+
if config.N == 1 and config.tA == "T":
1136+
continue
11321137
# The raw_accumulators arg means "test configs where the result element
11331138
# type is different from what it would be in the default mode".
11341139
# We can't just test for (result_element_type == accumulator_element_type),

0 commit comments

Comments
 (0)