wrongtest commented on pull request #9482: URL: https://github.com/apache/tvm/pull/9482#issuecomment-972463175
Hi @FranckQC, I am also very interested in the CSE pass. In our circumstances we suffer from duplicate index computations produced by loop unroll, like ``` A[i*256 + j*16 + 0] = B[i*256 + j*16 + 4096] A[i*256 + j*16 + 1] = B[i*256 + j*16 + 4097] ... ``` We have to depend on target backend optimize abilities which may or maynot optimize them out. It would be great if CSE can handle part of these things in TIR level. -- 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]
