You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+38-1Lines changed: 38 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,44 @@ Remember to align the itemized text with the first line of an item within a list
10
10
When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.md.
11
11
-->
12
12
13
-
## jax 0.4.35
13
+
## jax 0.4.36
14
+
15
+
* Breaking Changes
16
+
* {func}`jax.experimental.jax2tf.convert` with `native_serialization=False`
17
+
or with `enable_xla=False` have been deprecated since July 2024, with
18
+
JAX version 0.4.31. Now we removed support for these use cases. `jax2tf`
19
+
with native serialization will still be supported.
20
+
* In `jax.interpreters.xla`, the `xb`, `xc`, and `xe` symbols have been removed
21
+
after being deprecated in JAX v0.4.31. Instead use `xb = jax.lib.xla_bridge`,
22
+
`xc = jax.lib.xla_client`, and `xe = jax.lib.xla_extension`.
23
+
* The deprecated module `jax.experimental.export` has been removed. It was replaced
24
+
by {mod}`jax.export` in JAX v0.4.30. See the [migration guide](https://jax.readthedocs.io/en/latest/export/export.html#migration-guide-from-jax-experimental-export)
25
+
for information on migrating to the new API.
26
+
* The `initial` argument to {func}`jax.nn.softmax` and {func}`jax.nn.log_softmax`
27
+
has been removed, after being deprecated in v0.4.27.
28
+
* The following deprecated methods and functions in {mod}`jax.export` have
29
+
been removed:
30
+
*`jax.export.DisabledSafetyCheck.shape_assertions`: it had no effect
31
+
already.
32
+
*`jax.export.Exported.lowering_platforms`: use `platforms`.
0 commit comments