10 lines
213 B
Bash
10 lines
213 B
Bash
#!/bin/bash
|
|
|
|
echo "starting ray head node"
|
|
|
|
# Launch the head node
|
|
ray start --head --node-ip-address=$1 --port=6379 --redis-password=$2 --num-cpus=$SLURM_CPUS_PER_TASK --dashboard-host=127.0.0.1
|
|
|
|
|
|
sleep infinity
|