forked from jax-ml/jax
-
Notifications
You must be signed in to change notification settings - Fork 4
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
CI: 11/08/24 upstream sync #135
Merged
Merged
Conversation
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
PiperOrigin-RevId: 693793427
PiperOrigin-RevId: 693793727
http://github.com/openxla/xla/commit/0f6331b1881ae34c8b1cd59580900d556bc8305c. PiperOrigin-RevId: 693819727
PiperOrigin-RevId: 693835080
…nchmarking-scripts PiperOrigin-RevId: 694095765
Previously we didn't really fully discharge squeezing the indexed dims before applying other GMEM transforms, leading to potential failures because they were not anticipating the increased rank. PiperOrigin-RevId: 694098739
PiperOrigin-RevId: 694104006
So far all of our layouts have been tailored to a limited set of use cases we've tried so far, but they're still not general enough to handle all of the register layouts needed for WGMMA or mixed precision matmuls (incl. intermediate steps during conversions). Instead of adding more special cases, I decided to adopt XLA tiled layouts and they do seem to work quite well! This change only lays the groundwork for the new layout system. Future changes will build upon them to add new features and eventually replace `WGMMA_LAYOUT` altogether. PiperOrigin-RevId: 694105514
Remove unnecessary skip statements. Also added tests for bf16 types. PiperOrigin-RevId: 694130207
http://github.com/openxla/xla/commit/b0aae988216d48e2379c8de1c7c4aedeb98d8985. PiperOrigin-RevId: 694218761
PiperOrigin-RevId: 694224696
PiperOrigin-RevId: 694236671
This test only takes around 30s on most hardware platforms, it does not need 10 shards. PiperOrigin-RevId: 694243316
PiperOrigin-RevId: 694248723
PiperOrigin-RevId: 694259486
PiperOrigin-RevId: 694268559
…ce_put works correctly in presence of copy/donate options that user specified. This change only supports pinned_host -> pinned_host copies on the same device. HBM -> HBM copies don't work yet and donation also doesn't work in PJRT. This CL also sets up the plumbing from JAX to PJRT so that in the future support for missing features can be added easily. Fixes jax-ml#24521 PiperOrigin-RevId: 694274616
… GPU dialect. Also add a lowering rule for `mosaic_gpu.initialize_barrier`. PiperOrigin-RevId: 694276698
PiperOrigin-RevId: 694296952
The compilation cache has a dependency on etils.epath if the cache is not on a local filesystem. PiperOrigin-RevId: 694311585
charleshofer
approved these changes
Nov 12, 2024
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.
Daily sync with upstream