otherhalf-dev commited on
Commit
3c0ae1f
·
verified ·
1 Parent(s): 505e8ac

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. launch_server.sh +11 -0
launch_server.sh ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # export CUDA_VISIBLE_DEVICES="0"
2
+
3
+ model_repo_path=./model_repo_whisper_trtllm
4
+
5
+ nohup tritonserver --model-repository $model_repo_path \
6
+ --pinned-memory-pool-byte-size=2048000000 \
7
+ --cuda-memory-pool-byte-size=0:4096000000 \
8
+ --http-port 7015 \
9
+ --metrics-port 5004 \
10
+ --grpc-port 7014 \
11
+ > tritonserver.out 2>&1 &