de850e8
1
2
3
4
5
6
7
8
9
10
11
12
# utils.py import torch def get_device(): if torch.cuda.is_available(): return "cuda:0" elif torch.backends.mps.is_available(): return "mps" else: return "cpu"