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 31de302 commit 0250d53Copy full SHA for 0250d53
torch/_inductor/kernel/mm_common.py
@@ -128,6 +128,7 @@ def filtered_configs(
128
{"config": (32, 32, 128, 2, 4), "cond": torch.version.hip is None},
129
{"config": (64, 64, 16, 2, 4), "cond": True},
130
{"config": (32, 32, 16, 1, 2), "cond": True},
131
+ {"config": (128, 128, 64, 2, 8), "cond": torch.version.hip is not None},
132
]
133
134
int8_mm_kernel_configs = [
@@ -145,6 +146,7 @@ def filtered_configs(
145
146
# {"config": (32, 32, 16, 1, 2), "cond": True},
147
{"config": (128, 256, 128, 3, 8), "cond": torch.version.hip is None},
148
{"config": (256, 128, 128, 3, 8), "cond": torch.version.hip is None},
149
150
151
152
# Create filtered list of configs based on cond evaluation
0 commit comments