Unverified 提交 9f5a18bb authored 作者: Glenn Jocher's avatar Glenn Jocher 提交者: GitHub

Torch CUDA synchronize update (#1826)

* torch.cuda.synchronize() update * torch.cuda.synchronize() update * torch.cuda.synchronize() update * newline
上级 0b6266f5
...@@ -36,42 +36,41 @@ def init_torch_seeds(seed=0): ...@@ -36,42 +36,41 @@ def init_torch_seeds(seed=0):
# Speed-reproducibility tradeoff https://pytorch.org/docs/stable/notes/randomness.html # Speed-reproducibility tradeoff https://pytorch.org/docs/stable/notes/randomness.html
torch.manual_seed(seed) torch.manual_seed(seed)
if seed == 0: # slower, more reproducible if seed == 0: # slower, more reproducible
cudnn.deterministic = True cudnn.benchmark, cudnn.deterministic = False, True
cudnn.benchmark = False
else: # faster, less reproducible else: # faster, less reproducible
cudnn.deterministic = False cudnn.benchmark, cudnn.deterministic = True, False
cudnn.benchmark = True
def select_device(device='', batch_size=None): def select_device(device='', batch_size=None):
# device = 'cpu' or '0' or '0,1,2,3' # device = 'cpu' or '0' or '0,1,2,3'
cpu_request = device.lower() == 'cpu' s = f'Using torch {torch.__version__} ' # string
if device and not cpu_request: # if device requested other than 'cpu' cpu = device.lower() == 'cpu'
if cpu:
os.environ['CUDA_VISIBLE_DEVICES'] = '-1' # force torch.cuda.is_available() = False
elif device: # non-cpu device requested
os.environ['CUDA_VISIBLE_DEVICES'] = device # set environment variable os.environ['CUDA_VISIBLE_DEVICES'] = device # set environment variable
assert torch.cuda.is_available(), f'CUDA unavailable, invalid device {device} requested' # check availablity assert torch.cuda.is_available(), f'CUDA unavailable, invalid device {device} requested' # check availability
cuda = False if cpu_request else torch.cuda.is_available() cuda = torch.cuda.is_available() and not cpu
if cuda: if cuda:
c = 1024 ** 2 # bytes to MB n = torch.cuda.device_count()
ng = torch.cuda.device_count() if n > 1 and batch_size: # check that batch_size is compatible with device_count
if ng > 1 and batch_size: # check that batch_size is compatible with device_count assert batch_size % n == 0, f'batch-size {batch_size} not multiple of GPU count {n}'
assert batch_size % ng == 0, f'batch-size {batch_size} not multiple of GPU count {ng}' space = ' ' * len(s)
x = [torch.cuda.get_device_properties(i) for i in range(ng)] for i, d in enumerate(device.split(',') if device else range(n)):
s = f'Using torch {torch.__version__} ' p = torch.cuda.get_device_properties(i)
for i, d in enumerate((device or '0').split(',')): s += f"{'' if i == 0 else space}CUDA:{d} ({p.name}, {p.total_memory / 1024 ** 2}MB)\n" # bytes to MB
if i == 1:
s = ' ' * len(s)
logger.info(f"{s}CUDA:{d} ({x[i].name}, {x[i].total_memory / c}MB)")
else: else:
logger.info(f'Using torch {torch.__version__} CPU') s += 'CPU'
logger.info('') # skip a line logger.info(f'{s}\n') # skip a line
return torch.device('cuda:0' if cuda else 'cpu') return torch.device('cuda:0' if cuda else 'cpu')
def time_synchronized(): def time_synchronized():
# pytorch-accurate time # pytorch-accurate time
torch.cuda.synchronize() if torch.cuda.is_available() else None if torch.cuda.is_available():
torch.cuda.synchronize()
return time.time() return time.time()
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论