Skip to content

Commit

Permalink
Remove the kwargs from jnp.reshape for compatibility with older JAX v…
Browse files Browse the repository at this point in the history
…ersions (#752)
  • Loading branch information
pnkraemer authored Jun 13, 2024
1 parent ef9a6b6 commit ede2d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion probdiffeq/backend/numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def diff_along_axis(arr, /, *, axis):


def reshape(arr, /, new_shape, order="C"):
return jnp.reshape(arr, shape=new_shape, order=order)
return jnp.reshape(arr, new_shape, order=order)


def flip(arr, /):
Expand Down

0 comments on commit ede2d82

Please sign in to comment.