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
@mmcky
Can you please search for this line:
In line with immutability, JAX does not support inplace operations:
It looks like JAX is sorting in place now. Could you please evaluate and propose a fix?
The text was updated successfully, but these errors were encountered:
lecture-jax/lectures/jax_intro.md
Line 161 in 1a1be32
Sorry, something went wrong.
For me, its still not inplace:
>>> import jax >>> jax.__version__ '0.4.23' >>> import jax.numpy as jnp >>> a = jnp.array((2, 1)) >>> a.sort() Array([1, 2], dtype=int32) >>> a Array([2, 1], dtype=int32)
No branches or pull requests
@mmcky
Can you please search for this line:
In line with immutability, JAX does not support inplace operations:
It looks like JAX is sorting in place now. Could you please evaluate and propose a fix?
The text was updated successfully, but these errors were encountered: