Jax: jax-v0.3.1 Release

Release date:
February 18, 2022
Previous version:
jax-v0.3.0 (released February 10, 2022)
Magnitude:
6,721 Diff Delta
Contributors:
20 total committers
Data confidence:
Commits:

67 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored February 3, 2022
Authored February 11, 2022
Authored February 14, 2022
Authored February 11, 2022
Authored February 12, 2022
Authored February 15, 2022
Authored February 14, 2022
Authored February 12, 2022

Top Contributors in jax-v0.3.1

jakevdp
yashk2810
mattjj
yotarok
apaszke
a-googler
hawkinsp
hyeontaek
LenaMartens
froystig

Directory Browser for jax-v0.3.1

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

  • Changes:
    • jax.test_util.JaxTestCase and jax.test_util.JaxTestLoader are now deprecated. The suggested replacement is to use parametrized.TestCase directly. For tests that rely on custom asserts such as JaxTestCase.assertAllClose(), the suggested replacement is to use standard numpy testing utilities such as numpy.testing.assert_allclose(), which work directly with JAX arrays (#9620 ).
    • jax.test_util.JaxTestCase now sets jax_numpy_rank_promotion='raise' by default (#9562 ). To recover the previous behavior, use the new jax.test_util.with_config decorator: python @jtu.with_config(jax_numpy_rank_promotion='allow') class MyTestCase(jtu.JaxTestCase): ...
    • Added jax.scipy.linalg.schur, jax.scipy.linalg.sqrtm, jax.scipy.signal.csd, jax.scipy.signal.stft, jax.scipy.signal.welch.