summaryrefslogtreecommitdiff
path: root/torch/autograd/variable.py
AgeCommit message (Expand)AuthorFilesLines
2019-03-21Fix B902 lint error: invalid first argument. (#18181)Edward Yang1-1/+1
2018-04-03Make the tensor type torch.Tensor instead of torch.autograd.Variable (#5785)Sam Gross1-391/+6
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-08[ready] torch.* doc update for Variable/Tensor merge, and other improvements ...Tongzhou Wang1-4/+8
2018-03-07Add per-element unique op for CPU (#5503)theweiho1-0/+12
2018-03-02Remove some uses of torch.is_tensor in favor of isinstance (#5473)Sam Gross1-5/+0
2018-02-23Merge Variable and Tensor classes (#5225)Sam Gross1-38/+43
2018-02-21Improve sparse variable printing. (#5335)gchanan1-11/+15
2018-02-17Tweak 'detach' docstring. (#5292)Jon Malmaud1-2/+2
2018-01-29Deprecate out-of-place resize and resize_as on Variables. (#4886)gchanan1-0/+2
2018-01-29Move repeat autograd to C++. (#4885)gchanan1-8/+0
2018-01-25Fix deepcopy with scalars. (#4854)gchanan1-1/+2
2018-01-17Bind functions with out= arguments in VariableType (#4565)Sam Gross1-14/+4
2018-01-17Replace PowConstant (#4711)Sam Gross1-1/+1
2018-01-16Add printing support for sparse variables (#4683)Richard Zou1-1/+7
2018-01-12Introduce a (non-public) autograd scalar method and improve printing (#4586)gchanan1-1/+19
2018-01-03Move prod, cumprod backwards to C++ (#4394)gchanan1-6/+0
2017-12-24allow optional int tensorSsnL1-0/+12
2017-12-18Replace Variable.volatile with torch.no_grad() (#3970)Sam Gross1-17/+8
2017-12-18Add python only default init expression; Implement stft, hann/hamming/bartlet...Tongzhou Wang1-6/+0
2017-12-18Implement Variable.cuda and Variable.type using ATen (#4139)Sam Gross1-8/+0
2017-12-13Implement remaining random methods through ATen (#4137)Sam Gross1-13/+2
2017-12-06Implement Variable.from_numpy (#4043)Sam Gross1-0/+16
2017-12-05Move renorm to C++ and expose cumsum (#4013)Sam Gross1-11/+0
2017-12-04Add is_pinned, is_shared, and share_memory_ to Variable (#4015)Sam Gross1-0/+20
2017-12-02Implement distributions.Gamma (#3841)Fritz Obermeyer1-1/+0
2017-11-29Implement matmul as a native function; use it for Variable impl (#3943)gchanan1-8/+0
2017-11-28Implement python scalar conversions via ATen; allow localScalar if numel == 1...gchanan1-18/+0
2017-11-27Use ATen version of Variable type_as. (#3840)gchanan1-8/+4
2017-11-22Implement Variable cpu() as an ATen method. (#3802)gchanan1-3/+0
2017-11-21Implement indexing in ATen (#3725)Sam Gross1-23/+0
2017-11-20Move Variable conversion methods to ATen. (#3762)gchanan1-24/+0
2017-11-20Clean up stochastic function related dead code (#3782)Adam Paszke1-3/+7
2017-11-18Rename pyro.distributions.Multinomial -> .Categorical (#3766)Fritz Obermeyer1-2/+3
2017-11-17Implement remaining Variable fallthrough methods via ATen (#3744)gchanan1-16/+1
2017-11-17Implement clamp using ATen (#3739)Sam Gross1-11/+0
2017-11-15Use ATen equivalents for variable element_size and nelement. (#3724)gchanan1-2/+0
2017-11-15Move Variable.var and Variable.std to ATen (#3704)Sam Gross1-20/+0
2017-11-14Use ATen for Variable.contiguous() (#3701)Sam Gross1-4/+0
2017-11-14Use ATen implementations for is_contiguous, is_set_to, numel, get_device.Gregory Chanan1-4/+0
2017-11-12Solved boolean ambiguity for variables and tensors which contain one value. (...Vladislav Zavadskyy1-4/+5
2017-11-09Raise exception when Variable.reinforce is called (#3555)Sam Gross1-14/+24
2017-11-09doc: Normalize all true/false in docstrings to ``True|False`` (#3593)Ozan Çağlayan1-3/+3
2017-11-06Allow in-place operations on views (#3384)Sam Gross1-18/+14
2017-11-06implement `__dir__`for Variable (#3501)陈云1-0/+6
2017-11-02Move select and permute to ATen/C++ (#3421)Sam Gross1-8/+0
2017-10-31Allow casting Variables onto Python scalarsFilip Binkiewicz1-0/+9
2017-10-30Dispatch trivial variable operators to C++ aten functions. (#3372)gchanan1-43/+8
2017-10-27Re-enable and fix most JIT testsAdam Paszke1-13/+5