Spaces:
Runtime error
Runtime error
File size: 375 Bytes
b014f93 |
1 2 3 4 5 6 7 8 9 10 11 |
import subprocess
import sys
import torch
if torch.cuda.is_available():
print("GPU detected. Installing GPU packages...")
subprocess.check_call([sys.executable, "-m", "pip", "install", "flash_attn", "einops"])
else:
print("No GPU detected. Installing CPU-only packages if needed...")
subprocess.check_call([sys.executable, "-m", "pip", "install", "einops"])
|