Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a runner for MosaicML cloud #44

Merged
merged 24 commits into from
Feb 3, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add missing init arg
  • Loading branch information
dakinggg committed Jan 26, 2023
commit 2224df9fcdeb3d50bc24d2311a97c82e58cda0a9
2 changes: 1 addition & 1 deletion deepspeed/launcher/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def main(args=None):
elif args.launcher == SLURM_LAUNCHER:
runner = SlurmRunner(args, world_info_base64, resource_pool)
elif args.launcher == MOSAICML_LAUNCHER:
runner = MosaicMLRunner(args)
runner = MosaicMLRunner(args, world_info_base64)
else:
raise NotImplementedError(f"Unknown launcher {args.launcher}")

Expand Down