-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env
More file actions
13 lines (12 loc) · 732 Bytes
/
.env
File metadata and controls
13 lines (12 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
ENVIRONMENT
If a .env file exists in the current directory, the default
environment will be read from it. This file should contain key/value
pairs, separated by =, with one key/value pair per line.
AVSTACK_CORE=${PWD}
CUDA_HOME=/usr/local/cuda-11.7
CUDNN_DIR=${AVSTACK_CORE}/deployment/libraries/cudnn-linux-x86_64-8.6.0.163_cuda11-archive
LD_LIBRARY_PATH=${CUDNN_DIR}/lib:${LD_LIBRARY_PATH}
TENSORRT_DIR=${AVSTACK_CORE}/deployment/libraries/TensorRT-8.5.3.1
LD_LIBRARY_PATH=${TENSORRT_DIR}/lib:${LD_LIBRARY_PATH}
ONNXRUNTIME_DIR=${AVSTACK_CORE}/deployment/libraries/onnxruntime-linux-x64-gpu-1.15.1
LD_LIBRARY_PATH=${ONNXRUNTIME_DIR}/lib:${LD_LIBRARY_PATH}