sunggg commented on PR #14493: URL: https://github.com/apache/tvm/pull/14493#issuecomment-1498193471
@yongwww thanks for taking a look! In TOPI, we have two versions of strided slice: One static, one dynamic. Static one is less constraints, you can pass arbitrarily number of begin/end elements since those values are compile-time constants. However, dynamic strided slice is bit more restricted because you need to know the "rank" of such arguments as presented in the description. When you look at the test for dynamic slice, they all have the equal ranks with the data rank: https://github.com/apache/tvm/blob/unity/tests/python/topi/python/test_topi_transform.py#L854 -- 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]
