Skip to content

Commit

Permalink
Merge pull request #25672 from jakevdp:finalize-dep
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 709284584
  • Loading branch information
Google-ML-Automation committed Dec 24, 2024
2 parents fa9c7ed + 40fe4b8 commit 4eff131
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.
* Deletions
* `jax_enable_memories` flag has been deleted and the behavior of that flag
is on by default.
* From `jax.lib.xla_client`, the previously-deprecated `Device` and
`XlaRuntimeError` symbols have been removed; instead use `jax.Device`
and `jax.errors.JaxRuntimeError` respectively.

## jax 0.4.38 (Dec 17, 2024)

Expand Down
6 changes: 3 additions & 3 deletions jax/lib/xla_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@
"jax.lib.xla_client.bfloat16 was removed in JAX v0.4.38; use ml_dtypes.bfloat16.",
None,
),
# Added Sep 26 2024
# Finalized 2024-12-23; remove after 2024-03-23
"Device": (
"jax.lib.xla_client.Device is deprecated; use jax.Device instead.",
_xc.Device,
None,
),
"XlaRuntimeError": (
(
"jax.lib.xla_client.XlaRuntimeError is deprecated; use"
" jax.errors.JaxRuntimeError."
),
_xc.XlaRuntimeError,
None,
),
# Added Oct 10 2024
"FftType": (
Expand Down

0 comments on commit 4eff131

Please sign in to comment.