Lunderberg commented on PR #13024: URL: https://github.com/apache/tvm/pull/13024#issuecomment-1279059342
Last failing unit test requires #13081 to resolve. An unrolled loop produced a `T.if_then_else(floormod(-i,2)==0, ...)`, which resulted in an error thrown from ModularSet. Previously, this was `T.if_then_else(floormod(-i,2) <= 0, ...)`, which was ignored by the ModularSet. Because `floormod` with a positive denominator is never negative, this could be simplified to `T.if_then_else(floormod(-i,2) == 0, ...)`, triggering that bug. -- 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. To unsubscribe, e-mail: commits-unsubscr...@tvm.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org