Skip to content

Commit

Permalink
Update tensor.py
Browse files Browse the repository at this point in the history
tensor file has been changed
  • Loading branch information
boopathiviky committed Oct 27, 2023
1 parent f4d6775 commit ae11377
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions ivy/functional/frontends/paddle/tensor/tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,14 +837,7 @@ def t(self, name=None):
def cast(self, dtype):
return paddle_frontend.cast(self, dtype)

@with_supported_dtypes(
{"2.5.1 and below": ("float32", "float64", "int32", "int64")},
"paddle",
)
def bucketize(self, sorted_sequence, right=False, name=None):
return paddle_frontend.bucketize(
self.ivy_array, sorted_sequence=sorted_sequence, right=right, name=name
)


@with_unsupported_dtypes({"2.5.1 and below": ("float16", "bfloat16")}, "paddle")
def bmm(self, y, transpose_x=False, transpose_y=False, name=None):
Expand Down

0 comments on commit ae11377

Please sign in to comment.