I have a Windows 11 Pro laptop, and I use WSL and Docker images to run Tensorflow. Lately, I notice CUDA related error messages when I do just “import tensorflow as tf”. But the program seems to still work okay.
My Windows, WSL, and Docker are up to date. I issue the following command in WSL to run TF in Jupyter notebook:
docker run -it --rm -p 8888:8888 --gpus all tensorflow/tensorflow:latest-gpu-jupyter
I received 3 error messages when I just ran “import tensorflow as tf” in the Jupyter notebook. They are related to unable to register CuFFT, CuDNN, and CuBLAS because they are already registered.
What do I do to get rid of these error messages? The following is a screenshot from the Jupyter notebook.