- 01 2月, 2012 19 次提交
-
-
由 nouiz 提交于
dtype for different Tensor CAReduce operations
-
由 nouiz 提交于
Ops:GetItem2D&GetItemScalar to return a subtensor/scalar from a sparse m...
-
由 Li Yao 提交于
-
由 lamblin 提交于
gpu accelerated tensordot by conversion to matrix product
-
由 Li Yao 提交于
-
由 Li Yao 提交于
Ops:GetItem2D&GetItemScalar to return a subtensor/scalar from a sparse matrix tested. grad() not implemented because too complicated for now
-
由 nouiz 提交于
Allow data for sparse matrices to be broadcastable
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
A problem occurred when the data (and indices) were constant vectors of length one, since they had a broadcastable pattern of (True,), not (False,) as was expected. That happened in the buildbot in debug mode with seed 24856.
-
由 nouiz 提交于
Tests for tile (and some fixes besides)
-
由 David Warde-Farley 提交于
-
由 David Warde-Farley 提交于
-
由 David Warde-Farley 提交于
-
由 David Warde-Farley 提交于
-
由 David Warde-Farley 提交于
-
由 David Warde-Farley 提交于
TileGrad implements only one very narrow special case, and it implements it wrongly. Raise NotImplementedError instead of using this botched implementation.
-
由 David Warde-Farley 提交于
Raise a proper error when reps is not a constant (since a tensor value is not supported by this implementation, as it is) and also force x.ndim == len(reps), since bad things happen if it's not the case.
-
由 nouiz 提交于
Hide warnings for a past bug in the buildbot
-
由 Pascal Lamblin 提交于
-
- 31 1月, 2012 10 次提交
-
-
由 Pascal Lamblin 提交于
-
由 lamblin 提交于
Fix subtensor crash
-
由 Frederic 提交于
Fix runtime crash with the local_subtensor_of_alloc optimization when the input have a broadcastable dimensions.
-
由 Frederic 提交于
-
由 Frederic 提交于
-
由 nouiz 提交于
Edit NEWS.txt
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
-
由 lamblin 提交于
Doc op
-
- 28 1月, 2012 11 次提交
-
-
由 Frederic 提交于
-
由 Frederic 提交于
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
Also add ".prod()" method to tensor variables.
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
This enables specifying the dtype in which the internal summation should be done, like in Numpy.
-
由 Pascal Lamblin 提交于
Also add a tests for one specific case. The usual cases should be tested by the regular tests, since the sum nodes' dtype are no longer allowed to be None.
-
由 Pascal Lamblin 提交于
Update existing test to check that a TypeError is raised if an inappropriate output dtype is specified in sum().
-
由 Pascal Lamblin 提交于
It's easier to understand the doc if we have explicit kw args.
-
由 Pascal Lamblin 提交于
If the output dtype would force a downcasting of the values (for instance, summing a float vector into an integer), a TypeError is now raised. Also, a Sum node has to have a non-None dtype. It is checked in make_node because for some reason the pretty-printing mechanism needs to instanciate "Sum()".
-
由 Frederic 提交于
-