We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e358bbc commit dc1784cCopy full SHA for dc1784c
iree_kernel_benchmark/gemmbench/problems.py
@@ -1129,6 +1129,11 @@ def get_matching_configs(
1129
continue
1130
if not config_re.match(config.get_name()):
1131
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
1137
# The raw_accumulators arg means "test configs where the result element
1138
# type is different from what it would be in the default mode".
1139
# We can't just test for (result_element_type == accumulator_element_type),
0 commit comments