-
Notifications
You must be signed in to change notification settings - Fork 16
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
Blas SGEMM launch failed when predicting with GPU #4
Comments
Could you try the stackoverflow post below by adding the config.gpu_options? One of the comments here (qqwweee/keras-yolo3#332 (comment)) mentioned that he was able to run tensorflow fine on his 1080 ti, but the 2080 ti gives the same error you received. It seems to do something with cuda version. What version of cudnn are you using? Edit: This may also be useful. Could you try adding those lines and checking your cuda/cudnn versions? tensorflow/tensorflow#25403 (comment) |
Hi, I tried setting the tensorflow config to allow growth and only use 0.9 percent of the available memory but that did not help. However, some of the comments seemed to indicate that a newer tensorflow version is required (which supports more recent cuda/cudnn versions). I am using conda as a package manager and I originally installed tensorflow=1.9 as per your readme. After deinstalling tensorflow and installing
the above error went away. |
Sorted out the other issue (see #5) and can now confirm that upgrading tensorflow-gpu to 1.12 fixed the |
Thanks for figuring this out. I had only done testing on tensorflow-gpu 1.9, which had worked fine on our 1080 ti. I will see if tensorflow-gpu 1.12 works well with our 1080 ti. If this is the case, I will update the README to be 1.12. |
I have succesfully used a RTX 2080Ti with tensorflow-GPU=2.1. You just need t o correctly align nvidia driver, CUDA version, cdDNN version and supported tensorflow verison. |
Hi,
I manage to successfully predict the test dataset when using tensorflow for CPU, although it is very slow.
When I try running with tensorflow-gpu=1.9 I run into the following error:
I googled some of the error messages and some stackoverflow post suggested this may have to do with lack o video memory. However, the 2080Ti card should have the same amount of video memory as the 1080Ti that you mention in the paper. There is some video memory used for the desktop, but not much.
Do you have any suggestions ?
The text was updated successfully, but these errors were encountered: