junrushao commented on issue #14112:
URL: https://github.com/apache/tvm/issues/14112#issuecomment-1445299958

   i'm not super sure why it's the case, but shall we try:
   
   ```patch
   - sch.transform_block_layout(block=b3, index_map=lambda v_nn, v_yy, v_xx, 
v_ff: (v_nn * T.int64(64) + v_yy * T.int64(8) + v_xx, v_ff,))
   + sch.transform_block_layout(block=b3, index_map=lambda v_nn, v_yy, v_xx, 
v_ff: (v_nn * 64 + v_yy * 8 + v_xx, v_ff,))
   ```
   
   CC: @vinx13


-- 
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]

Reply via email to