I am trying to utilise my pods GPU on jupyter lab but when i check for its avaliabilty it returns false.
print(f"torch version{torch.version}")
print(torch.version.cuda)
print(f"GPU Available: {torch.cuda.is_available()}")
device = "cuda" if torch.cuda.is_available() else "cpu"
print(f"Using device: {device}")
I have tried updating the CUDA_VISIBLE_DEVICES = 0 on the web terminal and then running jupyter lab through that aswell but still doesnt work