当我们安装好cuda和pytorch之后,需要测试安装的环境是否可用,所以,可以用下面代码测试
def print_torch_test():
print("pyTorch版本:",torch.__version__) # 输出pyTorch版本
print("CUDA版本:",torch.version.cuda) # 输出CUDA版本
print("cuDNN的版本:",torch.backends.cudnn.version()) # 输出cuDNN的版本
print("显卡:",torch.cuda.get_device_name(0)) # 输出显卡版本
print(torch.cuda.is_available()) # 测试GPU是否生效