mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-11 12:31:23 +08:00
added multi-node locked ip search
This commit is contained in:
@@ -305,6 +305,12 @@ class Trainer(TrainerIO):
|
||||
if self.on_gpu:
|
||||
rank = 0
|
||||
self.experiment = self.experiment.get_meta_copy()
|
||||
|
||||
# remove any ip tables we saved
|
||||
ip_table_file = os.path.join(self.exp_save_path, '.ip_meta')
|
||||
if os.path.exists(ip_table_file):
|
||||
os.remove(ip_table_file)
|
||||
|
||||
mp.spawn(self.dp_train, nprocs=len(self.data_parallel_device_ids), args=(rank, model))
|
||||
else:
|
||||
self.__run_pretrain_routine(model)
|
||||
|
||||
Reference in New Issue
Block a user