Reputation: 417
I have interrupted the training of the model in PyTorch on CUDA, which I've run on Windows Subsystem for Linux 2 (WSL2). The dedicated GPU memory of NVIDIA GeForce RTX 3080Ti was not flushed.
What I have tried:
gc.collect()
and torch.cuda.empty_cache()
does not resolve the problem (reference)
When running numba.cuda.select_device(0)
to potentially cuda.close()
, the notebook hangs (reference)
After running nvidia-smi
to potentially reset the GPU (reference), the command prompt hangs
Win + Ctrl + Shift + B to reset the graphics stack in Windows does not help (reference)
Restarting the notebook kernel as well as restarting the notebook server does not help
Physical reset is not available
UPDATE:
Running nvidia-smi
in the command prompt on Windows (not on WSL2) yields the following
Upvotes: 0
Views: 3475
Reputation: 70
I don't know your actual environment.
suppose that you use anaconda window-venv
>nvidia-smi
shows following.>envs\psychopy\python.exe
).taskkill /f /PID xxxx
this could be help.
and you don't want doing like this.
if you feeling annoying you can run the script on prompt, it would be automatically flushing gpu memory.
Upvotes: 1