I wanted to use tf with gpu in Jupyter Notebook, but tensorflow don’t detect GPU. I installed compatible version according to this page 从源代码构建 | TensorFlow
Everything seems fine
but when i check if TF using CUDA it returns False
I have GTX 1050 and Windows 10 on my laptop. I reinstalled everything, but it is still dont work. Could you tell me please, what is the problem and how can I solve it?
@Lethnis,
Welcome to the Tensorflow Forum,
GPU support on native-Windows is only available for 2.10 or earlier versions, starting in TF 2.11, CUDA build is not supported for Windows. For using TensorFlow GPU on Windows, you will need to build/install TensorFlow in WSL2 or use tensorflow-cpu with TensorFlow-DirectML-Plugin.
For more details please refer to Build from source on Windows | TensorFlow
Thank you!