asmith26 / jax_toolkit

A collection of jax functions to help with common machine/deep learning related functionality.
https://asmith26.github.io/jax_toolkit/
Apache License 2.0
5 stars 0 forks source link

Bump jax from 0.2.8 to 0.2.10 #157

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps jax from 0.2.8 to 0.2.10.

Changelog

Sourced from jax's changelog.

jax 0.2.10 (March 5 2021)

  • GitHub commits.
  • New features:
    • {func}jax.scipy.stats.chi2 is now available as a distribution with logpdf and pdf methods.
    • {func}jax.scipy.stats.betabinom is now available as a distribution with logpmf and pmf methods.
    • Added {func}jax.experimental.jax2tf.call_tf to call TensorFlow functions from JAX ({jax-issue}[#5627](https://github.com/google/jax/issues/5627)) and README).
    • Extended the batching rule for lax.pad to support batching of the padding values.
  • Bug fixes:
    • {func}jax.numpy.take properly handles negative indices ({jax-issue}[#5768](https://github.com/google/jax/issues/5768))
  • Breaking changes:
    • JAX's promotion rules were adjusted to make promotion more consistent and invariant to JIT. In particular, binary operations can now result in weakly-typed values when appropriate. The main user-visible effect of the change is that some operations result in outputs of different precision than before; for example the expression jnp.bfloat16(1) + 0.1 * jnp.arange(10) previously returned a float64 array, and now returns a bfloat16 array. JAX's type promotion behavior is described at {ref}type-promotion.
    • {func}jax.numpy.linspace now computes the floor of integer values, i.e., rounding towards -inf rather than 0. This change was made to match NumPy 1.20.0.
    • {func}jax.numpy.i0 no longer accepts complex numbers. Previously the function computed the absolute value of complex arguments. This change was made to match the semantics of NumPy 1.20.0.
    • Several {mod}jax.numpy functions no longer accept tuples or lists in place of array arguments: {func}jax.numpy.pad, :funcjax.numpy.ravel, {func}jax.numpy.repeat, {func}jax.numpy.reshape. In general, {mod}jax.numpy functions should be used with scalars or array arguments.

jaxlib 0.1.62 (Unreleased)

  • New features:
    • jaxlib wheels are now built to require AVX instructions on x86-64 machines by default. If you want to use JAX on a machine that doesn't support AVX, you can build a jaxlib from source using the --target_cpu_features flag to build.py. --target_cpu_features also replaces --enable_march_native.

jaxlib 0.1.61 (February 12 2021)

jaxlib 0.1.60 (Febuary 3 2021)

  • Bug fixes:
    • Fixed a memory leak when converting CPU DeviceArrays to NumPy arrays. The memory leak was present in jaxlib releases 0.1.58 and 0.1.59.
    • bool, int8, and uint8 are now considered safe to cast to bfloat16 NumPy extension type.

... (truncated)

Commits
  • 6ec9046 Merge pull request #5950 from google:update-pypi
  • 7615d67 Merge pull request #5945 from jakevdp:simplify-wrapped-doc
  • 206acc1 update jax for pypi
  • 8a8080c Rewrite numpy docstring parser & remove extraneous sections
  • 76c1ec3 Merge pull request #5936 from apaszke:vmap-of-xmap
  • fcaf47e Merge pull request #5928 from apaszke:xmap-no-vmap
  • 6884f21 Fix batching formula of xmap
  • 249cd8b Merge pull request #5946 from skye:pjit_test
  • 6f83cc6 Merge pull request #5940 from jakevdp:fix-doc
  • 49cca16 Ignore warnings in pjit_test.py
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 3 years ago

Superseded by #167.