mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Updated Developer FAQ (markdown)
@ -1,9 +1,3 @@
|
||||
## PyTorch Numerics
|
||||
|
||||
### Does PyTorch distinguish between different types of NaN like C++ does?
|
||||
|
||||
No. PyTorch treats NaNs like Python does: there is only one floating point NaN and a complex number is NaN if either its real part is NaN, its imaginary part is NaN, or both parts are NaN.
|
||||
|
||||
## PRs
|
||||
|
||||
### My PR hasn't been reviewed in awhile, what should I do?
|
||||
@ -24,6 +18,12 @@ Push your changes to a pytorch/pytorch branch named ci-all/<your name here>. Tha
|
||||
|
||||
Each PR takes costly machine and developer time. "Small" PRs that may correct a spelling error or making a tiny grammar change are simply not worth the cost.
|
||||
|
||||
## PyTorch Numerics
|
||||
|
||||
### Does PyTorch distinguish between different types of NaN like C++ does?
|
||||
|
||||
No. PyTorch treats NaNs like Python does: there is only one floating point NaN and a complex number is NaN if either its real part is NaN, its imaginary part is NaN, or both parts are NaN.
|
||||
|
||||
## Warnings
|
||||
|
||||
### When should I TORCH_WARN vs. TORCH_WARN_ONCE?
|
||||
|
Reference in New Issue
Block a user