Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion python/mlx/_distributed_utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,6 @@ def main():
choices=["thunderbolt", "ethernet"],
default="thunderbolt",
help="What type of connectivity to configure",
required=True,
)
parser.add_argument(
"--output-hostfile", help="If provided, save the hostfile to this path"
Expand Down
8 changes: 0 additions & 8 deletions python/mlx/_distributed_utils/launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,12 +513,6 @@ def main():
default=12345,
help="The port to use for the NCCL communication (only for nccl backend)",
)
parser.add_argument(
"--no-verify-script",
action="store_false",
dest="verify_script",
help="Do not verify that the script exists",
)
parser.add_argument(
"--python", default=sys.executable, help="Use this python on the remote hosts"
)
Expand Down Expand Up @@ -552,8 +546,6 @@ def main():
rest[0:1] = [args.python, str(script.resolve())]
elif (command := shutil.which(rest[0])) is not None:
rest[0] = command
elif args.verify_script:
raise ValueError(f"Invalid script or command {rest[0]}")

# Launch
if args.backend == "ring":
Expand Down
Loading