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

#10861 : Added modf in numpy frontend #11680

Merged
merged 10 commits into from
Apr 24, 2023
Prev Previous commit
Next Next commit
modified out variable
RakshitKumar04 committed Apr 23, 2023
commit e26c7e5272ce6be55d3ce97303ebe0cbb60f1a84
Original file line number Diff line number Diff line change
@@ -570,6 +570,7 @@ def test_numpy_modf(
input_dtype = input_dtypes,
test_flags = test_flags,
)
out = [ivy.array(np.zeros_like(x[0])), ivy.array(np.zeros_like(x[0]))]
np_frontend_helpers.test_frontend_function(
input_dtypes = input_dtypes,
frontend = frontend,
@@ -578,7 +579,7 @@ def test_numpy_modf(
on_device = on_device,
x1=x[0],
x2=x[1],
out = [ivy.zeros_like(x[0]), ivy.zeros_like(x[0])],
out = out,
where = where,
casting = casting,
order = "K",