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

Set up skypilot #273

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
add region when spawning instance
  • Loading branch information
jeffrey-fong committed Oct 30, 2024
commit c2cc9340a810eaa9d51c6cbf53ce3896f3ade191
1 change: 1 addition & 0 deletions deploy_skypilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ def main():
accelerators=f"{args.accelerators}:{args.num_accelerators}",
ports=args.port_to_open,
disk_size=args.disk_size,
region=args.region,
)
)

Expand Down
1 change: 1 addition & 0 deletions train_skypilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ def main():
accelerators=f"{args.accelerators}:{args.num_accelerators}",
disk_size=args.disk_size,
image_id=args.runpod_image_id if isinstance(cloud, sky.RunPod) else None,
region=args.region,
)
).set_file_mounts(
{
Expand Down
Loading