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

github.com/torch/torch7.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-07-01fixing torch.random(a,b) for a,b >= 2^31Clement Farabet
- current implementation casts random number to int
2015-06-11Merge pull request #252 from d11/torch_rangeSoumith Chintala
Tweak torch.range to be more numerically robust.
2015-06-03Tweak torch.range to be more numerically robust.Dan Horgan
Otherwise it can produce mildly surprising behaviour, in the floating-point setting, due to rounding errors.
2015-05-29Add support for Lua 5.2Sam Gross
Includes aliases to functions deprecated in Lua 5.2, such as math.log10 and unpack, and loadstring
2015-05-19Add scatter and gather operations.Dominik Grewe
Functions to read to / write from tensors, selecting elements from each slice along the specified dimension given an index tensor.
2015-05-12Add LAPACK QR decomposition to Torch.Dan Horgan
Three functions are added: torch.geqrf() and torch.orgqr(), which call the corresponding LAPACK functions directly, and torch.qr(), which is just a convenience function that calls them both correctly and puts the results in a more intuitive form.
2015-03-23Added kthvalue and median operations, tests, docGeorg Ostrovski
2015-02-04Make bmm use baddbmm.Dominik Grewe
Just like mm uses addmm, we can write bmm in terms of baddbmm. This way the two behave the same in terms of when the output is resized. Also gets rid of unnecessary zeroing out of output of mm and mv.
2015-01-22Renamed baddmm -> addbmm; added baddbmm.Clement Farabet
- addbmm is a batch MM + reduce add - baddbmm is a batch MM + batch add
2015-01-21Add batch matrix-matrix multiplication with accumulation.Clement Farabet
- behavior is similar to torch.addmm, except that both input matrices have an additional dimension, as in torch.bmm - tests cover all use cases
2015-01-21Added alternative version of pow functionGeorg Ostrovski
2015-01-21Added element-wise power fct cpowGeorg Ostrovski
2015-01-14Add batch matrix-matrix multiplication.Dominik Grewe
Add torch.bmm, which expects two 3D tensors as inputs. A 'b x m x n' tensor is interpreted as a batch of b matrices of size 'm x n'. The result is a batch of matrices computed by multiplying the corresponding pair of matrices in the two input batches.
2014-11-07fixing small bugs in prod, cumsum, cumprodsoumith
2014-10-22Merge branch 'master' of https://github.com/torch/torch7 into clampJonathan Tompson
2014-10-22added a clamp method for tensors.Jonathan Tompson
2014-10-22Added torch.round functionGeorg Ostrovski
2014-10-17Added logical any and all (similar to numpy)Jonathan J Hunt
2014-06-13Merge pull request #42 from nicholas-leonard/masterSoumith Chintala
torch.renorm
2014-06-11Merge pull request #43 from fidlej/topic_non_float_bernoulliSoumith Chintala
Used double to hold the 'p' for bernoulli() and geometric()
2014-06-11Used double to hold the 'p' for bernoulli() and geometric() instead of 'real'.Ivo Danihelka
2014-06-11renorm only renormalizes rows with greater norms than maxnormnicholas-leonard
2014-06-11cwrapped torch.renormnicholas-leonard
2014-05-15tensor: fix squeeze(dim) behaviorRonan Collobert
2014-05-09Merge pull request #39 from d11/fix_numel_cwrapRonan Collobert
Fix numel() cwrap return type
2014-05-09Fix numel() return typeDan Horgan
Should always be long; it was being incorrectly cast to the element type of the tensor. Also added test for nElement and numel.
2014-03-20merged THGenerator with multinomialNicholas Leonard
2014-03-20Merge pull request #13 from timharley/thgeneratorRonan Collobert
Make random number generator state a TH type
2014-03-07removed debugging code. added unit testsNicholas Leonard
2014-03-06Reorder arguments to Tensor functions.Tim Harley
2014-03-06multinomial with replacementNicholas Leonard
2014-03-04Implement method abs() for LongTensor and IntTensorSergio Gomez
2014-02-28Torch tests now pass! Allow all random functions to use the default ↵Tim Harley
generator if one isn't supplied when calling the function.
2014-02-28Miraculously bulds. Very unhappy when you try to run it.Tim Harley
2014-02-28Starting point for wrapping the mersenne state in a Lua object.Tim Harley
2014-02-14fix dependency issues related to the new cwrap standalone packageRonan Collobert
2013-08-15Added wrappers for Lapack functions: porti, ports, portf.Clement Farabet
These are for positive symmetric matrices (inverse, solve and factorize).
2013-06-14Added a new torch.match() function.Clement Farabet
That function allows matching batches of vectors with batches of kernels. It's general enough that I thought it would be a nice addition to the base module.
2013-05-10Added logical operators that return non-ByteTensorsAndreas Fidjeland
The existing equality operators always return ByteTensors. Often the return values from an equality operation needs to be used with a tensor of the original type (e.g. point-wise multiplication with a mask), and the ByteTensor therefore has to be cast back to this type. This casting is unneccessary, and for CudaTensors would be costly, as it involves a round-trip to the host. This commit adds new forms of the equality operators that directly writes the result into a tensor of the approriate type. For example x = torch.DoubleTensor(5) y = torch.rand(5) x:lt(y,0.5) The existing ByteTensor-returning forms are still present.
2012-10-22max/min/sort: no need to increment optional IndexTensorRonan Collobert
2012-09-12Merge branch 'master' into noidRonan Collobert
Conflicts: extra/cuda/pkg/cutorch/TensorMath.lua
2012-09-04Random with Cuda.Clement Farabet
2012-08-13torch now complies with the new luaT APIRonan Collobert
2012-05-06corrected bug in abs computation of numbers using torch.abs.koray kavukcuoglu
2012-05-03add documentation for general eigen values and rename the functionskoray kavukcuoglu
eig->symeig since this is only for symmetric matrices reig->eig since this solves all cases.
2012-05-03Add non-sym eigen value computation.koray kavukcuoglu
2012-03-07bug correction: consider accreal in torch pkgRonan Collobert
2012-03-07normall/norm in TH + ported those to torch pkgRonan Collobert
2012-02-26add atan2koray kavukcuoglu
2012-02-21take beack tensor conv stuff, it is not ready yetkoray kavukcuoglu