Tiling with Reduction Domain #8056
Unanswered
ossanossan
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I tried adding tiling to the argmax operation as follows.
But, because the Reduction Domain is mapped to the innermost loop, the load operation inside the innermost loop accesses outside the tile, as shown below.
To prevent this, I tried to move the "r" loop outside of "z_inner" using .reorder() on argmaxResult.update(), but it did not work(The compile was OK but the order was not changed). I also thought about including "r" in the tiles with splitting, but ”r” is not visible from "s32Index", so I don't know how to write it.
Does anyone have a solution to this issue?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions