Skip to content

Commit

Permalink
feat: added Paddle frontend Tensor.__div__ (#27360)
Browse files Browse the repository at this point in the history
Co-authored-by: NripeshN <[email protected]>
Co-authored-by: Sam-Armstrong <[email protected]>
Co-authored-by: ivy-branch <[email protected]>
  • Loading branch information
4 people committed Jul 13, 2024
1 parent 55271e9 commit 250e9d5
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ivy/functional/frontends/paddle/tensor/tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,13 @@ def __rtruediv__(self, y, /, name=None):
def __int__(self):
return int(self._ivy_array)

@with_unsupported_dtypes(
{"2.6.1 and below": ("bool", "unsigned", "int8", "float16", "bfloat16")},
"paddle",
)
def __div__(self, y, name=None):
return paddle_frontend.divide(self, y, name=name)

@with_unsupported_dtypes(
{
"2.6.0 and below": (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6511,3 +6511,47 @@ def test_paddle_zero_(
frontend=frontend,
on_device=on_device,
)


# __div__
@handle_frontend_method(
class_tree=CLASS_TREE,
init_tree="paddle.to_tensor",
method_name="__div__",
dtype_and_x=helpers.dtype_and_values(
available_dtypes=helpers.get_dtypes("numeric"),
num_arrays=2,
shared_dtype=True,
large_abs_safety_factor=10,
small_abs_safety_factor=10,
safety_factor_scale="log",
),
)
def test_paddle_tensor__div__(
dtype_and_x,
frontend,
frontend_method_data,
init_flags,
method_flags,
on_device,
backend_fw,
):
input_dtype, x = dtype_and_x
assume(not np.any(np.isclose(x[0], 0)))
assume(not np.any(np.isclose(x[1], 0)))
helpers.test_frontend_method(
init_input_dtypes=input_dtype,
backend_to_test=backend_fw,
init_all_as_kwargs_np={
"value": x[0],
},
method_input_dtypes=input_dtype,
method_all_as_kwargs_np={
"y": x[1],
},
frontend=frontend,
frontend_method_data=frontend_method_data,
init_flags=init_flags,
method_flags=method_flags,
on_device=on_device,
)

0 comments on commit 250e9d5

Please sign in to comment.