コマンドラインからpytorchでgpuが使えるかどうか確認するには以下を実行すればOK
https://note.nkmk.me/python-pytorch-cuda-is-available-device-count
$ python -c "import torch; print(torch.cuda.is_available())"
False
deviceの数を数えるには以下を実行すればOK
$ python -c "import torch; print(torch.cuda.device_count())"
参考