Files
scgenerator/slurm/start_head.sh
2023-07-27 11:11:13 +02:00

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