-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.sh
executable file
·96 lines (73 loc) · 2.05 KB
/
setup.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# init submodule dependencies
git submodule init
git submodule update
# install dependencies
apt update
apt install python3
pip3 install cmake
apt install libopenmpi-dev
apt install wget
pip install torch
apt install libspdlog-dev
apt-get install libglib2.0-0
apt install pigz
pip install wget
pip install pandas
pip install seaborn
pip install mypy
pip install transformers
pip install --upgrade pydantic
pip install sentencepiece
apt-get install git-lfs
apt-get install python3-pybind11
apt-get install nlohmann-json3-dev
# fix pybind header compile error
sed -i '446,486s/^/\/\//' /usr/include/pybind11/detail/type_caster_base.h
# install cmake 3.29.0
cd ..
wget https://github.com/Kitware/CMake/releases/download/v3.29.0-rc2/cmake-3.29.0-rc2-linux-x86_64.sh
chmod +x cmake-3.29.0-rc2-linux-x86_64.sh
./cmake-3.29.0-rc2-linux-x86_64.sh --prefix=/usr/local --exclude-subdir
# install nsight
NSIGHT="NsightSystems-linux-cli-public-2023.4.1.97-3355750.deb"
if [[ ! -f "$NSIGHT" ]]; then
wget https://developer.download.nvidia.com/devtools/nsight-systems/$NSIGHT
dpkg -i ./$NSIGHT
fi
cd Nanoflow
# build mscclpp
cd 3rdparty/mscclpp
git reset --hard cdaf3aea3d767ba65dd3b08984d76bd50615f92e
cd ../..
for repo in mscclpp; do
cat 3rdparty/patches/${repo}/*.patch | patch -p1 -d 3rdparty/${repo}
done
cd 3rdparty/mscclpp
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local/mscclpp -DBUILD_PYTHON_BINDINGS=OFF ..
make -j mscclpp mscclpp_static
make install/fast
cd ../../../
# fix spdlog v1.14.0 + cuda 12.1 compatibility bug
for repo in spdlog; do
cat 3rdparty/patches/${repo}/*.patch | patch -p1 -d 3rdparty/${repo}
done
cd pipeline
# download and trace visualizer
cd utils
curl -LO https://get.perfetto.dev/trace_processor
chmod +x ./trace_processor
cd ..
# generate gemm lib
cd src/generate-gemm
python3 genGEMM.py
cd ../../
# build pllm
mkdir -p build
cd build
cmake ..
make -j 256
# set up libstdc++.so.6 directory
export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/:$LD_LIBRARY_PATH
./test_compute ../config_all/llama3-8B/1024.json