Files
BiliNote/backend/app/utils/env_checker.py
Jefferyhcool 0e0b8da317 first commit
2025-04-13 17:44:54 +08:00

13 lines
278 B
Python

def is_cuda_available() -> bool:
try:
import torch
return torch.cuda.is_available()
except ImportError:
return False
def is_torch_installed() -> bool:
try:
import torch
return True
except ImportError:
return False