-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.sh
executable file
·265 lines (233 loc) · 9.19 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
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
#!/usr/bin/env bash
set -eu
COLOR_RED="\033[0;31m"
COLOR_RESET="\033[0m"
echo ">>> update setup project"
git fetch origin
UPSTREAM=${1:-'@{u}'}
LOCAL=$(git rev-parse @)
REMOTE=$(git rev-parse "$UPSTREAM")
BASE=$(git merge-base @ "$UPSTREAM")
if [ $LOCAL = $REMOTE ]; then
echo "your branch is up-to-date"
elif [ $LOCAL = $BASE ]; then
echo "your branch is behind your tracking branch"
echo "I pull and rerun the script "
git pull
./$0
exit $?
elif [ $REMOTE = $BASE ]; then
echo "your branch is ahead of your tracking branch"
echo "remember to push your changes but I will run the script anyway"
else
echo "your branch and your tracking remote branch have diverged"
echo "resolve all conflicts before rerunning the script"
exit 1
fi
if [ ! -e config.sh ]; then
echo "first configure your build:"
echo "cp config.sh.template config.sh"
echo "edit config.sh"
exit -1
fi
source config.sh
CUR=`pwd`
function remote {
if $HTTPS; then
echo "https://github.com/$1"
else
echo "git@github.com:$1"
fi
}
function clone_or_update {
# $1: github organisation
# $2: github repo name
# $3: [optional] branch/tag -> defaults to "master"
# $4: [optional] directory name into which to checkout the repo -> defaults to $2
branch=${3:-master}
checkoutpath=${4:-$2}
if [ ! -e "$checkoutpath" ]; then
echo ">>> clone $1/$2 $COLOR_RED($branch)$COLOR_RESET"
echo -e "git clone --recursive `remote $1/$2.git` --branch $branch $checkoutpath"
git clone --recursive `remote $1/$2.git` --branch $branch $checkoutpath
else
cd $checkoutpath
echo -e ">>> pull $1/$2 $COLOR_RED($branch)$COLOR_RESET"
git fetch --tags origin
git checkout $branch
set +e
git symbolic-ref HEAD
if [ $? -eq 0 ]; then
git pull
fi
set -e
cd ..
fi
mkdir -p "$checkoutpath"/build/
}
# build custom CMake
if [ "${CMAKE-}" == true ]; then
mkdir -p cmake_build
clone_or_update Kitware CMake ${BRANCH_CMAKE}
cd cmake_build
cmake ../CMake -DBUILD_CursesDialog:BOOL=ON -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH="${CUR}/cmake_install"
${MAKE} install
cd "${CUR}"
export PATH="${CUR}/cmake_install/bin:${PATH}"
echo $PATH
fi
# fetch sources
if [ "${LLVM-}" == true ]; then
mkdir -p llvm_build/
mkdir -p rv_build/
if [ "${LLVM_GIT-}" = true ]; then
clone_or_update ${LLVM_GITHUB_ORG} llvm-project ${LLVM_GIT_BRANCH}
else
if [ ! -e "${CUR}/llvm-project" ]; then
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-${LLVM_SRC_VERSION}/llvm-project-${LLVM_SRC_VERSION}.src.tar.xz
tar xf llvm-project-${LLVM_SRC_VERSION}.src.tar.xz
rm llvm-project-${LLVM_SRC_VERSION}.src.tar.xz
mv llvm-project-${LLVM_SRC_VERSION}.src llvm-project
fi
fi
cd llvm-project
if ! patch --dry-run --reverse --force -s -p1 -i ../patches/llvm/nvptx_feature.patch; then
patch -p1 -i ../patches/llvm/nvptx_feature.patch
fi
# rv
if [ "${RV-}" == true ]; then
cd "${CUR}"
cd llvm-project
clone_or_update cdl-saarland rv ${BRANCH_RV}
cd rv
git submodule update --init
fi
# build llvm
cd "${CUR}"
cd llvm_build
DEFAULT_SYSROOT=
RV_REBUILD_GENBC=OFF
if [[ ${OSTYPE} == "darwin"* ]]; then
DEFAULT_SYSROOT=`xcrun --sdk macosx --show-sdk-path`
RV_REBUILD_GENBC=ON
fi
cmake ../llvm-project/llvm ${CMAKE_MAKE} -DLLVM_BUILD_LLVM_DYLIB:BOOL=ON -DLLVM_LINK_LLVM_DYLIB:BOOL=ON -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH="${CUR}/llvm_install" \
-DLLVM_ENABLE_RTTI:BOOL=ON -DLLVM_ENABLE_PROJECTS:STRING="clang;lld" -DLLVM_ENABLE_BINDINGS:BOOL=OFF -DLLVM_INCLUDE_TESTS:BOOL=ON -DLLVM_TARGETS_TO_BUILD:STRING="${LLVM_TARGETS}" -DDEFAULT_SYSROOT:PATH="${DEFAULT_SYSROOT}"
${MAKE} install
cd "${CUR}"
LLVM_VARS=-DLLVM_DIR:PATH="${CUR}/llvm_install/lib/cmake/llvm"
if [ "${RV-}" == true ]; then
cd rv_build
cmake ../llvm-project/rv ${CMAKE_MAKE} ${LLVM_VARS} -DBUILD_SHARED_LIBS:BOOL=ON -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} -DRV_REBUILD_GENBC:BOOL=${RV_REBUILD_GENBC} -DCMAKE_INSTALL_PREFIX="${CUR}/llvm_install"
${MAKE}
RV_VARS=-DRV_DIR:PATH="${CUR}/rv_build/share/anydsl/cmake"
cd "${CUR}"
else
RV_VARS=-DCMAKE_DISABLE_FIND_PACKAGE_RV:BOOL=TRUE
fi
else
LLVM_VARS=-DCMAKE_DISABLE_FIND_PACKAGE_LLVM:BOOL=TRUE
RV_VARS=-DCMAKE_DISABLE_FIND_PACKAGE_RV:BOOL=TRUE
fi
if [ ! -e "${CUR}/half" ]; then
mkdir half
cd half
wget https://sourceforge.net/projects/half/files/latest/download -O half.zip
unzip half.zip
rm half.zip
cd ${CUR}
fi
# source this file to put artic, impala, and clang in path
cat > "${CUR}/project.sh" <<_EOF_
export PATH="${CUR}/llvm_install/bin:${CUR}/artic/build/bin:${CUR}/impala/build/bin:\${PATH:-}"
export LD_LIBRARY_PATH="${CUR}/llvm_install/lib:\${LD_LIBRARY_PATH:-}"
_EOF_
if [ "${CMAKE-}" == true ]; then
echo "export PATH=\"${CUR}/cmake_install/bin:\${PATH:-}\"" >> ${CUR}/project.sh
fi
source "${CUR}/project.sh"
# PAL
if [ "${BUILD_PAL-}" == true ]; then
cd "${CUR}"
PAL_DIR="${CUR}/pal"
# only clone PAL once (and don't update) because we're tied to a particular commit
if [ ! -e "${PAL_DIR}" ]; then
clone_or_update GPUOpen-Drivers pal dev
# PAL depends on specific dependencies to be set up
cd "${CUR}/pal/src/util/imported"
clone_or_update GPUOpen-Drivers MetroHash amd-master pal_metrohash
clone_or_update GPUOpen-Drivers CWPack amd-master pal_cwpack
cd "${CUR}/pal"
git checkout ${PAL_COMMIT}
# make sure PAL fits into AnyDSL's CMake setup
git apply "${CUR}/patches/pal/cmake-setup.patch"
fi
cd "${CUR}/pal/build"
cmake .. ${CMAKE_MAKE} -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} -DCMAKE_POSITION_INDEPENDENT_CODE="ON" \
-DPAL_CLIENT_INTERFACE_MAJOR_VERSION=777 -DPAL_CLIENT:STRING="Vulkan" -DPAL_BUILD_GFX:STRING="ON" \
-DPAL_BUILD_NULL_DEVICE:STRING="ON" -DPAL_BUILD_OSS:STRING="ON" -DPAL_BUILD_GFX9:STRING="ON" \
-DPAL_DEVELOPER_BUILD:STRING="ON" -DPAL_BUILD_NAVI12:STRING="ON" -DPAL_BUILD_NAVI14:STRING="ON" \
-DPAL_BUILD_NAVI21:STRING="ON" -DPAL_BUILD_NAVI22:STRING="ON" -DPAL_BUILD_NAVI23:STRING="ON" \
-DPAL_BUILD_NAVI24:STRING="ON" -DPAL_BUILD_NAVI31:STRING="ON" -DPAL_BUILD_NAVI32:STRING="ON" \
-DPAL_BUILD_NAVI33:STRING="ON"
${MAKE}
# ROCm device libs
cd "${CUR}"
clone_or_update ${LLVM_GITHUB_ORG} ROCm-Device-Libs ${LLVM_GIT_BRANCH} rocm-device-libs
cd "${CUR}/rocm-device-libs"
if ! patch --dry-run --reverse --force -s -p1 -i ${CUR}/patches/rocm-device-libs/target-triple.patch; then
git apply ${CUR}/patches/rocm-device-libs/target-triple.patch
fi
cd "${CUR}/rocm-device-libs/build"
cmake .. -DCMAKE_PREFIX_PATH:PATH=${CUR}/llvm_build -DAMDGPU_TARGET_TRIPLE:STRING="amdgcn-amd-amdpal" -DCLANG_OPTIONS_APPEND:STRING="-mcpu=${ROCm_GPU_GENERATION}"
${MAKE}
# change calling convention to amdgpu_gfx for calls to ocml
cd "${CUR}/rocm-device-libs/build/amdgcn/bitcode"
llvm-dis ocml.bc -o ocml.ll
python3 "${CUR}/scripts/rocm-device-libs-cc-patcher.py"
PAL_VARS=-Dpal_DIR:PATH="${CUR}/pal/build"
else
PAL_VARS=
fi
# thorin
cd "${CUR}"
clone_or_update AnyDSL thorin ${BRANCH_THORIN}
cd "${CUR}/thorin/build"
cmake .. ${CMAKE_MAKE} -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} ${LLVM_VARS} ${RV_VARS} -DTHORIN_PROFILE:BOOL=${THORIN_PROFILE} -DHalf_DIR:PATH="${CUR}/half/include"
${MAKE}
# artic
cd "${CUR}"
clone_or_update AnyDSL artic ${BRANCH_ARTIC}
cd "${CUR}/artic/build"
cmake .. ${CMAKE_MAKE} -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} -DThorin_DIR:PATH="${CUR}/thorin/build/share/anydsl/cmake"
${MAKE}
# impala
cd "${CUR}"
clone_or_update AnyDSL impala ${BRANCH_IMPALA}
cd "${CUR}/impala/build"
cmake .. ${CMAKE_MAKE} -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} -DThorin_DIR:PATH="${CUR}/thorin/build/share/anydsl/cmake"
${MAKE}
# runtime
cd "${CUR}"
clone_or_update AnyDSL runtime ${BRANCH_RUNTIME}
cd "${CUR}/runtime/build"
cmake .. ${CMAKE_MAKE} -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} -DRUNTIME_JIT:BOOL=${RUNTIME_JIT} -DDEBUG_OUTPUT:BOOL=${RUNTIME_DEBUG_OUTPUT} -DArtic_DIR:PATH="${CUR}/artic/build/share/anydsl/cmake" -DImpala_DIR:PATH="${CUR}/impala/build/share/anydsl/cmake" ${PAL_VARS}
${MAKE}
# configure stincilla but don't build yet
cd "${CUR}"
clone_or_update AnyDSL stincilla ${BRANCH_STINCILLA}
cd "${CUR}/stincilla/build"
cmake .. ${CMAKE_MAKE} -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} -DAnyDSL_runtime_DIR:PATH="${CUR}/runtime/build/share/anydsl/cmake" -DBACKEND:STRING="cpu"
#${MAKE}
# configure rodent but don't build yet
if [ "$CLONE_RODENT" = true ]; then
cd "${CUR}"
clone_or_update AnyDSL rodent ${BRANCH_RODENT}
cd "${CUR}/rodent/build"
cmake .. ${CMAKE_MAKE} -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} -DAnyDSL_runtime_DIR:PATH="${CUR}/runtime/build/share/anydsl/cmake"
#${MAKE}
fi
cd "${CUR}"
echo
echo "!!! Use the following command in order to have 'artic', 'impala', and 'clang' in your path:"
echo "!!! source project.sh"