forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_pytorch_libs.sh
executable file
·309 lines (281 loc) · 9.79 KB
/
build_pytorch_libs.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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#!/usr/bin/env bash
# Shell script used to build the aten/*, caffe2/*, and third_party/*
# dependencies prior to linking libraries and passing headers to the Python
# extension compilation stage. This file is used from setup.py, but can also be
# called standalone to compile the libraries outside of the overall PyTorch
# build process.
#
# TODO: Replace this with the root-level CMakeLists.txt
set -ex
SYNC_COMMAND="cp"
if [ -x "$(command -v rsync)" ]; then
SYNC_COMMAND="rsync -lptgoD"
fi
# We test the presence of cmake3 (for platforms like CentOS and Ubuntu 14.04)
# and use the newer of cmake and cmake3 if so.
CMAKE_COMMAND="cmake"
if [[ -x "$(command -v cmake3)" ]]; then
if [[ -x "$(command -v cmake)" ]]; then
# have both cmake and cmake3, compare versions
# Usually cmake --version returns two lines,
# cmake version #.##.##
# <an empty line>
# On the nightly machines it returns one line
# cmake3 version 3.11.0 CMake suite maintained and supported by Kitware (kitware.com/cmake).
# Thus we extract the line that has 'version' in it and hope the actual
# version number is gonna be the 3rd element
CMAKE_VERSION=$(cmake --version | grep 'version' | awk '{print $3}')
CMAKE3_VERSION=$(cmake3 --version | grep 'version' | awk '{print $3}')
CMAKE3_NEEDED=$($PYTORCH_PYTHON -c "from distutils.version import StrictVersion; print(1 if StrictVersion(\"${CMAKE_VERSION}\") < StrictVersion(\"3.5.0\") and StrictVersion(\"${CMAKE3_VERSION}\") > StrictVersion(\"${CMAKE_VERSION}\") else 0)")
else
# don't have cmake
CMAKE3_NEEDED=1
fi
if [[ $CMAKE3_NEEDED == "1" ]]; then
CMAKE_COMMAND="cmake3"
fi
unset CMAKE_VERSION CMAKE3_VERSION CMAKE3_NEEDED
fi
# Options for building only a subset of the libraries
USE_CUDA=0
USE_ROCM=0
USE_NNPACK=0
USE_MKLDNN=0
USE_QNNPACK=0
USE_GLOO_IBVERBS=0
CAFFE2_STATIC_LINK_CUDA=0
RERUN_CMAKE=1
while [[ $# -gt 0 ]]; do
case "$1" in
--dont-rerun-cmake)
RERUN_CMAKE=0
;;
--use-cuda)
USE_CUDA=1
;;
--use-rocm)
USE_ROCM=1
;;
--use-nnpack)
USE_NNPACK=1
;;
--use-mkldnn)
USE_MKLDNN=1
;;
--use-qnnpack)
USE_QNNPACK=1
;;
--use-gloo-ibverbs)
USE_GLOO_IBVERBS=1
;;
--cuda-static-link)
CAFFE2_STATIC_LINK_CUDA=1
;;
*)
break
;;
esac
shift
done
CMAKE_INSTALL=${CMAKE_INSTALL-make install}
BUILD_SHARED_LIBS=${BUILD_SHARED_LIBS-ON}
# Save user specified env vars, we will manually propagate them
# to cmake. We copy distutils semantics, referring to
# cpython/Lib/distutils/sysconfig.py as the source of truth
USER_CFLAGS=""
USER_LDFLAGS=""
if [[ -n "$LDFLAGS" ]]; then
USER_LDFLAGS="$USER_LDFLAGS $LDFLAGS"
fi
if [[ -n "$CFLAGS" ]]; then
USER_CFLAGS="$USER_CFLAGS $CFLAGS"
USER_LDFLAGS="$USER_LDFLAGS $CFLAGS"
fi
if [[ -n "$CPPFLAGS" ]]; then
# Unlike distutils, NOT modifying CXX
USER_C_CFLAGS="$USER_CFLAGS $CPPFLAGS"
USER_LDFLAGS="$USER_LDFLAGS $CPPFLAGS"
fi
# Use ccache if available (this path is where Homebrew installs ccache symlinks)
if [ "$(uname)" == 'Darwin' ]; then
if [ -d '/usr/local/opt/ccache/libexec' ]; then
CCACHE_WRAPPER_PATH=/usr/local/opt/ccache/libexec
fi
fi
BASE_DIR=$(cd $(dirname "$0")/.. && printf "%q\n" "$(pwd)")
TORCH_LIB_DIR="$BASE_DIR/torch/lib"
INSTALL_DIR="$TORCH_LIB_DIR/tmp_install"
THIRD_PARTY_DIR="$BASE_DIR/third_party"
C_FLAGS=""
# Workaround OpenMPI build failure
# ImportError: /build/pytorch-0.2.0/.pybuild/pythonX.Y_3.6/build/torch/_C.cpython-36m-x86_64-linux-gnu.so: undefined symbol: _ZN3MPI8Datatype4FreeEv
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686926
C_FLAGS="${C_FLAGS} -DOMPI_SKIP_MPICXX=1"
LDFLAGS=""
LD_POSTFIX=".so"
if [[ $(uname) == 'Darwin' ]]; then
LDFLAGS="$LDFLAGS -Wl,-rpath,@loader_path"
LD_POSTFIX=".dylib"
else
if [[ $USE_ROCM -eq 1 ]]; then
LDFLAGS="$LDFLAGS -Wl,-rpath,\\\\\\\$ORIGIN"
else
LDFLAGS="$LDFLAGS -Wl,-rpath,\$ORIGIN"
fi
fi
CPP_FLAGS=" -std=c++11 "
THD_FLAGS=""
# Gloo infiniband support
if [[ $USE_GLOO_IBVERBS -eq 1 ]]; then
GLOO_FLAGS+=" -DUSE_IBVERBS=1"
THD_FLAGS="-DUSE_GLOO_IBVERBS=1"
fi
CWRAP_FILES="\
$BASE_DIR/torch/lib/ATen/Declarations.cwrap;\
$BASE_DIR/torch/lib/THNN/generic/THNN.h;\
$BASE_DIR/torch/lib/THCUNN/generic/THCUNN.h;\
$BASE_DIR/torch/lib/ATen/nn.yaml"
CUDA_NVCC_FLAGS=$C_FLAGS
if [[ -z "$CUDA_DEVICE_DEBUG" ]]; then
CUDA_DEVICE_DEBUG=0
fi
if [ -z "$MAX_JOBS" ]; then
MAX_JOBS="$(getconf _NPROCESSORS_ONLN)"
fi
BUILD_TYPE="Release"
if [[ -n "$DEBUG" && $DEBUG -ne 0 ]]; then
BUILD_TYPE="Debug"
elif [[ -n "$REL_WITH_DEB_INFO" && $REL_WITH_DEB_INFO -ne 0 ]]; then
BUILD_TYPE="RelWithDebInfo"
fi
echo "Building in $BUILD_TYPE mode"
function path_remove {
# Delete path by parts so we can never accidentally remove sub paths
PATH=${PATH//":$1:"/":"} # delete any instances in the middle
PATH=${PATH/#"$1:"/} # delete any instance at the beginning
PATH=${PATH/%":$1"/} # delete any instance in the at the end
}
# purposefully not using build() because we need Caffe2 to build the same
# regardless of whether it is inside PyTorch or not, so it
# cannot take any special flags
# special flags need to be part of the Caffe2 build itself
#
# However, we do explicitly pass library paths when setup.py has already
# detected them (to ensure that we have a consistent view between the
# PyTorch and Caffe2 builds.)
function build_caffe2() {
# pwd is pytorch_root/build
# TODO change these to CMAKE_ARGS for consistency
if [[ -z $EXTRA_CAFFE2_CMAKE_FLAGS ]]; then
EXTRA_CAFFE2_CMAKE_FLAGS=()
fi
if [[ -n $CCACHE_WRAPPER_PATH ]]; then
EXTRA_CAFFE2_CMAKE_FLAGS+=("-DCMAKE_C_COMPILER=$CCACHE_WRAPPER_PATH/gcc")
EXTRA_CAFFE2_CMAKE_FLAGS+=("-DCMAKE_CXX_COMPILER=$CCACHE_WRAPPER_PATH/g++")
fi
if [[ -n $CMAKE_PREFIX_PATH ]]; then
EXTRA_CAFFE2_CMAKE_FLAGS+=("-DCMAKE_PREFIX_PATH=$CMAKE_PREFIX_PATH")
fi
if [[ $RERUN_CMAKE -eq 1 ]] || [ ! -f CMakeCache.txt ]; then
${CMAKE_COMMAND} $BASE_DIR \
${CMAKE_GENERATOR} \
-DPYTHON_EXECUTABLE=$PYTORCH_PYTHON \
-DPYTHON_LIBRARY="${PYTORCH_PYTHON_LIBRARY}" \
-DPYTHON_INCLUDE_DIR="${PYTORCH_PYTHON_INCLUDE_DIR}" \
-DBUILDING_WITH_TORCH_LIBS=ON \
-DTORCH_BUILD_VERSION="$PYTORCH_BUILD_VERSION" \
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DBUILD_TORCH=$BUILD_TORCH \
-DBUILD_PYTHON=$BUILD_PYTHON \
-DBUILD_SHARED_LIBS=$BUILD_SHARED_LIBS \
-DBUILD_BINARY=$BUILD_BINARY \
-DBUILD_TEST=$BUILD_TEST \
-DINSTALL_TEST=$INSTALL_TEST \
-DBUILD_CAFFE2_OPS=$BUILD_CAFFE2_OPS \
-DONNX_NAMESPACE=$ONNX_NAMESPACE \
-DUSE_CUDA=$USE_CUDA \
-DUSE_DISTRIBUTED=$USE_DISTRIBUTED \
-DUSE_NUMPY=$USE_NUMPY \
-DCAFFE2_STATIC_LINK_CUDA=$CAFFE2_STATIC_LINK_CUDA \
-DUSE_ROCM=$USE_ROCM \
-DUSE_NNPACK=$USE_NNPACK \
-DUSE_LEVELDB=$USE_LEVELDB \
-DUSE_LMDB=$USE_LMDB \
-DUSE_OPENCV=$USE_OPENCV \
-DUSE_QNNPACK=$USE_QNNPACK \
-DUSE_FFMPEG=$USE_FFMPEG \
-DUSE_GLOG=OFF \
-DUSE_GFLAGS=OFF \
-DUSE_SYSTEM_EIGEN_INSTALL=OFF \
-DCUDNN_INCLUDE_DIR=$CUDNN_INCLUDE_DIR \
-DCUDNN_LIB_DIR=$CUDNN_LIB_DIR \
-DCUDNN_LIBRARY=$CUDNN_LIBRARY \
-DUSE_MKLDNN=$USE_MKLDNN \
-DNCCL_EXTERNAL=$USE_CUDA \
-DCMAKE_INSTALL_PREFIX="$INSTALL_DIR" \
-DCMAKE_C_FLAGS="$USER_CFLAGS" \
-DCMAKE_CXX_FLAGS="$USER_CFLAGS" \
-DCMAKE_EXE_LINKER_FLAGS="$LDFLAGS $USER_LDFLAGS" \
-DCMAKE_SHARED_LINKER_FLAGS="$LDFLAGS $USER_LDFLAGS" \
$GLOO_FLAGS \
-DTHD_SO_VERSION=1 \
$THD_FLAGS \
${EXTRA_CAFFE2_CMAKE_FLAGS[@]}
# STOP!!! Are you trying to add a C or CXX flag? Add it
# to CMakeLists.txt and aten/CMakeLists.txt, not here.
# We need the vanilla cmake build to work.
fi
${CMAKE_INSTALL} -j"$MAX_JOBS"
# Install Python proto files
if [[ "$BUILD_PYTHON" == 'ON' ]]; then
echo "Copying Caffe2 proto files from $(pwd)/caffe2/proto to $(cd .. && pwd)/caffe2/proto"
echo "All the files in caffe2/proto are $(find caffe2/proto)"
for proto_file in $(pwd)/caffe2/proto/*.py; do
cp $proto_file "$(pwd)/../caffe2/proto/"
done
fi
# Fix rpaths of shared libraries
if [[ $(uname) == 'Darwin' ]]; then
# root/torch/lib/tmp_install/lib
echo "Updating all install_names in $INSTALL_DIR/lib"
pushd "$INSTALL_DIR/lib"
for lib in *.dylib; do
echo "Updating install_name for $(pwd)/$lib"
install_name_tool -id @rpath/$lib $lib
done
popd
fi
}
# In the torch/lib directory, create an installation directory
mkdir -p $INSTALL_DIR
# Build
for arg in "$@"; do
if [[ "$arg" == "caffe2" ]]; then
build_caffe2
else
pushd "$THIRD_PARTY_DIR"
build $arg
popd
fi
done
pushd $TORCH_LIB_DIR
# If all the builds succeed we copy the libraries, headers,
# binaries to torch/lib
echo "tools/build_pytorch_libs.sh succeeded at $(date)"
echo "removing $INSTALL_DIR/lib/cmake and $INSTALL_DIR/lib/python"
rm -rf "$INSTALL_DIR/lib/cmake"
rm -rf "$INSTALL_DIR/lib/python"
echo "Copying $INSTALL_DIR/lib to $(pwd)"
$SYNC_COMMAND -r "$INSTALL_DIR/lib"/* .
if [ -d "$INSTALL_DIR/lib64/" ]; then
$SYNC_COMMAND -r "$INSTALL_DIR/lib64"/* .
fi
echo "Copying $(cd ../.. && pwd)/aten/src/generic/THNN.h to $(pwd)"
$SYNC_COMMAND ../../aten/src/THNN/generic/THNN.h .
$SYNC_COMMAND ../../aten/src/THCUNN/generic/THCUNN.h .
echo "Copying $INSTALL_DIR/include to $(pwd)"
$SYNC_COMMAND -r "$INSTALL_DIR/include" .
if [ -d "$INSTALL_DIR/bin/" ]; then
$SYNC_COMMAND -r "$INSTALL_DIR/bin/"/* .
fi
popd