Skip to content

Commit e5e6b35

Browse files
committed
Fix comment
1 parent 3169a7e commit e5e6b35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

third_party/intel/lib/TritonIntelGPUToLLVM/ConvertLayoutOpToLLVM.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ struct ConvertLayoutOpUsingLinearLayoutsConversion
773773
Value subGroupBasePtr = gep(ptrType, elementType, smemBase,
774774
ValueRange{subGroupOffset}, /*inbounds=*/true);
775775
Value base = subGroupBasePtr;
776-
// Store in matrix, non-transposed
776+
// Store in matrix, transposed
777777
for (ArrayRef<Value> vals = inVals; !vals.empty();
778778
vals = vals.drop_front(vecWidth)) {
779779
ArrayRef<Value> curr = vals.take_front(vecWidth);
@@ -783,7 +783,7 @@ struct ConvertLayoutOpUsingLinearLayoutsConversion
783783
/*inbounds=*/true);
784784
}
785785

786-
// Load from matrix, trasposed.
786+
// Load from matrix, non-trasposed.
787787
Value workItemOffset = mul(wiStride, subGroupLocalId);
788788
Value workItemBasePtr = gep(ptrType, elementType, subGroupBasePtr,
789789
ValueRange{workItemOffset}, /*inbounds=*/true);

0 commit comments

Comments
 (0)