Skip to content

Commit cdf9222

Browse files
Merge pull request #214 from hexinw-nvidia/enable_v2
By default enable barrier rendezvous.
2 parents 5580d33 + 89820d6 commit cdf9222

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/nvidia_resiliency_ext/fault_tolerance/launcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1987,12 +1987,12 @@ def get_args_parser() -> ArgumentParser:
19871987
"--ft-rdzv_impl",
19881988
type=str,
19891989
choices=["barrier", "legacy"],
1990-
default="legacy",
1990+
default="barrier",
19911991
dest="ft_rdzv_impl",
19921992
help="FT rendezvous implementation to use. "
19931993
"'barrier' uses the new atomic barrier-based algorithm (ft_rendezvous_barrier.py), "
19941994
"'legacy' uses the original compare-and-set algorithm (_ft_rendezvous.py). "
1995-
"Default: legacy. Note: This is independent of --rdzv-backend (which specifies "
1995+
"Default: barrier. Note: This is independent of --rdzv-backend (which specifies "
19961996
"the coordination backend like c10d or etcd).",
19971997
)
19981998

0 commit comments

Comments
 (0)