[VectorExt] Add TransferScatterOp definition, verifier, lit tests.#23666
Merged
keshavvinayak01 merged 3 commits intoiree-org:mainfrom Mar 7, 2026
Conversation
4b9697a to
899acd9
Compare
hanhanW
requested changes
Mar 5, 2026
hanhanW
reviewed
Mar 5, 2026
899acd9 to
71e6351
Compare
Groverkss
reviewed
Mar 6, 2026
Groverkss
reviewed
Mar 6, 2026
fecb84b to
b31dbff
Compare
Signed-off-by: Keshav Vinayak Jha <keshavvinayakjha@gmail.com>
b31dbff to
0adaf2e
Compare
keshavvinayak01
commented
Mar 6, 2026
Contributor
Author
keshavvinayak01
left a comment
There was a problem hiding this comment.
@Groverkss Done.
hanhanW
approved these changes
Mar 6, 2026
Contributor
hanhanW
left a comment
There was a problem hiding this comment.
LGTM, thanks. It'd be good if you can address comment in a separate commit. That will help review process much easier as I don't need to re-read all the code.
…ExtOps.td Co-authored-by: Han-Chung Wang <hanhan0912@gmail.com>
…ExtOps.td Co-authored-by: Han-Chung Wang <hanhan0912@gmail.com>
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.
Introduce
iree_vector_ext.transfer_scatter, the write counterpart totransfer_gather. Uses the same unifiedindexing_mapsattribute with per-dimension control (contiguous, scattered, broadcast).For tensor operands the op returns the modified tensor; for memref operands it has no result.
Part 1/4 from #23610