forked from PaddlePaddle/CINN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·271 lines (236 loc) · 6.92 KB
/
build.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
#!/usr/bin/env bash
# Copyright (c) 2021 CINN Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -ex
workspace=$PWD
build_dir_name=${cinn_build:-build}
build_dir=$workspace/${build_dir_name}
#export LLVM11_DIR=${workspace}/THIRDS/usr
JOBS=8
cuda_config=OFF
cudnn_config=OFF
function gpu_on {
cuda_config=ON
cudnn_config=ON
}
function cudnn_off {
cudnn_config=OFF
}
OLD_HTTP_PROXY=$http_proxy
OLD_HTTPS_PROXY=$https_proxy
function proxy_off {
unset http_proxy
unset https_proxy
}
function proxy_on {
export http_proxy=$OLD_HTTP_PROXY
export https_proxy=$OLD_HTTPS_PROXY
}
function prepare_ci {
cd $workspace
if [[ $(command -v python) == $build_dir/ci-env/bin/python ]]; then
return
elif [[ -e $build_dir/ci-env/bin/activate ]]; then
source $build_dir/ci-env/bin/activate
return
fi
apt update
echo "the current user EUID=$EUID: $(whoami)"
if ! command -v doxygen &> /dev/null; then
apt install -y doxygen
fi
if ! command -v python3.8-config &> /dev/null; then
apt install -y python3.8-dev
fi
if ! python3.8 -m venv $build_dir/ci-env &> /dev/null; then
apt install -y python3.8-venv
python3.8 -m venv $build_dir/ci-env
fi
proxy_off
source $build_dir/ci-env/bin/activate
pip install -U pip --trusted-host mirrors.aliyun.com --index-url https://mirrors.aliyun.com/pypi/simple/
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config set global.trusted-host mirrors.aliyun.com
pip install pre-commit
pip install clang-format==9.0
pip install sphinx==3.3.1 sphinx_gallery==0.8.1 recommonmark==0.6.0 exhale scipy breathe==4.24.0 matplotlib
pip install paddlepaddle-gpu==2.1.2.post101 -f https://www.paddlepaddle.org.cn/whl/linux/mkl/avx/stable.html
}
function make_doc {
proxy_off
cd $workspace/tutorials
if [[ -f "ResNet18.tar.gz" ]]; then
echo "model file for tutorials already downloaded."
elif [[ -f "$build_dir/thirds/ResNet18.tar.gz" ]]; then
rm -rf $workspace/tutorials/ResNet18
ln -s $build_dir/thirds/ResNet18 $workspace/tutorials/ResNet18
else
wget http://paddle-inference-dist.bj.bcebos.com/CINN/ResNet18.tar.gz
tar -zxvf ResNet18.tar.gz
fi
if [[ $cuda_config == "ON" ]]; then
mkdir is_cuda
fi
cd $build_dir
rm -f $workspace/python/cinn/core_api.so
ln -s $build_dir/cinn/pybind/core_api.so $workspace/python/cinn/
cd $workspace/docs
mkdir -p docs/source/cpp
cat $workspace/tutorials/matmul.cc | python $workspace/tools/gen_c++_tutorial.py > $workspace/docs/source/matmul.md
make html
}
function cmake_ {
proxy_off
mkdir -p $build_dir
cp $workspace/cmake/config.cmake $build_dir
# To enable Cuda backend, set(WITH_CUDA ON)
echo "set(WITH_CUDA $cuda_config)" >> $build_dir/config.cmake
echo "set(WITH_CUDNN $cudnn_config)" >> $build_dir/config.cmake
echo "set(WITH_MKL_CBLAS ON)" >> $build_dir/config.cmake
cd $build_dir
cmake .. -DPUBLISH_LIBS=ON -DWITH_TESTING=ON
}
function _download_and_untar {
proxy_off
local tar_file=$1
if [[ ! -f $tar_file ]]; then
wget https://paddle-inference-dist.bj.bcebos.com/CINN/$tar_file
tar -zxvf $tar_file
fi
}
function prepare_model {
proxy_off
cd $build_dir/thirds
_download_and_untar ResNet18.tar.gz
_download_and_untar MobileNetV2.tar.gz
_download_and_untar EfficientNet.tar.gz
_download_and_untar MobilenetV1.tar.gz
_download_and_untar ResNet50.tar.gz
_download_and_untar SqueezeNet.tar.gz
proxy_on
mkdir -p $build_dir/paddle
cd $build_dir/paddle
if [[ ! -f "libexternal_kernels.so.tgz" ]]; then
wget https://github.com/T8T9/files/raw/main/libexternal_kernels.so.tgz
fi
tar -zxvf libexternal_kernels.so.tgz
if [[ ! -f "paddle_1.8_fc_model.tgz" ]]; then
wget https://github.com/T8T9/files/raw/main/paddle_1.8_fc_model.tgz
fi
tar -zxvf paddle_1.8_fc_model.tgz
if [[ ! -f "mkldnn.tgz" ]]; then
wget https://github.com/T8T9/files/raw/main/mkldnn.tgz
fi
tar -zxvf mkldnn.tgz
cd $build_dir/thirds
python3 $workspace/python/tests/fake_model/naive_mul.py
python3 $workspace/python/tests/fake_model/naive_multi_fc.py
python3 $workspace/python/tests/fake_model/resnet_model.py
}
function codestyle_check {
proxy_on
cd $workspace
pre-commit run -a
if ! git diff-index --quiet HEAD --; then
echo "Code is dirty, please run 'pre-commit run -a' to reformat the code changes"
exit -1
fi
}
function build {
proxy_on
cd $build_dir
if [[ $cuda_config == "ON" ]]; then
make test_codegen_cuda_dev -j $JOBS
ctest -R test_codegen_cuda_dev -V
fi
make test01_elementwise_add_main -j $JOBS
make test02_matmul_main -j $JOBS
make test03_conv_main -j $JOBS
make test_codegen_c -j $JOBS
ctest -R test01_elementwise_add_main
ctest -R test02_matmul_main
ctest -R test03_conv_main
ctest -R "test_codegen_c$"
make -j $JOBS
}
function run_demo {
cd $build_dir/dist
export LD_LIBRARY_PATH=$build_dir/dist/cinn/lib:$LD_LIBRARY_PATH
bash build_demo.sh
./demo
rm ./demo
cd -
}
function run_test {
cd $build_dir
export LD_LIBRARY_PATH=$build_dir/paddle/mkldnn:$build_dir/thirds/install/mklml/lib:$LD_LIBRARY_PATH
ctest --parallel 10 -V
}
function CI {
mkdir -p $build_dir
cd $build_dir
export runtime_include_dir=$workspace/cinn/runtime/cuda
prepare_ci
codestyle_check
cmake_
build
run_demo
prepare_model
run_test
make_doc
}
function main {
# Parse command line.
for i in "$@"; do
case $i in
gpu_on)
gpu_on
shift
;;
cudnn_off)
cudnn_off
shift
;;
check_style)
codestyle_check
shift
;;
cmake)
cmake_
shift
;;
build)
build
shift
;;
test)
run_test
shift
;;
ci)
CI
shift
;;
prepare_model)
prepare_model
shift
;;
make_doc)
make_doc
shift
;;
esac
done
}
main $@