summaryrefslogtreecommitdiff
path: root/torch/autograd
AgeCommit message (Expand)AuthorFilesLines
2019-04-02Fix flake8 issues in gragrad testIgor Fedan1-2/+1
2019-04-01More type stubs (#18511)Jon Malmaud2-0/+66
2019-04-01Fix for double backwards tests (#18190)Igor Fedan1-3/+21
2019-03-30Turn on F401: Unused import warning. (#18598)Edward Yang5-13/+6
2019-03-27Upgrade flake8-bugbear to master, fix the new lints. (#18507)Edward Yang1-2/+2
2019-03-21Fix B903 lint: save memory for data classes with slots/namedtuple (#18184)Edward Yang1-6/+2
2019-03-21Fix B902 lint error: invalid first argument. (#18181)Edward Yang1-1/+1
2019-03-13Update docs for `mark_non_differentiable` method (#17891)serhii-havrylov1-1/+2
2019-01-22Return namedtuples from torch.* function with multiple return arguments for C...Xiang Gao1-2/+2
2018-12-15Mention Jacobian-vector product in the doc of torch.autograd (#15197)Xiang Gao1-14/+18
2018-12-06gradcheck (#14596)Wei Yang1-22/+73
2018-11-16Allow cooperative structured objects to be passed modules in tracing (#13961)Thomas Viehmann1-2/+14
2018-11-04fix handling of single input in gradcheck (#13543)albanD1-13/+16
2018-10-16Various example code fixes (#12707)Thomas Viehmann1-1/+1
2018-09-20Implementing Matrix Norm for torch.norm (#11261)yya0071-2/+2
2018-09-19Improve autograd profiler performance (#11773)Adam Paszke1-15/+2
2018-09-14Augment emit_nvtx to help connect backward-pass Function apply calls with the...Michael Carilli1-0/+45
2018-09-13migrating deprecated calls without abc module for containers (#11515)Jeff Smith1-4/+4
2018-09-11fix nested no_grad decorator and with-statement (#11479)Wei Yang1-8/+2
2018-09-02Document torch.allclose (#11185)vishwakftw1-21/+3
2018-08-29Make profiler.build_table() O(n) rather than O(n^2) (#10969)Richard Zou1-4/+4
2018-07-13Fix segmentation fault in grad_fn (#9292)Vishwak Srinivasan1-4/+4
2018-07-08Update extension docs, fix Fold/Unfold docs (#9239)Tongzhou Wang1-7/+7
2018-07-05Fix TestAutograd.test_pinverse not actually testing (#9192)Tongzhou Wang1-6/+13
2018-06-25Fix as_strided_backward (#8721)Tongzhou Wang1-7/+25
2018-06-20Add a warning in gradcheck if inputs precision < float64 (#8663)Vishwak Srinivasan1-0/+7
2018-06-11Add autograd automatic anomaly detection (#7677)albanD2-0/+100
2018-06-07Fix: gradcheck forced float32 (#8230)Bhushan Sonawane1-1/+1
2018-06-06Docs for gradcheck and gradgradcheck; expose gradgradcheck (#8166)Tongzhou Wang2-28/+49
2018-06-01Fix profiler crash when no events register (#8034)Ryan Brigden1-1/+4
2018-05-23Call grad_mode.py context managers as decorators (#7737)jvmancuso1-2/+35
2018-05-23[PyTorch] [gradcheck] change backward() to grad() (#7710)Tongzhou Wang1-52/+43
2018-05-12Add FileNotFoundError to torch._six (#7524)Maxim Berman1-6/+1
2018-04-25Fix typo in set_grad_enabled description (#6931)Sang-gil Lee1-1/+1
2018-04-17Codemod to update our codebase to 0.4 standard (#6641)Tongzhou Wang4-60/+59
2018-04-17always compute gradients for the gradcheck inputs (#6654)albanD1-1/+8
2018-04-12Restore allow_unused functionality (#6553)Tongzhou Wang1-7/+11
2018-04-10[fft] [3 of 3] Implements backward of fft ifft rfft irfft (#5537)Tongzhou Wang1-7/+9
2018-04-10[Re-checkpointing] Autograd container for trading compute for memory (#6467)Priya Goyal1-0/+18
2018-04-07Fix typos in docs (#6389)Kento NOZAWA1-2/+2
2018-04-04[pytorch] minor fixes around binary builds (#6291)Soumith Chintala1-1/+1
2018-04-03Make the tensor type torch.Tensor instead of torch.autograd.Variable (#5785)Sam Gross1-391/+6
2018-04-02added word object to function doc string for clarity (#6204)Robert (Bobby) Wagner1-1/+1
2018-03-30Update autograd docs (#5907)Richard Zou4-50/+50
2018-03-26Deprecate ctx.saved_variables via python warning. (#5923)Richard Zou1-2/+2
2018-03-17Fix nvprof parsing (#5840)li-roy1-1/+1
2018-03-15Revert "introduce size_as_tensor and resize_from_tensor" (#5818)Edward Z. Yang1-18/+0
2018-03-15introduce size_as_tensor and resize_from_tensor (#5792)anderspapitto1-0/+18
2018-03-10support non-Variable arguments to functions in symbolic overrides (#5645)anderspapitto1-3/+5
2018-03-09Add set_grad_enabled as context manager and function (#5555)Thomas Viehmann2-5/+48