We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 391c4c1 commit cac9d96Copy full SHA for cac9d96
1 file changed
paddle/cinn/hlir/dialect/operator/transforms/pd_to_cinn_pass.cc
@@ -569,9 +569,6 @@ class SplitOpPattern : public pir::OpRewritePattern<paddle::dialect::SplitOp> {
569
pir::PatternRewriter &rewriter) const { // NOLINT
570
const int axis = GetAxis(split);
571
const std::vector<int64_t> §ions = GetSections(split);
572
- for (auto section : sections) {
573
- VLOG(0) << " " << section;
574
- }
575
const int index = slice->attribute<::pir::Int32Attribute>("index").data();
576
int64_t start =
577
std::accumulate(sections.begin(), sections.begin() + index, 0);
0 commit comments