mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
[Fix] Fix iter bug when resuming checkpoint in distributed train (#866)
* [Fix] Fix iter bug when resuming checkpoint in distributed train * fix lint error Signed-off-by: FreyWang <wangwxyz@qq.com>
This commit is contained in:
parent
598f5c7fa8
commit
f3a49b56a4
@ -7,7 +7,7 @@ import time
|
||||
|
||||
import mmcv
|
||||
import torch
|
||||
from mmcv.runner import init_dist
|
||||
from mmcv.runner import get_dist_info, init_dist
|
||||
from mmcv.utils import Config, DictAction, get_git_hash
|
||||
|
||||
from mmseg import __version__
|
||||
@ -94,6 +94,9 @@ def main():
|
||||
else:
|
||||
distributed = True
|
||||
init_dist(args.launcher, **cfg.dist_params)
|
||||
# gpu_ids is used to calculate iter when resuming checkpoint,
|
||||
_, world_size = get_dist_info()
|
||||
cfg.gpu_ids = range(world_size)
|
||||
|
||||
# create work_dir
|
||||
mmcv.mkdir_or_exist(osp.abspath(cfg.work_dir))
|
||||
|
Loading…
x
Reference in New Issue
Block a user