kparzysz-quic opened a new pull request, #15901:
URL: https://github.com/apache/tvm/pull/15901
If iv is a loop induction variable, then `m, t = sch.peel_tail(iv, 1)` will
convert
```
for iv in T.serial(n):
blah
```
to
```
for m in T.serial(n-1):
blah
for t in T.serial(1):
blah
```
This is still wip.
--
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]