AtomStorm/00_utils/check_env.py
2025-02-05 17:01:10 +08:00

10 lines
372 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#加载torch
import torch
print("cudnn版本:",torch.backends.cudnn.version())
#输出8200代表着成功安装了cudnn v8.4.0
print("torch版本:",torch.__version__)
#输出1.11.0代表成功安装了pytorch 1.11.0
print("cuda版本:",torch.version.cuda)
#输出11.3代表成功安装了cuda 11.3
print("gpu是否可用",torch.cuda.is_available())
#True