Source code for pygip.utils.hardware
import os
import torch
_DEFAULT_DEVICE_STR = os.getenv("PYGIP_DEVICE") or ("cuda:0" if torch.cuda.is_available() else "cpu")
_default_device = torch.device(_DEFAULT_DEVICE_STR)
import os
import torch
_DEFAULT_DEVICE_STR = os.getenv("PYGIP_DEVICE") or ("cuda:0" if torch.cuda.is_available() else "cpu")
_default_device = torch.device(_DEFAULT_DEVICE_STR)