8000 Implement logaddexp by cloudhan · Pull Request #38384 · pytorch/pytorch · GitHub
[go: up one dir, main page]

Skip to content

Implement logaddexp #38384

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

Closed
wants to merge 18 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add method doc
  • Loading branch information
cloudhan committed May 23, 2020
commit 0024be30a609a4491be477384e0199b30a0b312a
14 changes: 14 additions & 0 deletions torch/_tensor_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1742,6 +1742,20 @@ def add_docstr_all(method, docstr):
In-place version of :meth:`~Tensor.log2`
""")

add_docstr_all('logaddexp',
r"""
logaddexp(other) -> Tensor

See :func:`torch.logaddexp`
""")

add_docstr_all('logaddexp2',
r"""
logaddexp2(other) -> Tensor

See :func:`torch.logaddexp2`
""")

add_docstr_all('log_normal_', r"""
log_normal_(mean=1, std=2, *, generator=None)

Expand Down
0