Lunderberg commented on PR #13463:
URL: https://github.com/apache/tvm/pull/13463#issuecomment-1324213823
Regarding the readability of the unit test, I did some poking around, and
the following PrimFunc triggers the same error on main when the layout is
transformed using `lambda h: [h//8, h%8]`.
```python
@T.prim_func
def func(A: T.Buffer[T.int64(58), "int32"]):
for i in T.serial(T.int64(58)):
with T.block("block"):
vi = T.axis.remap("S", [i])
A[vi] = 0
```
--
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]