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

Update SKY_NODE_RANK docs #1350

Merged
merged 3 commits into from
Nov 1, 2022
Merged
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
9 changes: 6 additions & 3 deletions docs/source/running-jobs/distributed-jobs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@ SkyPilot exposes these environment variables that can be accessed in a task's ``
- :code:`SKY_NODE_IPS`: a string of IP addresses of the nodes reserved to execute
the task, where each line contains one IP address.

You can retrieve the number of nodes by :code:`echo "$SKY_NODE_IPS" | wc -l`
and the IP address of the third node by :code:`echo "$SKY_NODE_IPS" | sed -n
3p`.
- You can retrieve the number of nodes by :code:`echo "$SKY_NODE_IPS" | wc -l`
and the IP address of the third node by :code:`echo "$SKY_NODE_IPS" | sed -n
3p`.

- To manipulate these IP addresses, you can also store them to a file in the
:code:`run` command with :code:`echo $SKY_NODE_IPS >> ~/sky_node_ips`.
- :code:`SKY_NUM_GPUS_PER_NODE`: number of GPUs reserved on each node to execute the
task; the same as the count in ``accelerators: <name>:<count>`` (rounded up if a fraction).