Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-02-03Support index parameters with Cuda*Tensor.Gregory Chanan
These modules check the type explicitly for CudaTensor rather than the regular expression. There are other modules that have this identical check, but do operations on the resulting type which may or may not be support (i.e. require more checking), so I didn't change them. These should be safe because the index type is independent of the type being checking.
2016-10-02More broken compatibility with cutorch 1.0Martin Simonovsky
More broken compatibility with cutorch 1.0
2016-08-17fixing nn.Normalize for new cutorch typessoumith
2016-03-23Reuse same state tensors on forward/backwardFrancisco Massa
2016-02-09nn.clearStateSergey Zagoruyko
2015-12-24Remove bmm and baddbmm from Normalize, because they allocate memory, causing ↵Adam Lerer
sync on CUDA.
2015-11-16Normalize supports infinity (maximum) normFrancisco Massa
2015-10-24Fix possible division by zero in NormalizeFrancisco Massa
When p < 2, if the input is 0 there was division by zero. Add a small dampening factor to avoid this. Also, small optimizations for different p.
2015-10-20Fix modification of output in nn.NormalizeAdria Puigdomenech
2015-10-20Revert "Fix modification of output in nn.Normalize"Soumith Chintala
2015-10-16Fix modification of output in nn.NormalizeAdria Puigdomenech
2015-10-11Speedup and reduce memory usage in NormalizeFrancisco Massa
It's almost 40x faster on CPU, and doesn't use extra memory. Should be faster on GPU as well
2015-09-13Adds NormalizeFrancisco Massa