Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added jax numpy logic_or #10316

Merged
merged 16 commits into from
Feb 20, 2023
6 changes: 5 additions & 1 deletion ivy/functional/frontends/jax/numpy/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ def any(a, axis=None, out=None, keepdims=False, *, where=None):

alltrue = all


sometrue = any


Expand Down Expand Up @@ -157,3 +156,8 @@ def isinf(x, /):
def isclose(a, b, rtol=1e-05, atol=1e-08, equal_nan=False):
a, b = promote_jax_arrays(a, b)
return ivy.isclose(a, b, rtol=rtol, atol=atol, equal_nan=equal_nan)


@to_ivy_arrays_and_back
def logical_not(x, /):
return ivy.logical_not(x)
Loading