Skip to content

Commit 613a333

Browse files
committed
fix comment
1 parent 01920b6 commit 613a333

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/gc/Analysis/MatmulConfigAnalysis.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ inline SmallVector<unsigned> extractDimTypeIdx(ArrayRef<DimType> tyList,
4949

5050
inline void getDimTypeFromIterators(linalg::LinalgOp linalgOp,
5151
SmallVectorImpl<DimType> &dimTypes) {
52-
SmallVector<utils::IteratorType> iteratorTypes =
52+
SmallVector<mlir::utils::IteratorType> iteratorTypes =
5353
linalgOp.getIteratorTypesArray();
5454

5555
for (const auto &&[idx, iterType] : llvm::enumerate(iteratorTypes)) {
56-
if (iterType == utils::IteratorType::parallel) {
56+
if (iterType == mlir::utils::IteratorType::parallel) {
5757
SmallVector<std::pair<Value, unsigned>> operandDimPairs;
5858
linalgOp.mapIterationSpaceDimToAllOperandDims(idx, operandDimPairs);
5959
if (operandDimPairs.size() == 3) {
@@ -69,7 +69,7 @@ inline void getDimTypeFromIterators(linalg::LinalgOp linalgOp,
6969
} else {
7070
dimTypes.push_back(DimType::N);
7171
}
72-
} else if (iterType == utils::IteratorType::reduction) {
72+
} else if (iterType == mlir::utils::IteratorType::reduction) {
7373
dimTypes.push_back(DimType::K);
7474
}
7575
}

0 commit comments

Comments
 (0)