Skip to content

Commit

Permalink
fix: add 'impl' kwarg to jax PRNGKey
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Armstrong committed May 29, 2024
1 parent 827459d commit 9a5a578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ivy/functional/frontends/jax/random.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def _remove_axis(shape, axis):


@to_ivy_arrays_and_back
def PRNGKey(seed):
def PRNGKey(seed, *, impl=None):
return ivy.array([0, seed % 4294967295 - (seed // 4294967295)], dtype=ivy.int64)


Expand Down

0 comments on commit 9a5a578

Please sign in to comment.