Skip to content

Commit

Permalink
[CINN] Remove useless log (#64052)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiahy0825 authored May 7, 2024
1 parent b37b71f commit 9cddbf0
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -569,9 +569,6 @@ class SplitOpPattern : public pir::OpRewritePattern<paddle::dialect::SplitOp> {
pir::PatternRewriter &rewriter) const { // NOLINT
const int axis = GetAxis(split);
const std::vector<int64_t> &sections = GetSections(split);
for (auto section : sections) {
VLOG(0) << " " << section;
}
const int index = slice->attribute<::pir::Int32Attribute>("index").data();
int64_t start =
std::accumulate(sections.begin(), sections.begin() + index, 0);
Expand Down

0 comments on commit 9cddbf0

Please sign in to comment.