Skip to content

Commit

Permalink
added a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
derisavi committed Apr 26, 2019
1 parent 5c5bdf9 commit 3772dd5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pass/loop_partition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ class PartitionFinder : public IRVisitor {

private:
Expr InverseCond(const Expr& cond) {
// We expect most condition not to be of EQ or NE form.
// Currently we do not handle inversing EQ or NE.
Expr inverse_cond;
if (const LT* op = cond.as<LT>()) {
// a < b -> a >= b
Expand Down

0 comments on commit 3772dd5

Please sign in to comment.