-
Notifications
You must be signed in to change notification settings - Fork 26.3k
Fix torch.any documentation #65310
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.any documentation #65310
Conversation
Currently, the description of torch.any would be parsed like ``` param input the input tensor. ``` However, it should be ``` Tests if any element in input evaluates to True. ```
🔗 Helpful links
💊 CI failures summary and remediationsAs of commit 8055140 (more details on the Dr. CI page): ✅ None of the CI failures appear to be your fault 💚
❄️ 1 failure tentatively classified as flakybut reruns have not yet been triggered to confirm:
|
Codecov Report
@@ Coverage Diff @@
## master #65310 +/- ##
==========================================
- Coverage 66.45% 66.45% -0.01%
==========================================
Files 735 735
Lines 93906 93906
==========================================
- Hits 62402 62401 -1
- Misses 31504 31505 +1 |
soulitzer
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks for the fix!
|
@soulitzer has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
|
@soulitzer merged this pull request in 0fe86ac. |
Currently, the description of torch.any would be parsed like
However, it should be