Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JAX] Replace uses of
jnp.array
in types with jnp.ndarray
.
`jnp.array` is a function, not a type: https://jax.readthedocs.io/en/latest/_autosummary/jax.numpy.array.html so it never makes sense to use `jnp.array` in a type annotation. Presumably the intent was to write `jnp.ndarray` aka `jax.Array`. Change uses of `jnp.array` to `jnp.ndarray`. PiperOrigin-RevId: 555263389
- Loading branch information