Skip to content

Commit

Permalink
feat(frontends): Add mean method to Paddle Frontend (ivy-llc#25950)
Browse files Browse the repository at this point in the history
Co-authored-by: hmahmood24 <hmahmood.bee16@gmail.com>
  • Loading branch information
2 people authored and iababio committed Sep 27, 2023
1 parent 33de453 commit 0bef3ca
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ivy/functional/frontends/paddle/tensor/tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,3 +795,7 @@ def nonzero(self):
@with_supported_dtypes({"2.5.1 and below": ("float32", "float64")}, "paddle")
def inner(self, y, name=None):
return paddle_frontend.inner(self._ivy_array, y, name)

@with_supported_dtypes({"2.5.1 and below": ("float32", "float64")}, "paddle")
def mean(self, axis=None, keepdim=False, name=None):
return paddle_frontend.mean(self._ivy_array, axis=axis, keepdim=keepdim)
Original file line number Diff line number Diff line change
Expand Up @@ -2678,6 +2678,42 @@ def test_paddle_tensor_max(
)


# mean
@handle_frontend_method(
class_tree=CLASS_TREE,
init_tree="paddle.to_tensor",
method_name="mean",
dtype_and_x=_statistical_dtype_values(function="mean"),
keepdim=st.booleans(),
)
def test_paddle_tensor_mean(
dtype_and_x,
keepdim,
frontend,
backend_fw,
frontend_method_data,
init_flags,
method_flags,
on_device,
):
input_dtype, x, axis = dtype_and_x
helpers.test_frontend_method(
init_input_dtypes=input_dtype,
init_all_as_kwargs_np={"data": x[0]},
method_input_dtypes=input_dtype,
method_all_as_kwargs_np={
"axis": axis,
"keepdim": keepdim,
},
frontend=frontend,
frontend_method_data=frontend_method_data,
init_flags=init_flags,
backend_to_test=backend_fw,
method_flags=method_flags,
on_device=on_device,
)


@handle_frontend_method(
class_tree=CLASS_TREE,
init_tree="paddle.to_tensor",
Expand Down

0 comments on commit 0bef3ca

Please sign in to comment.