Hzfengsy commented on issue #16224: URL: https://github.com/apache/tvm/issues/16224#issuecomment-1851279493
Hi @MichaelJKlaiber. Thanks for the reporting. It's not a bug, as `vj` is bound to loop `j`, with range `[0, 129)`. So `vj < 129` is always true. The `blockize` step simplifies the expr and removes the `T.if_then_else`. Once you change the predicate from `vj < 129` to `vj < 128`, everything looks good. Please let me know if it makes sense. If so, feel free to close the issue. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
