You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
petals/src/petals/cli/run_prod_server.sh

10 lines
223 B
Bash

#!/bin/bash
set -x
export HIVEMIND_COLORS=true
while true; do
pkill -f p2p
pkill -f run_server
python -m petals.cli.run_server bigscience/bloom-petals "$@" 2>&1 | tee log_`date '+%F_%H:%M:%S'`
done