diff options
author | Choongwoo Han <cwhan.tunz@gmail.com> | 2018-02-20 09:46:35 +0900 |
---|---|---|
committer | Soumith Chintala <soumith@gmail.com> | 2018-02-19 19:46:35 -0500 |
commit | cf71385ec91a76754b6074757886eb690d23b319 (patch) | |
tree | cd795f5f9c843bee87677c87f8b8ceaff56c4b29 /docs | |
parent | fae6c6712180d325d2a5c454bfb51eb42d8d3206 (diff) | |
download | pytorch-cf71385ec91a76754b6074757886eb690d23b319.tar.gz pytorch-cf71385ec91a76754b6074757886eb690d23b319.tar.bz2 pytorch-cf71385ec91a76754b6074757886eb690d23b319.zip |
Implement torch.isnan (#5273)
* Implement torch.isnan
* Simple python implementation
* Fix typo
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/torch.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/source/torch.rst b/docs/source/torch.rst index 2c5550e88d..16b39f7c23 100644 --- a/docs/source/torch.rst +++ b/docs/source/torch.rst @@ -152,6 +152,7 @@ Comparison Ops .. autofunction:: equal .. autofunction:: ge .. autofunction:: gt +.. autofunction:: isnan .. autofunction:: kthvalue .. autofunction:: le .. autofunction:: lt |