Skip to content

Commit

Permalink
✏️ Fix: fixed indent error
Browse files Browse the repository at this point in the history
  • Loading branch information
PommesPeter committed Oct 19, 2023
1 parent 9585972 commit c3ce852
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/paddle/tensor/math.py
Original file line number Diff line number Diff line change
Expand Up @@ -6987,7 +6987,7 @@ def hypot_(x, y, name=None):
return out


def signbit(x, name=None):
def signbit(x, name=None):
r"""
Tests if each element of input has its sign bit set or not.
Expand Down Expand Up @@ -7032,4 +7032,4 @@ def signbit(x, name=None):

out_mask = paddle.cast(x < 0, dtype='bool')
out_mask[x == -0] = True
return out_mask
return out_mask

0 comments on commit c3ce852

Please sign in to comment.