tortoise-base / src /list_devices.py
ecker's picture
Initial refractor
3a078df
Raw
History Blame Contribute Delete
134 Bytes
import torch
devices = [f"cuda:{i} => {torch.cuda.get_device_name(i)}" for i in range(torch.cuda.device_count())]
print(devices)