forked from idea-fasoc/OpenFASOC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.sh
executable file
·288 lines (256 loc) · 11.8 KB
/
dependencies.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
#!/bin/bash
printf "Function: \nIf this script runs smoothly, all necessary dependencies for OpenFASoC will be
downloaded at once. If you've already downloaded all dependencies with this script,
you can run this script again to update the installed dependencies.\n
Basic Requirements (not exhaustive):
(1) Python 3.6 or higher is required.
(2) Intel x86 architecture is required, as this script will use Conda to download several
Python packages for which versions compatible with ARM architecture currently do not
exist for installation in Conda's package repository. If your machine does not run
on Intel x86 architecture, this script will likely not work.
(3) CentOS and Ubuntu are the only operating systems this script has been verified to work on.
We cannot guarantee successful compilation on other systems.\n\n"
proceed_confirmed=false
update_confirmed=false
while ! $proceed_confirmed
do
echo "[OpenFASoC] Do you wish to proceed with the installation?
[y] Yes. Install for the first time.
[u] Yes. Update already-installed dependencies.
[n] No. Exit this script."
read -p "Select the desired option: " selection
if [ "$selection" == "y" ] || [ "$selection" == "Y" ]; then
echo "Beginning installation..."; proceed_confirmed=true
elif [ "$selection" == "n" ] || [ "$selection" == "N" ]; then
echo "Quitting script."; exit
elif [ "$selection" == "u" ] || [ "$selection" == "U" ]; then
update_confirmed=true
proceed_confirmed=true
else
echo "[OpenFASoC] Invalid selection. Choose y or n."
fi
done
if $update_confirmed; then
if ! [ -x /usr/bin/miniconda3 ]; then
echo "[OpenFASoC] Conda could not be found. If you have not yet successfully installed the dependencies, you cannot update the dependencies."
exit
fi
export PATH=/usr/bin/miniconda3/bin:$PATH
printf "\n[OpenFASoC] Attempting to update Conda using: conda update conda -y \n\n"
conda update conda -y
if [ $? == 0 ]
then
printf "\n\n[OpenFASoC] Conda updated successfully with: conda update conda -y."
else
printf "\n\n[OpenFASoC] Failed to update Conda using: conda update conda -y."
printf "[OpenFASoC] Attempting instead to update Conda using: install -c anaconda conda -y"
conda install -c anaconda conda -y; if [ $? == 0 ]; then
printf "\n\n[OpenFASoC] Conda updated successfully with: install -c anaconda conda -y"
else
printf "\n\n[OpenFASoC] Conda could not be updated."; fi
fi
update_successful=true
printf "\n\n[OpenFASoC] Attempting to update packages using: conda update --all -y \n"
conda update --all -y
if [ $? == 0 ]; then
printf "[OpenFASoC] Packages updated successfully with: conda update --all -y"
else
printf "\n\n[OpenFASoC] Failed to update packages using: conda update --all -y."
printf "Attempting instead to install core packages individually..."
conda install -c litex-hub magic -y; if [ $? != 0 ]; then update_successful=false; echo "magic could not be updated"; fi
conda install -c litex-hub netgen -y; if [ $? != 0 ]; then update_successful=false; echo "netgen could not be updated"; fi
conda install -c litex-hub open_pdks.sky130a -y; if [ $? != 0 ]; then update_successful=false; echo "open_pdks could not be updated"; fi
conda install -c litex-hub openroad -y; if [ $? != 0 ]; then update_successful=false; echo "openroad could not be updated"; fi
conda install -c litex-hub yosys -y; if [ $? != 0 ]; then update_successful=false; echo "yosys could not be updated"; fi
fi
# ngspice_updated=false
# echo "Updating ngspice..."
# cd ngspice
# git pull
# ./compile_linux.sh
# if [ $? == 0 ]; then
# ngspice_updated=true
# echo "ngspice updated successfully."
# else
# echo "nspice could not be updated."
# fi
# cd ..
# cd ./docker/conda/scripts/Xyce
# echo "Updating xyce..."
# SRCDIR=$PWD/Trilinos-trilinos-release-12-12-1
# LIBDIR=/opt/xyce/xyce_lib
# INSTALLDIR=/opt/xyce/xyce_serial
# FLAGS="-O3 -fPIC"
# if cat /etc/os-release | grep "centos" >> /dev/null
# then
# yum install -y centos-release-scl
# yum install -y devtoolset-7
# scl enable devtoolset-7 bash
# fi
# git pull
# ./bootstrap
# ./configure CXXFLAGS="-O3 -std=c++11" ARCHDIR=$LIBDIR --prefix=$INSTALLDIR CPPFLAGS="-I/usr/include/suitesparse"
# make
# make install
# if [ $? == 0 ]; then
# echo "xyce updated successfully."
# else
# echo "xyce could not be updated."
# fi
# if [ $ngspice_updated ]; then
# echo "nspice was successfully updated."
# fi
if [ $update_successful ]; then
printf "\n\nMagic, netgen, open_pdks, openroad, and yosys updated successfully to latest releases possible given user's Python version (most recent releases if version >=3.8).\n"
fi
exit
fi
if which python3 >> /dev/null
then
echo "Python3 exists. Continuing..."
else
echo "Python3 could not be found. Please install python3 and try again. Exiting..."
exit
fi
ma_ver=$(python3 -c"import sys; print(str(sys.version_info.major))")
mi_ver=$(python3 -c"import sys; print(str(sys.version_info.minor))")
if [ "$ma_ver" -lt 3 ]
then
echo "[Warning] python version less than 3.* . Not compatible. You atleast need version above or equal to 3.7."
sed -i 's/gdsfactory==5.1.1/#gdsfactory==5.1.1/g' requirements.txt
echo "[Warning] Skipping installing the gdsfactory python package because of that error. Continuing installation..."
elif [ "$mi_ver" -lt 6 ]
then
echo "[Warning] python version less than 3.6 . Not compatible. You atleast need version above or equal to 3.7."
sed -i 's/gdsfactory==5.1.1/#gdsfactory==5.1.1/g' requirements.txt
echo "[Warning] Skipping installing the gdsfactory python package because of that error. Continuing installation..."
else
echo "Compatible python version exists: $ma_ver.$mi_ver"
fi
if cat /etc/os-release | grep "ubuntu" >> /dev/null; then
apt-get update -y
apt-get install -y autoconf libtool automake make g++ gcc
elif cat /etc/os-release | grep -e "centos" >> /dev/null; then
yum update -y
yum install -y autoconf libtool automake make gcc gcc-c++
fi
# install miniconda3
if ! [ -x /usr/bin/miniconda3 ]
then
wget https://repo.anaconda.com/miniconda/Miniconda3-py37_23.1.0-1-Linux-x86_64.sh \
&& bash Miniconda3-py37_23.1.0-1-Linux-x86_64.sh -b -p /usr/bin/miniconda3/ \
&& rm -f Miniconda3-py37_23.1.0-1-Linux-x86_64.sh
else
echo "[OpenFASoC] Found miniconda3. Continuing the installation...\n"
fi
if [ $? == 0 ] && [ -x /usr/bin/miniconda3/ ]
then
echo "[OpenFASoC] miniconda3 installed successfully. Continuing the installation...\n"
if ! grep -q "/usr/bin/miniconda3/bin" /home/$(logname)/.bashrc || ! echo "$PATH" | grep -q "/usr/bin/miniconda3/bin"; then
echo "" >> /home/$(logname)/.bashrc
echo 'export PATH="/usr/bin/miniconda3/bin:$PATH"' >> /home/$(logname)/.bashrc
echo "[OpenFASoC] miniconda3 added to PATH"
fi
export PATH=/usr/bin/miniconda3/bin:$PATH
conda update -y conda
if [ $? == 0 ];then conda install -c litex-hub --file conda_versions.txt -y ; else echo "[OpenFASoC] Failed to update conda version." ; exit ; fi
if [ $? == 0 ];then echo "[OpenFASoC] Installed OpenROAD, Yosys, Skywater PDK, Magic and Netgen successfully" ; else echo "[OpenFASoC] Failed to install conda packages" ; exit ; fi
else
echo "[OpenFASoC] Failed to install miniconda. Check above for error messages."
exit
fi
# download packages using pip3 in miniconda3
export PATH=/usr/bin/miniconda3/bin/pip3:$PATH
if which pip3 >> /dev/null
then
echo "[OpenFASoC] Pip3 exists"
pip3 install -r requirements.txt
if [ $? == 0 ]; then
echo "[OpenFASoC] Python packages installed successfully."
else
echo "[OpenFASoC] Python packages could not be installed."
fi
else
echo "[OpenFASoC] Pip3 not found in miniconda3."
fi
if cat /etc/os-release | grep "ubuntu" >> /dev/null
then
apt install bison flex libx11-dev libx11-6 libxaw7-dev libreadline6-dev autoconf libtool automake -y
git clone http://git.code.sf.net/p/ngspice/ngspice
cd ngspice && ./compile_linux.sh
elif cat /etc/os-release | grep "centos" >> /dev/null
then
yum install bison flex libX11-devel libX11 libXaw-devel readline-devel autoconf libtool automake -y
git clone http://git.code.sf.net/p/ngspice/ngspice
cd ngspice && ./compile_linux.sh
fi
if [ $? == 0 ]
then
echo "[OpenFASoC] Ngspice is installed. Checking pending. Continuing the installation...\n"
cd ../
else
echo "[OpenFASoC] Failed to install Ngspice"
exit
fi
if cat /etc/os-release | grep "ubuntu" >> /dev/null
then
export DEBIAN_FRONTEND=noninteractive
cd docker/conda/scripts
./xyce_install.sh
elif cat /etc/os-release | grep "centos" >> /dev/null
then
cd docker/conda/scripts
chmod +x xyce_install_centos.sh
./xyce_install_centos.sh
fi
if [ $? == 0 ]
then
echo "[OpenFASoC] Xyce is installed. Checking pending. Continuing the installation...\n"
else
echo "[OpenFASoC] Failed to install Xyce"
exit
fi
if cat /etc/os-release | grep "ubuntu" >> /dev/null
then
apt install qt5-default qttools5-dev libqt5xmlpatterns5-dev qtmultimedia5-dev libqt5multimediawidgets5 libqt5svg5-dev ruby ruby-dev python3-dev libz-dev build-essential -y
wget https://www.klayout.org/downloads/Ubuntu-20/klayout_0.28.6-1_amd64.deb
dpkg -i klayout_0.28.6-1_amd64.deb
apt install time -y
strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #https://stackoverflow.com/questions/63627955/cant-load-shared-library-libqt5core-so-5
elif cat /etc/os-release | grep -e "centos" >> /dev/null
then
yum install qt5-qtbase-devel qt5-qttools-devel qt5-qtxmlpatterns-devel qt5-qtmultimedia-devel qt5-qtmultimedia-widgets-devel qt5-qtsvg-devel ruby ruby-devel python3-devel zlib-devel time -y
wget https://www.klayout.org/downloads/CentOS_7/klayout-0.28.6-0.x86_64.rpm
rpm -i klayout-0.28.6-0.x86_64.rpm
yum install time -y
strip --remove-section=.note.ABI-tag /usr/lib64/libQt5Core.so.5
else
echo "[OpenFASoC] Cannot install klayout for other linux distrbutions via this script"
fi
if [ $? == 0 ]
then
echo "[OpenFASoC] Installed Klayout successfully. Checking pending..."
else
echo "[OpenFASoC] Failed to install Klayout successfully"
exit
fi
export PATH=/usr/bin/miniconda3/:$PATH
if [ -x /usr/bin/miniconda3/share/pdk/ ]
then
if ! grep -q "PDK_ROOT=/usr/bin/miniconda3/share/pdk/" /home/$(logname)/.bashrc; then
echo "" >> /home/$(logname)/.bashrc
echo 'export PDK_ROOT=/usr/bin/miniconda3/share/pdk/' >> /home/$(logname)/.bashrc
fi
export PDK_ROOT=/usr/bin/miniconda3/share/pdk/
echo "[OpenFASoC] PDK_ROOT is set to /usr/bin/miniconda3/share/pdk/. If this variable is empty, try setting PDK_ROOT variable to /usr/bin/miniconda3/share/pdk/"
else
echo "[OpenFASoC] PDK not installed"
fi
echo "[OpenFASoC] "
echo "[OpenFASoC] "
echo "[OpenFASoC] To access xyce binary, create an alias - xyce='/opt/xyce/xyce_serial/bin/Xyce'"
echo "################################"
echo "[OpenFASoC] Installation completed"
echo "[OpenFASoC] Thanks for using OpenFASOC dependencies script. To submit feedback, feel free to open a github issue on OpenFASOC repo"
echo "[OpenFASoC] To know more about generators, go to openfasoc.readthedocs.io"
echo "################################"