Recipe_Generator / device /get_device_id.py
BhavaishKumar112's picture
Create device/get_device_id.py
a16b6d3 verified
raw
history blame contribute delete
100 Bytes
import torch
def get_device_id():
if torch.cuda.is_available():
return 0
return -1