Skip to content

Commit

Permalink
Fixed an issue in dpnp.random.vonmises function identified by tests r…
Browse files Browse the repository at this point in the history
…un on PVC (IntelPython#1799)
  • Loading branch information
antonwolfy authored Apr 23, 2024
1 parent a8e6fce commit d19fbca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpnp/random/dpnp_iface_random.py
Original file line number Diff line number Diff line change
Expand Up @@ -1820,7 +1820,7 @@ def vonmises(mu, kappa, size=None):
pass
elif not dpnp.isscalar(kappa):
pass
elif dpnp.isnan(kappa):
elif numpy.isnan(kappa):
return dpnp.nan
elif kappa < 0:
pass
Expand Down

0 comments on commit d19fbca

Please sign in to comment.