Skip to content

Commit 86ed2dd

Browse files
authored
LDBG fixes for "[Codegen] Cater to bitwidth of largest operand in reduction" (#21601)
Signed-off-by: hanhanW <[email protected]>
1 parent b2b3ed1 commit 86ed2dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/src/iree/compiler/Codegen/LLVMGPU/KernelConfig.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,8 @@ static FailureOr<int64_t> getBitWidth(linalg::LinalgOp op) {
371371
}
372372
}
373373

374-
LDBG("Largest input: " << largestInput.value);
375-
LDBG("Largest input bitwidth: " << largestInput.elementBitwidth);
374+
LDBG() << "Largest input: " << largestInput.value;
375+
LDBG() << "Largest input bitwidth: " << largestInput.elementBitwidth;
376376
return largestInput.elementBitwidth;
377377
}
378378

0 commit comments

Comments
 (0)