Skip to content

Commit bef0c6c

Browse files
committed
more debug logging
1 parent 57eced0 commit bef0c6c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

third_party/intel/lib/TritonIntelGPUTransforms/AccelerateMatmul.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ getWarpsPerTile(tt::DotOp dotOp,
6464
ceil<uint32_t>(dpasCap.repeatCount, dpasCap.executionSize);
6565
uint32_t colRowRatio =
6666
ceil<uint32_t>(dpasCap.executionSize, dpasCap.repeatCount);
67+
llvm::errs() << "rowColRation: " << rowColRatio << ", colRowRatio: " << colRowRatio << ", ret: " << ret[0] << ", " << ret[1] << "\n";
6768

6869
int rowDim = order[rank - 2], colDim = order[rank - 1];
6970
do {
@@ -141,7 +142,7 @@ class BlockedToDPAS : public OpRewritePattern<tt::DotOp> {
141142
} else {
142143
// llvm::errs() << "no A op for A: " << a << "\n";
143144
}
144-
// llvm::errs() << "order: " << order[0] << ", " << order[1] << "\n";
145+
llvm::errs() << "order: " << order[0] << ", " << order[1] << "\n";
145146

146147
SmallVector<unsigned> warpsPerTile =
147148
getWarpsPerTile(dotOp, dpasCap, retShape, numWarps, order);

0 commit comments

Comments
 (0)