Skip to content

Jax release v0.3.11

Compare
Choose a tag to compare
@yashk2810 yashk2810 released this 15 May 18:39
· 9166 commits to main since this release
  • Changes
    • {func}jax.lax.eigh now accepts an optional sort_eigenvalues argument
      that allows users to opt out of eigenvalue sorting on TPU.
  • Deprecations
    • Non-array arguments to functions in {mod}jax.lax.linalg are now marked
      keyword-only. As a backward-compatibility step passing keyword-only
      arguments positionally yields a warning, but in a future JAX release passing
      keyword-only arguments positionally will fail.
      However, most users should prefer to use {mod}jax.numpy.linalg instead.
    • {func}jax.scipy.linalg.polar_unitary, which was a JAX extension to the
      scipy API, is deprecated. Use {func}jax.scipy.linalg.polar instead.