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 f04df24 commit c79231dCopy full SHA for c79231d
include/triton/Conversion/TritonGPUToLLVM/ElementwiseOpToLLVMBase.h
@@ -88,6 +88,8 @@ class ElementwiseOpConversionBase : public ConvertOpToLLVMPattern<SourceOp> {
88
// encoding not available
89
return resultVals;
90
Attribute baseEncoding = encoding;
91
+ if (isa<AMDMfmaEncodingAttr>(baseEncoding))
92
+ return resultVals;
93
while (auto sliced = dyn_cast<SliceEncodingAttr>(baseEncoding))
94
baseEncoding = sliced.getParent();
95
if (isa<NvidiaMmaEncodingAttr, DotOperandEncodingAttr>(baseEncoding)) {
0 commit comments