wllvcxz commented on issue #14112: URL: https://github.com/apache/tvm/issues/14112#issuecomment-1445648118
> i'm not super sure why it's the case, but shall we try: > > ```diff > - 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 Thank you for your reply, after removing all of the `T.int64` around constants in `transform_layout` and `transform_block_layout`, `apply_trace` works correctly! -- 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]
