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/12/24 upstream sync #136
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
This is an initial draft. There is more to come back and add/improve.
… with `gcc` This update is a follow-up of PR jax-ml#23852. In the previous PR, there was one missing place where the `typename` was not added.
PiperOrigin-RevId: 694361967
PiperOrigin-RevId: 694372268
PiperOrigin-RevId: 694426328
PiperOrigin-RevId: 694449664
This is disallowed by scipy after scipy/scipy#21776.
We only recently started using this in tests and it has caused ASAN to report a bunch of leaks. PiperOrigin-RevId: 694510867
PiperOrigin-RevId: 694536516
PiperOrigin-RevId: 694565904
PiperOrigin-RevId: 694567084
PiperOrigin-RevId: 694569529
This test is failing in CI. PiperOrigin-RevId: 694574616
There are numerical errors from the complex plane function tests. PiperOrigin-RevId: 694579368
PiperOrigin-RevId: 694581826
PiperOrigin-RevId: 694622626
http://github.com/openxla/xla/commit/6d95565e652fdd021dcb6d306a54e786572e7a34. PiperOrigin-RevId: 694624452
PiperOrigin-RevId: 694625361
PiperOrigin-RevId: 694626415
PiperOrigin-RevId: 694639758
…es to the MLIR Mosaic GPU Dialect. PiperOrigin-RevId: 694643777
…ignore PiperOrigin-RevId: 694686244
…lunking through the trace stack to find it. PiperOrigin-RevId: 694710181
PiperOrigin-RevId: 695378496
…opper-tests PiperOrigin-RevId: 695388748
PiperOrigin-RevId: 695392377
PiperOrigin-RevId: 695393637
…sent for memory refs. PiperOrigin-RevId: 695414469
Helps resolve the following issue, where invoking HLO's cost analysis triggers compilation which can OOM for larger inputs: jax-ml#24539. This cost estimator uses only abstract evaluation which should work for all input sizes. PiperOrigin-RevId: 695415760
…/actions/cache-4.1.2 PiperOrigin-RevId: 695460084
http://github.com/openxla/xla/commit/e93a258e4494231626c7d3b6a6447e746ea72f9c. PiperOrigin-RevId: 695470898
…memref is untiled * Generalize any untiled memref to have tiling (packing, 128) * Support dynamic index on 2nd minor. * Support dynamic shape on 2nd minor. PiperOrigin-RevId: 695516124
PiperOrigin-RevId: 695603337
In some cases, `compilation_cache.is_cache_used` can reach the end of the function body without returning anything. This amounts to an implicit `return None`, which is not in line with the functions return type of `bool`. We fix this by adding a final `return False` to the function.
Removes the outfeed rewriter mechanism and helper functions `jaxpr_uses_outfeed`, which were used only by `jax.experimental.host_callback`.
Previously, `jvp(lax.sort)` used a shape-dependent dtype, for the types of indices (either `int32` or `int64`, depending on the size of the dimension). For shape polymorphism, input shapes can affect other intermediate shapes, but not `dtype`s. In this case it is easy to just use `int46` independent of the actual shape.
PiperOrigin-RevId: 695671688
PiperOrigin-RevId: 695678083
PiperOrigin-RevId: 695678140
PiperOrigin-RevId: 695678909
Previously, it was recomputing them at every loop iteration. PiperOrigin-RevId: 695682116
`xla::HostCallbackArgInfo` uses `uint16_t` for channel ids, so we should warn users explicitly when the channel ids exceed the UINT16_MAX instead of silently wrapping around. PiperOrigin-RevId: 695682871
PiperOrigin-RevId: 695688910
PiperOrigin-RevId: 695692023
As reported in jax-ml#24794, there were some dot products that were resulting in an unnecessary conversion. This change makes the output storage type selection more flexible. Fixes jax-ml#24794 PiperOrigin-RevId: 695694179
As reported in jax-ml#24843, our LU decomposition on GPU hits overflow errors when the batch size approaches int32 max. This was caused by an issue in how we were constructing the batched pointers used by cuBLAS. PiperOrigin-RevId: 695694648
PiperOrigin-RevId: 695717589
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