-
Notifications
You must be signed in to change notification settings - Fork 24
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
Issues with forward evaluation of conv1x1 on GPU with CUDA 4 #73
Comments
For the first one |
I can seem to be able to replicate either issue with CUDA 4 on my desktop. which version exactly leads to this error? |
I also get a slightly different error with a fresh instalation:
Current versions are:
|
What's your CUDA version? |
|
Hum really weird |
What's the CUDA version inside the InvertibleNetworks? I.e |
I posted this information here but below is the outcome for a fresh installation (from
Same error as above:
|
I run into errors when evaluating the GLOW network (more percisely conv1x1 layer) on GPU (e.g., when running this line).
The error originates in https://github.com/slimgroup/InvertibleNetworks.jl/blob/master/src/utils/compute_utils.jl#L20. Specifically, this line raises
ERROR: DivideError: integer division error
(can be circuvmented by replacingnorm(v)
withsum(v.^2)
) and this line raisesCUBLASError: an invalid value was used as an argument (code 7, CUBLAS_STATUS_INVALID_VALUE)
, which I was unable to fix.This issue does not exists when using [email protected] (possible any version before 4? not sure.)
The text was updated successfully, but these errors were encountered: