Skip to content

Commit

Permalink
fix: Fixed Frontend Failing Test: paddle - tensor.paddle.Tensor.any (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Sai-Suraj-27 authored Jan 23, 2024
1 parent f165c50 commit 196e20c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ivy/functional/frontends/paddle/tensor/tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ def logical_or(self, y, out=None, name=None):
def bitwise_xor(self, y, out=None, name=None):
return paddle_frontend.bitwise_xor(self, y)

@with_supported_dtypes({"2.6.0 and below": ("float16", "bfloat16")}, "paddle")
@with_unsupported_dtypes({"2.6.0 and below": ("float16", "bfloat16")}, "paddle")
def any(self, axis=None, keepdim=False, name=None):
return paddle_frontend.any(self, axis=axis, keepdim=keepdim)

Expand Down

0 comments on commit 196e20c

Please sign in to comment.