Explorar el Código

Merge pull request #4 from lainedfles/dockerfile-optimisation-dev

Set cudnn LD_LIBRARY_PATH to fix whisper inference
Jannik S hace 1 año
padre
commit
536fd347b9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      backend/start.sh

+ 1 - 1
backend/start.sh

@@ -26,7 +26,7 @@ fi
 
 
 if [ "$USE_CUDA_DOCKER" = "true" ]; then
 if [ "$USE_CUDA_DOCKER" = "true" ]; then
   echo "CUDA is enabled, appending LD_LIBRARY_PATH to include torch/cudnn & cublas libraries."
   echo "CUDA is enabled, appending LD_LIBRARY_PATH to include torch/cudnn & cublas libraries."
-  export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib/python3.11/site-packages/torch/lib:/usr/local/lib/python3.11/site-packages/nvidia/cublas/lib"
+  export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib/python3.11/site-packages/torch/lib:/usr/local/lib/python3.11/site-packages/nvidia/cudnn/lib"
 fi
 fi
 
 
 WEBUI_SECRET_KEY="$WEBUI_SECRET_KEY" exec uvicorn main:app --host 0.0.0.0 --port "$PORT" --forwarded-allow-ips '*'
 WEBUI_SECRET_KEY="$WEBUI_SECRET_KEY" exec uvicorn main:app --host 0.0.0.0 --port "$PORT" --forwarded-allow-ips '*'