Skip to content

Commit 86bb5b7

Browse files
committed
fix(//core/lowering): fix debug message for bn dim check removal pass
Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
1 parent 6b942e5 commit 86bb5b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/lowering/passes/remove_bn_dim_check.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ struct BNDimCheckRemoval {
2222
void run() {
2323
findBNDimCheckNodes(graph_->block());
2424
torch::jit::EliminateDeadCode(graph_);
25-
LOG_GRAPH("Post aten::addmm branch fusion: " << *graph_);
25+
LOG_GRAPH("Post batch norm dim check removal: " << *graph_);
2626
}
2727

2828
private:

0 commit comments

Comments
 (0)