[Numpy-discussion] Announcing Theano 0.7

2015-03-27 Thread Pascal Lamblin
no mailing-lists ( http://deeplearning.net/software/theano/#community ) -- Pascal ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

[Numpy-discussion] Announcing Theano 0.5

2012-02-23 Thread Pascal Lamblin
Sebastian Urban) * Faster dot() call: New/Better direct call to cpu and gpu ger, gemv, gemm and dot(vector, vector). (James, Frédéric, Pascal) * C implementation of Alloc. (James, Pascal) * theano.grad() now also work with sparse variable. (Arnaud) * Macro to implement the Jacobian/Hessian with

Re: [Numpy-discussion] Upgrade to 1.6.x: frompyfunc() ufunc casting issue

2012-01-20 Thread Pascal Lamblin
ems like "accumulate" infers that 'l' is the required output dtype, but does not have the appropriate implementation: >>> uadd.types ['OO->O'] Forcing the output dtype to be 'object' (the only supported dtype) seems to do the trick. Hope this helps, -- Pascal ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] Any idea to run the dot-product on many arrays

2011-01-13 Thread Pascal
wo transpose. It's even possible to apply a symmetry operation to a bunch of second rank tensors in one go. Pascal ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] speed of numpy.ndarray compared to Numeric.array

2011-01-10 Thread Pascal
0.3]) big=numpy.random.randn(100, 3) big=numpy.add(big,-ref) distsquared=numpy.sum(big**2, axis=1) Pascal ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] Fourier transform

2010-03-30 Thread Pascal
Le Mon, 29 Mar 2010 16:12:56 -0600, Charles R Harris a écrit : > On Mon, Mar 29, 2010 at 3:00 PM, Pascal wrote: > > > Hi, > > > > Does anyone have an idea how fft functions are implemented? Is it > > pure python? based on BLAS/LAPACK? or is it using fftw? > &g

[Numpy-discussion] Fourier transform

2010-03-29 Thread Pascal
\sum_l^O-1 f_{hkl} \exp(-2\pi \i (hx/N+ky/M+lz/O)) So for the plane, z is no longer independant. I need to solve the system: ax+by+cz+d=0 r(x, y, z)=\sum_h^N-1 \sum_k^M-1 \sum_l^O-1 f_{hkl} \exp(-2\pi \i (hx/N+ky/M+lz/O)) Do you think it's possible to use numpy.fft for this? Regards, P