-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problems using breze with GPU #40
Comments
additional to your fix i needed to add its now working! |
Can someone please add a summary of this as a comment on top of this code? On 25 April 2014 12:57, makarl [email protected] wrote:
Dipl. Inf. Justin Bayer |
I just added a merge request, don't know how to connect it to this conversation |
please do not merge it right now, I want to make some tests to be really sure everything works fine |
Is #42 fixing this? |
It's now working for my network, but it's extremely slow, like ten times compared to the CPU version. |
when using breze with theano using the GPU the program crashes in
breze.arch.util.Model._unify_exprs(self, exprs)
with the errorraise ValueError("length not known")
this happens because
exprs
is not of the typetheano.tensor.basic.TensorVariable
but of the typetheano.sandbox.cuda.var.CudaNdarrayVariable
._unify_exprs
then tries to iterate troughexprs
, which results in raising theraise ValueError("length not known")
exceptionim using cudamat from
http://code.google.com/p/cudamat/
and gnumpy from
http://www.cs.toronto.edu/~tijmen/gnumpy.html
The text was updated successfully, but these errors were encountered: