mattb512 commited on
Commit
71b2874
1 Parent(s): 9e5cbc3

remove logs

Browse files
Files changed (1) hide show
  1. startup.sh +1 -5
startup.sh CHANGED
@@ -6,17 +6,13 @@ echo "PWD: $(pwd)"
6
  echo $HF_TOKEN > .hf_token
7
  echo "LS: $(ls -als)"
8
 
9
- while true; do nvidia-smi; sleep 60; done &
10
 
11
  python3 -c "import torch; \
12
  print(f\"is availeble = {torch.cuda.is_available()}\"); \
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=$!
 
6
  echo $HF_TOKEN > .hf_token
7
  echo "LS: $(ls -als)"
8
 
9
+ while true; do nvidia-smi; sleep 600; done &
10
 
11
  python3 -c "import torch; \
12
  print(f\"is availeble = {torch.cuda.is_available()}\"); \
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=$!