Clarify the meaning of Shuffle::is_broadcast()#8158
Merged
Conversation
I was poking at the Shuffle node, and checking its usage, and it seems that despite the comment, Shuffles that return true for is_broadcast are not the same as a Broadcast node. Instead of repeating the input vector some number of times, it repeats a shuffle of the input vector. This means IRPrinter was incorrect. None of the other usages were bad. This PR makes this clearer in the comment, and fixes IRPrinter.
| Expr b = lossless_cast(t.narrow(), sub->b); | ||
| if (a.defined() && b.defined()) { | ||
| return cast(t, a) + cast(t, b); | ||
| return cast(t, a) - cast(t, b); |
Member
Author
There was a problem hiding this comment.
Oops, a local change from the other PR snuck in. Will revert.
steven-johnson
approved these changes
Mar 18, 2024
Contributor
steven-johnson
left a comment
There was a problem hiding this comment.
LGTM but IMHO we'd be better off renaming this method further; having two different things both named "broadcast" is needlessly confusing
Member
Author
|
A Broadcast node is already capable of repeating vectors, so I actually think this shuffle pattern should be a Broadcast node wrapped around a smaller shuffle, but it's used in ways I don't entirely understand in HexagonOptimize, so it's not a trivial change. I was in the middle of trying to fix the lossless_cast bug though, so I though I'd at least fix the comment rather than get side-tracked. |
Contributor
|
Ready to land? |
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I was poking at the Shuffle node, and checking its usage, and it seems that despite the comment, Shuffles that return true for is_broadcast are not the same as Broadcast nodes. Instead of repeating the input vector some number of times, it repeats a shuffle of the input vector. This means IRPrinter was incorrect. The other usages were fine.
This PR makes this clearer in the comment, and fixes IRPrinter.