KyanChen's picture
init
f549064
raw
history blame contribute delete
No virus
283 Bytes
# Copyright (c) OpenMMLab. All rights reserved.
import mmengine.dist as dist
import rich.progress as progress
def track_on_main_process(sequence, *args, **kwargs):
if not dist.is_main_process():
return sequence
yield from progress.track(sequence, *args, **kwargs)