Commit 609d1f8d authored by rusty1s's avatar rusty1s
Browse files

return type added

parent d536e0d3
...@@ -43,6 +43,8 @@ def scatter_std(src, index, dim=-1, out=None, dim_size=None, unbiased=True): ...@@ -43,6 +43,8 @@ def scatter_std(src, index, dim=-1, out=None, dim_size=None, unbiased=True):
unbiased (bool, optional): If set to :obj:`False`, then the standard- unbiased (bool, optional): If set to :obj:`False`, then the standard-
deviation will be calculated via the biased estimator. deviation will be calculated via the biased estimator.
(default: :obj:`True`) (default: :obj:`True`)
:rtype: :class:`Tensor`
""" """
src, out, index, dim = gen(src, index, dim, out, dim_size, fill_value=0) src, out, index, dim = gen(src, index, dim, out, dim_size, fill_value=0)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment