(self, arr, indices, axis)
| 1667 | return jnp.repeat(a, repeats, axis) |
| 1668 | |
| 1669 | def take_along_axis(self, arr, indices, axis): |
| 1670 | return jnp.take_along_axis(arr, indices, axis) |
| 1671 | |
| 1672 | def concatenate(self, arrays, axis=0): |
| 1673 | return jnp.concatenate(arrays, axis) |
nothing calls this directly
no test coverage detected