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 e005ace commit 7efca48Copy full SHA for 7efca48
torch/_inductor/kernel/mm_common.py
@@ -137,6 +137,7 @@ def filtered_configs(
137
{"config": (128, 64, 32, 4, 8), "cond": True},
138
{"config": (128, 128, 32, 2, 8), "cond": True},
139
{"config": (128, 128, 32, 3, 4), "cond": True},
140
+ {"config": (128, 128, 64, 2, 8), "cond": torch.version.hip is not None},
141
{"config": (128, 128, 64, 3, 4), "cond": True},
142
{"config": (128, 128, 64, 5, 8), "cond": True},
143
]
@@ -184,6 +185,7 @@ def filtered_configs(
184
185
# {"config": (32, 32, 16, 1, 2), "cond": True},
186
{"config": (128, 256, 128, 3, 8), "cond": torch.version.hip is None},
187
{"config": (256, 128, 128, 3, 8), "cond": torch.version.hip is None},
188
189
190
191
# Mixed precision kernel configs for small sizes of m for mm's like (16, 8192) x (8192, 8192).
0 commit comments