-
Notifications
You must be signed in to change notification settings - Fork 476
/
install.sh
executable file
·45 lines (36 loc) · 1.16 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env bash
set -ex
apt-get update
apt-get install -y --no-install-recommends openmpi-bin libopenmpi-dev git-lfs
rm -rf /var/lib/apt/lists/*
apt-get clean
pip3 install --no-cache-dir --verbose polygraphy mpi4py
if [ -s ${SOURCE_TAR} ]; then
echo "extracting TensorRT-LLM sources from ${TRT_LLM_SOURCE}"
mkdir -p ${SOURCE_DIR}
tar -xzf ${SOURCE_TAR} -C ${SOURCE_DIR}
else
echo "cloning TensorRT-LLM sources from git (branch=${TRT_LLM_BRANCH})"
git clone https://github.com/NVIDIA/TensorRT-LLM.git ${SOURCE_DIR}
cd ${SOURCE_DIR}
git checkout ${TRT_LLM_BRANCH}
git status
git submodule update --init --recursive
git lfs pull
if [ -s ${GIT_PATCHES} ]; then
echo "applying git patches from ${TRT_LLM_PATCH}"
git apply ${GIT_PATCHES}
fi
sed -i 's|tensorrt.*||' requirements.txt
sed -i 's|torch.*|torch|' requirements.txt
sed -i 's|nvidia-cudnn.*||' requirements.txt
git status
git diff --submodule=diff
fi
if [ "$FORCE_BUILD" == "on" ]; then
echo "Forcing build of TensorRT-LLM ${TRT_LLM_VERSION}"
exit 1
fi
pip3 install --no-cache-dir --verbose tensorrt_llm
pip3 show tensorrt_llm
python3 -c "import tensorrt_llm; print(tensorrt_llm.__version__)"