Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: torch backend mean reverted to work with keepdim, out args, as well as dtype #28742

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions ivy/functional/backends/torch/statistical.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,14 @@ def mean(
if dtype is not None:
dtype = ivy.as_native_dtype(dtype)
if axis is None:
ret = torch.mean(input=x, dtype=dtype)
else:
ret = torch.mean(input=x, dim=axis, keepdims=keepdims, dtype=dtype, out=out)
return ret
num_dims = len(x.shape)
axis = list(range(num_dims))
if axis in [(), []]:
if ivy.exists(out):
return ivy.inplace_update(out, x)
else:
return x
return torch.mean(x, dim=axis, dtype=dtype, keepdim=keepdims, out=out)


mean.support_native_out = True
Expand Down
Loading