add sleep between steps
Browse files- startup.sh +4 -0
startup.sh
CHANGED
@@ -13,6 +13,10 @@ python3 -c "import torch; \
|
|
13 |
print(f\"device count = {torch.cuda.device_count()}\"); \
|
14 |
print(f\"current device = {torch.cuda.current_device()}\")"
|
15 |
|
|
|
|
|
|
|
|
|
16 |
echo "Starting serve.controller"
|
17 |
python3 -m serve.controller --host 0.0.0.0 --port 10000 &
|
18 |
P1=$!
|
|
|
13 |
print(f\"device count = {torch.cuda.device_count()}\"); \
|
14 |
print(f\"current device = {torch.cuda.current_device()}\")"
|
15 |
|
16 |
+
pip list
|
17 |
+
|
18 |
+
pip3 list
|
19 |
+
|
20 |
echo "Starting serve.controller"
|
21 |
python3 -m serve.controller --host 0.0.0.0 --port 10000 &
|
22 |
P1=$!
|