Skip to content

Commit 1061078

Browse files
committed
fix2
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent ca51def commit 1061078

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Dialect/TritonGPU/IR/Dialect.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ unsigned AMDMfmaEncodingAttr::getTotalElemsPerThread(ArrayRef<int64_t> shape,
840840
SmallVector<unsigned>
841841
AMDMfmaEncodingAttr::getOrderForDotOperand(unsigned opIdx,
842842
unsigned rank) const {
843-
return getOrderForDotOperand(opIdx, rank);
843+
return ::getOrderForDotOperand(opIdx, rank);
844844
}
845845

846846
// Wmma encoding
@@ -875,7 +875,7 @@ unsigned AMDWmmaEncodingAttr::getTotalElemsPerThread(ArrayRef<int64_t> shape,
875875
SmallVector<unsigned>
876876
AMDWmmaEncodingAttr::getOrderForDotOperand(unsigned opIdx,
877877
unsigned rank) const {
878-
return getOrderForDotOperand(opIdx, rank);
878+
return ::getOrderForDotOperand(opIdx, rank);
879879
}
880880

881881
SmallVector<unsigned>
@@ -968,7 +968,7 @@ unsigned NvidiaMmaEncodingAttr::getTotalElemsPerThread(ArrayRef<int64_t> shape,
968968
SmallVector<unsigned>
969969
NvidiaMmaEncodingAttr::getOrderForDotOperand(unsigned opIdx,
970970
unsigned rank) const {
971-
return getOrderForDotOperand(opIdx, rank);
971+
return ::getOrderForDotOperand(opIdx, rank);
972972
}
973973

974974
//

0 commit comments

Comments
 (0)