Tongzhou Wang
392fc8885c
add faq on cuda memory management and dataloder ( #5378 )
2018-02-27 18:35:30 -05:00
Tongzhou Wang
8c18220a59
Fix layer_norm initialization and nn.Module docs ( #5422 )
...
* Fix LN initialization; Support single int normalized_shape
* disable docstring inheritance
* fix sphinx warnings
2018-02-26 19:32:08 -05:00
Junior Rojas
642e4d0762
Fix typos ( #5340 )
2018-02-21 16:27:12 -05:00
brett koonce
596470011b
minor sp, underlyhing->underlying ( #5304 )
2018-02-19 22:28:17 -05:00
Edward Z. Yang
e411525f2c
Add a FAQ, for now just 'out of memory' advice. ( #5251 )
...
* Add a FAQ, for now just 'out of memory' advice.
Signed-off-by: Edward Z. Yang <ezyang@fb.com>
* Updates based on comments.
Signed-off-by: Edward Z. Yang <ezyang@fb.com>
* minor copyedit
2018-02-15 17:38:55 -08:00
Thibault FEVRY
e39e86f119
Remove deprecated references to volatile ( #5193 )
2018-02-12 21:08:27 +01:00
Peter Goldsborough
65353f1342
Remove volatile section from autograd notes
2018-02-01 00:26:36 +01:00
Tongzhou Wang
6420c6b224
Improve torch.cuda.empty_cache documentation ( #4879 )
...
* add doc about empty_cache wont increase amount of memory available
* typo
2018-01-27 04:54:25 -05:00
Yongjik Kim
dd5c195646
More documentation for CUDA stream functions. ( #4756 )
2018-01-21 12:58:51 +01:00
Tongzhou Wang
5918243b0c
Methods for checking CUDA memory usage ( #4511 )
...
* gpu mem allocated
* add test
* addressed some of @apaszke 's comments
* cache stats
* add more comments about test
2018-01-09 11:47:48 -05:00
SsnL
bb1b826cdc
Exposing emptyCache from allocator ( #3518 )
...
* Add empty_cache binding
* cuda.empty_cache document
* update docs
2017-11-07 17:00:38 -05:00
Kaixhin
5de7f9e731
Tidy up CUDA notes
2017-11-05 14:42:06 +01:00
Kai Arulkumaran
a7c5be1d45
Document CUDA best practices ( #3227 )
2017-10-25 22:38:17 +02:00
Sang-gil Lee
42448cf07f
Fix to make the sample code executable as-is in "Extending PyTorch" ( #2621 )
2017-09-05 10:19:49 -04:00
Gabriel Bianconi
cdae579c22
Fix typos in "Extending PyTorch" ( #2558 )
2017-08-29 09:39:29 -04:00
Soumith Chintala
b079469af0
self -> ctx in Extending note
2017-08-25 07:19:20 -04:00
Adam Paszke
4599c0c7df
Update autograd notes ( #2295 )
2017-08-05 05:18:05 +05:30
ngimel
66bbe5d75a
.creator -> .grad_fn in the code example ( #2171 )
2017-07-21 14:43:16 -04:00
brett koonce
16dd997239
Spelling tweaks for documentation ( #2114 )
2017-07-15 13:16:32 -07:00
yunjey
52a9367fa7
Fix minor typo ( #2100 )
...
Fixed minor typo in Autograd mechanics docs.
2017-07-14 10:20:13 -04:00
Hungryof
73128f7b08
fix minor typos ( #2051 )
...
* Update extending.rst
fix typo
* Update cuda.rst
fix typo
2017-07-11 11:01:41 -04:00
Soumith Chintala
ee1b7b50b3
fix docs for broadcast warning
2017-06-26 14:50:57 -04:00
Sam Gross
9c53c6dcb9
Fix errors and warnings when building docs ( #1806 )
2017-06-14 13:50:14 -04:00
Gregory Chanan
1ef4cc1591
Incorporate review comments:
...
1) Line up trailing dimensions in broadcast docs.
2) remove unnecessary expand_as in common_nn test.
3) use view in tensor_str instead of resize_.
4) newExpand remove raiseErrors change.
5) clarify expandedSizes/expandedStrides parameters in inferExpandGeometry.
6) simplify inferSize2/inferSizeN implementations.
7) use new-style classes for warning.
2017-06-11 05:37:59 -04:00
Gregory Chanan
deec86cc05
Clarify a number of comments.
2017-06-11 05:37:59 -04:00
Gregory Chanan
5e1a714386
Add backwards incompatibility docs.
2017-06-11 05:37:59 -04:00
Gregory Chanan
cd35091d9b
Include simple broadcasting example and demonstrate lining up trailing dimensions.
2017-06-11 05:37:59 -04:00
Gregory Chanan
471dfe9791
Add documentation including links to numpy broadcasting semantics.
2017-06-11 05:37:59 -04:00
Bubble
2ce5875a4d
Modify the sample code of extending autograd ( #1720 )
...
The original input can not be used as input of Linear(), because forward() takes at least 3 arguments (2 given)
2017-06-05 23:36:58 -04:00
Bubble
447fe953e5
Modify the sample code of volatile ( #1694 )
...
The original two inputs (torch.randn(5,5)) can not be used as input of resnet, which must be (batch, channels, width, height)
2017-06-01 09:46:04 -04:00
Edward Z. Yang
2f4bf4ab39
Rewrite 'How autograd encodes the history' to accurately describe current setup. ( #1580 )
...
Signed-off-by: Edward Z. Yang <ezyang@fb.com>
2017-05-17 19:21:20 -04:00
Soumith Chintala
aa506fa4d7
fix docs typo
2017-04-05 23:42:02 -04:00
Du Phan
86e40ed875
Fix a typo in docs about pinned memory buffers ( #1023 )
...
* remove misleading guide for BCELoss
* fix docs about pinned memory buffers
2017-03-17 05:08:03 -04:00
Jonathan Tremblay
9004652c7b
updated the documentation to remove the unnecessary copy grads when using multiprocessing
2017-03-13 19:04:17 -04:00
Alexis David Jacq
2b1cd919ce
Update extending.rst ( #933 )
2017-03-06 23:23:14 -05:00
Li Dong
761d6799be
code syntax error in document (serialization.rst) ( #937 )
2017-03-06 10:06:04 -05:00
Yiran Mao
7d58765cee
docs: Fixed example code bug in extending module doc.
2017-03-05 12:09:08 -05:00
Eli Stevens
88275da5e8
CUDA documentation tweaks ( #858 )
2017-02-26 20:37:43 +01:00
Eli Stevens
b87c113cf4
CUDA documentation enhancement and docs versioning ( #848 )
...
* Add more detail to CUDA documentation
Also adds better cross-linking to the pages that discuss relevant topics.
* Adds recommendation to torch.save docs
* Make the version numbers for the docs dynamic
Might need tweaks for beta, 1.0, etc.
2017-02-26 08:33:26 -05:00
Alfredo Canziani
ec4602a973
Fix bad code alignment ( #612 )
...
forward *is* a method of the Linear class
2017-01-27 20:16:49 +01:00
Alfredo Canziani
a38749d15f
Fix cuda notes
...
Target GPU *is* consisten with source GPU
2017-01-27 19:30:49 +01:00
Sheng Zhang
c28575a4eb
Fix typo in documentation for autograd
2017-01-20 21:59:33 +01:00
Adam Paszke
4cc11066b2
Add torch.utils.data docs and improve notes ( #460 )
...
* Add torch.utils.data docs and improve notes
2017-01-17 14:51:05 -05:00
Adam Paszke
15c1dad340
Minor fixes and torch.cuda docs
2017-01-16 20:38:14 -05:00
Adam Paszke
7ced682ff5
Add notes
2017-01-16 20:38:14 -05:00