zhiics commented on a change in pull request #5084: Duplicate likely nodes
added when loop axis split unevenly
URL: https://github.com/apache/incubator-tvm/pull/5084#discussion_r395450267
##########
File path: src/te/schedule/message_passing.cc
##########
@@ -556,6 +556,16 @@ void PassUpBoundCheck(const Stage& s,
}
}
+bool IsRangeSame(const Range input_1, const Range input_2) {
+ arith::Analyzer analyzer;
+ if (input_1.same_as(input_2)) return true;
+ if ( !analyzer.CanProve(input_1->min == input_2->min)
Review comment:
no need to have the space after "("
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services