Choongwoo Han
fae6c67121
Configurable flushing denormal numbers on CPU ( #5294 )
...
* Configurable flushing denormal numbers on CPU
* Formatting
* Update docs
* Minor doc changes
2018-02-19 19:23:43 -05:00
Yimeng Zhang
da79697d45
make explicit about keyword-onlyness of out ( #5165 )
...
* make explicit about keyword-onlyness of `out`
fix issue 2 of https://github.com/pytorch/pytorch/issues/5156#issuecomment-364521510
2018-02-13 09:55:36 -08:00
Kevin Zakka
6dc41f9e63
fixed doc for cholesky potrs ( #5180 )
2018-02-11 20:23:10 -05:00
Tongzhou Wang
47ee86776e
Fix CPU torch.multinomial with noncontiguous prob tensor ( #5093 )
...
* fix CPU torch.multinomial not working on noncontiguous probability distn'
* address comments
* change some tabs to spaces in THStorage.c
2018-02-06 22:11:43 -05:00
Vishwak Srinivasan
e519ef5337
Adding torch.expm1() and its inplace function ( #4350 )
2017-12-28 18:56:03 +09:00
yongjik
15163a3273
Improved documentation of several index operations.
2017-12-26 06:08:44 +08:00
SsnL
658d4c7ea8
allow optional int tensor
2017-12-24 03:08:28 +08:00
Tongzhou Wang
d8b2e5d091
Add python only default init expression; Implement stft, hann/hamming/bartlett window. ( #4095 )
...
* implement stft
* addressed comments; implemented window functions; added support for python only default initialization
2017-12-18 12:28:23 -05:00
Richard Zou
9394e65b44
Add proper shape checking to torch.cat ( #4087 )
...
* Fix catArray in THTensor
Asserts that the inputs have the same size except in the
cat dimension or are empty (or a mix of both).
* Fix catArray for THCTensor
* Document torch.cat shape checks
* Fix types
2017-12-18 02:05:58 -05:00
Tongzhou Wang
fc8ad6fde6
improve svd doc ( #4155 )
2017-12-15 12:57:14 -05:00
Sam Gross
d76f7a806d
Fix potrf gradient and enable gradchecks ( #3861 )
2017-12-04 16:50:41 -05:00
Tongzhou Wang
932e484029
fix doc change lint; ( #3974 )
2017-12-01 17:24:30 -05:00
Tongzhou Wang
fe12ac57a4
Improve docs for torch and torch.Tensor ( #3969 )
...
* doc overhaul
* update split doc
2017-12-01 14:56:48 -05:00
Tongzhou Wang
c681b03d37
Add determinant function on variable; Add backward on svd ( #3816 )
...
* determinant on variable
* svd bwd
2017-12-01 13:22:46 -05:00
Tzu-Wei Huang
80c8635a7e
fix math notation ( #3962 )
2017-12-01 10:15:10 -05:00
Richard Zou
2b5a38b1a8
Add missing trtrs, orgqr, ormqr docs ( #3720 )
...
* trtrs docs
* orgqr and ormqr docs
2017-11-15 15:37:34 -05:00
Ozan Çağlayan
dd6d04ddf2
doc: Normalize all true/false in docstrings to `True|False` ( #3593 )
...
* doc: Normalize all true/false in docstrings to ``True|False``
This makes them more apparent in the documentation.
* doc: fix flake8
2017-11-09 08:12:29 -05:00
Dhanton
74d1bb54e6
Add single argument version of torch.arange ( #3494 )
2017-11-06 12:26:04 -05:00
Sam Gross
7c0b16c140
Add torch.take and Tensor.put_ ( #3263 )
...
* Add torch.take and Tensor.put_
These are similar to numpy.take and numpy.put. The take function allows
you to linearly index into a tensor without viewing it as a 1D tensor
first. The output has the same shape as the indices. The put function
copies value into a tensor also using linear indices.
2017-11-01 06:04:44 -04:00
Gökçen Eraslan
d4a0ec62dc
Typo fix in torch.median ( #3399 )
2017-10-31 17:19:40 -04:00
IraKorshunova
2b9765ad02
Erf and erfinv ( #2799 )
2017-09-20 21:23:45 -04:00
Allen Ye
bfbd1bbb50
Update torch.triu/torch.tril doc ( #2619 )
2017-09-05 00:05:44 -04:00
Zhou Mo
2c07f88ea3
Fix typos.
2017-08-25 14:27:07 -04:00
Taehoon Lee
61e4723132
Fix typos ( #2472 )
2017-08-25 14:13:38 -04:00
Alykhan Tejani
eb58740651
add ones_like and zeros_like
2017-08-25 14:11:04 -04:00
Allen Ye
a32e98b700
Add documentation for std/var unbiased argument ( #2509 )
2017-08-22 03:45:54 -04:00
Gregory Chanan
50c208a50b
Revert "Fix typos."
...
This reverts commit 4622b33952 .
2017-08-10 13:57:00 -04:00
Zhou Mo
4622b33952
Fix typos.
2017-08-08 11:05:38 -04:00
Soumith Chintala
8983bf13f4
fix max and min docs
2017-07-13 03:03:27 -04:00
Soumith Chintala
58e4caf80f
add missing docs
2017-07-13 01:01:04 -04:00
Leonid Vlasenkov
46a868dab7
[Ready] Limit docs line length ( #1900 )
...
* some docs are ready
* docs
* docs
* fix some more
* fix some more
2017-07-10 10:24:54 -04:00
Soumith Chintala
1aaa24d99b
add medianall prototype to docs
2017-07-04 16:52:36 -04:00
Luca Antiga
05c2bafc9d
Have median reduce over all dims and return just the value when dim is not provided
2017-07-04 14:55:37 -04:00
Gregory Chanan
bb3779efe8
Add broadcasting to masked_select.
2017-06-24 09:45:21 -04:00
Brandon Amos
497db732fc
btrifact: Make pivoting optional.
2017-06-22 12:45:14 -04:00
gchanan
a64560c22e
Remove flattening for torch.dot ( #1781 )
2017-06-16 02:15:33 +02:00
Thomas Viehmann
97f50edf46
Add documentation for Cholesky lapack functions ( #1816 )
2017-06-16 02:10:56 +02:00
Sam Gross
9c53c6dcb9
Fix errors and warnings when building docs ( #1806 )
2017-06-14 13:50:14 -04:00
Gregory Chanan
7da46097fe
Fix lint errors.
2017-06-11 05:37:59 -04:00
Gregory Chanan
a36f95fe26
Add broadcast support for fused-matmul broadcasting. Functions are: addmm, addbmm, addr, addmv, baddbmm.
2017-06-11 05:37:59 -04:00
Gregory Chanan
d279c6e099
Docs for addcdiv, addcmul
2017-06-11 05:37:59 -04:00
Gregory Chanan
e96f854ce2
Implement/test broadcasting semantics for comparison ops.
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
Gregory Chanan
9087624634
Revert "Restore examples with keepdim=True default."
...
This reverts commit 6fab62173e .
2017-06-11 05:37:58 -04:00
Gregory Chanan
e772a440cb
Revert "Change keepdim default to False."
...
This reverts commit e124790cb2 .
Note the original commit message is incorrect; this changes keepdim
back to false.
2017-06-11 05:37:58 -04:00
Liang Shuailong
4eb448a051
Fix simple typo
...
Dimension a bit wrong
2017-05-28 18:53:04 +02:00
gchanan
46ee1e4687
Clarify definition of gather function in docs. ( #1652 )
2017-05-25 11:06:28 -04:00
gchanan
9a497f824b
Add size/dimensionality documentation for torch.gather. ( #1645 )
2017-05-24 20:42:18 -04:00
Kai Arulkumaran
feaee29bfe
Add argmax and argmin to docs
2017-05-20 18:56:20 +02:00
Ronny Restrepo
8aa011f52a
minor typo and style changes to _torch_docs.py ( #1559 )
2017-05-15 15:32:56 +02:00