Skip to content

Commit

Permalink
fix Ivy Failing Test: paddle - elementwise.equal (ivy-llc#28243)
Browse files Browse the repository at this point in the history
Co-authored-by: NripeshN <[email protected]>
  • Loading branch information
2 people authored and Kacper-W-Kozdon committed Feb 27, 2024
1 parent 65e85ba commit 46090a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ivy/functional/backends/paddle/elementwise.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ def isinf(
return paddle.zeros(shape=x.shape, dtype=bool)


@with_unsupported_dtypes(
{"2.6.0 and below": ("bfloat16",)},
@with_unsupported_device_and_dtypes(
{"2.6.0 and below": {"cpu": ("bfloat16", "complex128", "float64", "float32")}},
backend_version,
)
def equal(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,8 @@ def test_equal(*, dtype_and_x, test_flags, backend_fw, fn_name, on_device):
on_device=on_device,
x1=x[0],
x2=x[1],
atol_=1e-03,
rtol_=1e-03,
)


Expand Down

0 comments on commit 46090a3

Please sign in to comment.