Skip to content

Commit 4cace82

Browse files
committed
fix format
1 parent 3c3c7e7 commit 4cace82

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

third_party/intel/lib/TritonIntelGPUToLLVM/LoadStoreOpToLLVM.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1769,7 +1769,8 @@ struct LoadOpConversion
17691769
// operand per inst.
17701770
// Note: the tileHeight and numOperandsPer2DLoadM are the column size
17711771
// now.
1772-
numOperandsPer2DLoadM = (threadsPerWarp <= tileHeight) ? repCluster[rank - 1] : 1;
1772+
numOperandsPer2DLoadM =
1773+
(threadsPerWarp <= tileHeight) ? repCluster[rank - 1] : 1;
17731774
}
17741775
// The transpose 2d load only support 1 operand per inst on column.
17751776
// (vBlocks = 1)

0 commit comments

Comments
 (0)