junrushao commented on code in PR #11639:
URL: https://github.com/apache/tvm/pull/11639#discussion_r968994251
##########
tests/python/unittest/test_tir_transform_lower_cross_thread_reduction.py:
##########
@@ -44,7 +47,7 @@ def loop_split(a: T.handle, b: T.handle) -> None:
with T.block("B"):
vi = T.axis.S(128, i)
vk = T.axis.R(128, ko * 32 + ki)
- T.reads([B[vi], A[vi, vk]])
+ T.reads([A[vi, vk]])
Review Comment:
I see! I just checked myself and found the same thing :-) Thanks for a
heads-up!
##########
tests/python/unittest/test_tir_transform_lower_cross_thread_reduction.py:
##########
@@ -44,7 +47,7 @@ def loop_split(a: T.handle, b: T.handle) -> None:
with T.block("B"):
vi = T.axis.S(128, i)
vk = T.axis.R(128, ko * 32 + ki)
- T.reads([B[vi], A[vi, vk]])
+ T.reads([A[vi, vk]])
Review Comment:
I see! I just checked myself and found the same thing :-) Thanks for the
heads-up!
--
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]