-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add support for the remaining wrapper types #369
Merged
+565
−142
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
cbecf17
feat: add materialize_traced_array for all other wrappers
avik-pal df22ad8
refactor: use scatter for generating diagm
avik-pal 0fe5e9e
refactor: directly generate the region for simple_scatter_op
avik-pal ef7e636
feat: generalize diagm
avik-pal 5216810
feat: efficient non-contiguous setindex
avik-pal 8c32d51
fix: non-contiguous indexing is now supported
avik-pal ecd6420
feat: implement set_mlir_data for the remaining types
avik-pal 24425ff
refactor: use `Ops.gather_getindex` to implement diag
avik-pal b811c07
fix: noinline ops
avik-pal 31ee2ff
fix: incorrect rebase
avik-pal c536e57
fix: dispatches
avik-pal 1affd14
fix: diagm for repeated indices and initial tests
avik-pal b60ca6c
fix: higher dimensional indexing + tests
avik-pal 89fe3d4
fix: matrix multiplication of wrapper types
avik-pal 51c0d6e
fix: de-specialize 3 arg mul!
avik-pal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How can we introduce a runtime error in the generated MLIR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think you can't? at least not in the ML IR, but the verifier will error when verifying the ops
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was thinking of some sort of custom_call which jax is using here https://github.com/openxla/stablehlo/blob/main/docs/tutorials/jax-export.ipynb
For tracedRarray indices we should probably always do a
(dynamic_)gather
(and we might be able to write an optimization later to transform that into aslice
if contiguous.