Re: [theano-users] Error when running theano.test()

2016-09-29 Thread Jason Shi
Does this mean I have to reinstall theano and all its dependencies for the 64-bit version of Python? On Thu, Sep 29, 2016 at 6:13 PM, Pascal Lamblin wrote: > You seem to have a 32-bit version of Python, but I think recent versions > of CUDA only support 64-bit

Re: [theano-users] Error when running theano.test()

2016-09-29 Thread Pascal Lamblin
On Thu, Sep 29, 2016, Jason Shi wrote: > Does this mean I have to reinstall theano and all its dependencies for the > 64-bit version of Python? Yes. > > On Thu, Sep 29, 2016 at 6:13 PM, Pascal Lamblin > wrote: > > > You seem to have a 32-bit version of Python, but I

Re: [theano-users] Error when running theano.test()

2016-09-29 Thread Pascal Lamblin
You seem to have a 32-bit version of Python, but I think recent versions of CUDA only support 64-bit executables for GPU. Can you try with a 64-bit python? On Thu, Sep 22, 2016, Jason Shi wrote: > Hi, > > This is my error message: > > > 1 #define _CUDA_NDARRAY_C > 2 > 3 #include > 4

Re: [theano-users] Error when running theano.test()

2016-09-22 Thread Jason Shi
Hi, This is my error message: 1 #define _CUDA_NDARRAY_C 2 3 #include 4 #include 5 #include "theano_mod_helper.h" 6 7 #include 8 #include 9 10 #include "cuda_ndarray.cuh" 11 12 #ifndef CNMEM_DLLEXPORT 13 #define CNMEM_DLLEXPORT 14 #endif 15 ... 5358 // vim:

Re: [theano-users] Error when running theano.test()

2016-09-22 Thread Pascal Lamblin
Hi, Please report the full error. You can use nosetests to only run one test to avoid having to wait for the end of execution to have the complete output. On Wed, Sep 21, 2016, Jason Shi wrote: > I just installed theano and I ran theano.test() to check to see if it was > installed correctly.