Skip to content

[Solved] UserWarning: CUDA initialization: CUDA unknown error – this may be due to an incorrectly set up environment, e.g. changing env variable CUDA_VISIBLE_DEVICES after program start. Setting the available devices to be zero. (Triggered internally at …/c10/cuda/CUDAFunctions.cpp:109.) return torch._C._cuda_getDeviceCount() > 0

Problem

Today when I training the model on my server, I write an GPU parallel training script, and input the newest training data; but in the process of training, I got an error message about “GPU not found“. After I using torch.cuda.is_available() to check my device, I got another error message as following:

UserWarning: CUDA initialization: CUDA unknown error - this may be due to an incorrectly set up environment, e.g. changing env variable CUDA_VISIBLE_DEVICES after program start. Setting the available devices to be zero. (Triggered internally at  ../c10/cuda/CUDAFunctions.cpp:109.)
  return torch._C._cuda_getDeviceCount() > 0


according the error message show, this is an unknown CUDA error, maybe it is caused by wrong configuration.

It’s very weird! of course I install the GPU driver and configure the CUDA, even have trained many AI models. It is not make sense.

This is unreasonable.


Solution

Follow the discussions from forum (link attach on the References), we have two choices:

  1. Restart your server (but some people say that is not useful for their situation)
  2. Or run the following commands:
sudo rmmod nvidia_uvm
sudo modprobe nvidia_uvm


It will suspend and reuse. I used it and success got the true response from torch.cuda.is_available().


References


Read More

Leave a Reply