Answers for "install torch cuda available"

0

torch cuda is available

torch.cuda.is_available()

torch.cuda.current_device()

torch.cuda.device(0)

torch.cuda.device_count()

torch.cuda.get_device_name(0)
Posted by: Guest on October-18-2021
2

cuda 10 install pytorch

# CUDA 9.2
conda install pytorch==1.2.0 torchvision==0.4.0 cudatoolkit=9.2 -c pytorch

# CUDA 10.0
conda install pytorch==1.2.0 torchvision==0.4.0 cudatoolkit=10.0 -c pytorch

# CPU Only
conda install pytorch==1.2.0 torchvision==0.4.0 cpuonly -c pytorch
Posted by: Guest on May-16-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language