Skip to content

Commit 085ef35

Browse files
committed
fix attr name
1 parent afa0b41 commit 085ef35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/gc/Analysis/MatmulConfigAnalysis.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,13 +386,13 @@ bool readConfigFromAttrs(MatmulConfig &config, ArrayRef<NamedAttribute> attrs) {
386386
} else if (attr.getName() == "MThreads") {
387387
config.MThreads = cast<IntegerAttr>(attr.getValue()).getInt();
388388
cfgItemCnt++;
389-
} else if (attr.getName() == "innermostMBlock") {
389+
} else if (attr.getName() == "innerMostMBlock") {
390390
config.innerMostMBlock = cast<IntegerAttr>(attr.getValue()).getInt();
391391
cfgItemCnt++;
392-
} else if (attr.getName() == "innermostNBlock") {
392+
} else if (attr.getName() == "innerMostNBlock") {
393393
config.innerMostNBlock = cast<IntegerAttr>(attr.getValue()).getInt();
394394
cfgItemCnt++;
395-
} else if (attr.getName() == "innermostKBlock") {
395+
} else if (attr.getName() == "innerMostKBlock") {
396396
config.innerMostKBlock = cast<IntegerAttr>(attr.getValue()).getInt();
397397
cfgItemCnt++;
398398
}

0 commit comments

Comments
 (0)