Skip to content

Commit

Permalink
feat(switch topology): add control switch (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
li126com authored Feb 28, 2024
1 parent bd40db1 commit ce31407
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internlm/initialize/launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ def get_default_parser():
parser.add_argument("--backend", type=str, default="nccl", help="backend for distributed communication")
parser.add_argument("--seed", type=int, default=1024)
parser.add_argument("--profiling", default=False, action="store_true", help="enable/disable profiling.")
parser.add_argument("--enable_ali_topology", default=False, action="store_true", help="enable ali switch topology.")
parser.add_argument(
"--disable_volc_topology", default=False, action="store_true", help="disable volc switch topology."
)
return parser


Expand Down

0 comments on commit ce31407

Please sign in to comment.