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 31b3681 commit cefda3aCopy full SHA for cefda3a
torch/_inductor/kernel/mm_common.py
@@ -136,6 +136,7 @@ def filtered_configs(
136
{"config": (128, 64, 32, 4, 8), "cond": True},
137
{"config": (128, 128, 32, 2, 8), "cond": True},
138
{"config": (128, 128, 32, 3, 4), "cond": True},
139
+ {"config": (128, 128, 64, 2, 8), "cond": torch.version.hip is not None},
140
{"config": (128, 128, 64, 3, 4), "cond": True},
141
{"config": (128, 128, 64, 5, 8), "cond": True},
142
]
@@ -165,6 +166,7 @@ def filtered_configs(
165
166
# {"config": (32, 32, 16, 1, 2), "cond": True},
167
{"config": (128, 256, 128, 3, 8), "cond": torch.version.hip is None},
168
{"config": (256, 128, 128, 3, 8), "cond": torch.version.hip is None},
169
170
171
172
# Mixed precision kernel configs for small sizes of m for mm's like (16, 8192) x (8192, 8192).
0 commit comments