We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jax_array
The deprecated config options jax_array has been removed in jax 0.4.14 (July 27, 2023), see https://jax.readthedocs.io/en/latest/changelog.html#jax-0-4-14-july-27-2023.
Thus, jax.config.update("jax_array", True) raises AttributeError: Unrecognized config option: jax_array.
jax.config.update("jax_array", True)
AttributeError: Unrecognized config option: jax_array
We should simply remove these as they don't do anything anyway in previous recent versions of JAX.
To prevent JAX from raising the unrecognized config option error, a temporary workaround is to declare it:
jax.config.add_option("jax_array", None, None, None, None, False)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The deprecated config options
jax_array
has been removed in jax 0.4.14 (July 27, 2023), see https://jax.readthedocs.io/en/latest/changelog.html#jax-0-4-14-july-27-2023.Thus,
jax.config.update("jax_array", True)
raisesAttributeError: Unrecognized config option: jax_array
.We should simply remove these as they don't do anything anyway in previous recent versions of JAX.
To prevent JAX from raising the unrecognized config option error, a temporary workaround is to declare it:
The text was updated successfully, but these errors were encountered: