Say we have
```
for y, x in T.grid(10, 10):
    with T.block("block"):
        B[y, x] = A[y, x] + 1
```

Is there any advantage to adding axis remap if we have 1-1 correspondence with 
existing variables?
```
for y, x in T.grid(10, 10):
    with T.block("block"):
        v_y, v_x = T.axis.remap("SS", y, x)
        B[v_y, v_x] = A[v_y, v_x] + 1
```





---
[Visit 
Topic](https://discuss.tvm.apache.org/t/is-t-axis-remap-mandatory/15197/1) to 
respond.

You are receiving this because you enabled mailing list mode.

To unsubscribe from these emails, [click 
here](https://discuss.tvm.apache.org/email/unsubscribe/297173d48fbfcff3614e236bcc450a9f88eb26a8b386c3bb8dc9efbb5b1929c9).

Reply via email to