We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 790deaa commit e08a759Copy full SHA for e08a759
1 file changed
algorithmic_efficiency/logger_utils.py
@@ -71,10 +71,8 @@ def get_log_dir(
71
resume = input(
72
'Found existing experiment dir with the same name: {}. Do you wish '
73
'to resume training from this dir? [y/N]:'.format(experiment_path))
74
- if USE_PYTORCH_DDP:
75
- dist.barrier()
76
- if resume.lower() != 'y':
77
- sys.exit()
+ if resume.lower() != 'y':
+ sys.exit()
78
79
logging.info(f'Creating experiment directory at {experiment_path}.')
80
makedir(experiment_path)
0 commit comments