-
Notifications
You must be signed in to change notification settings - Fork 26
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
Installing flowdec[gpu] on Windows10 causes "Win10: ImportError: DLL load failed: The specified module could not be found" #14
Comments
@eczech as of today, 22 april 2020 this below is what worked for me. cheers Here's what worked for me today as copied out of my test script: things were installed in this order and the script works and used the GPU#cuda toolkit 10.0 |
Hey @bryantChhun, we haven't tested anything on TF 2.x and the version bound was set at > 1.x a while back before that release so I'm not surprised it doesn't work. I'll fix that at some point but definitely try with TF 1.14.x instead. |
I had some trouble in windows only. The linux machines are fine by calling pip install with flowdec[tf_gpu] For windows, I needed to install the specific version of tensorflow-gpu and then flowdec[tf_gpu] with pip first, then remove tensorflow from the pip installation, then install tensorflow-gpu (my case 10.1) with anaconda. |
Thanks @joaomamede. At some point we should probably update the docs to mention that it isn't worth using the pip install for this beyond experimentation since none of the MKL/BLAS/ATLAS extensions are likely to be configured correctly without a conda install anyhow. |
Hi @eric-czech |
Hi @pawlowac, conda is preferable. E.g. |
installing both tensorflow and flowdec through the pip install instructions results in the above problem.
This is a tensorflow problem and can be solved by rolling back the CUDA install to v9.0, and getting the appropriate cudnn. See here: tensorflow/tensorflow#22794
installing the proper cudnn into CUDA v10 works as well .. so far
The text was updated successfully, but these errors were encountered: