-
Notifications
You must be signed in to change notification settings - Fork 41
/
install.py
278 lines (214 loc) · 8.53 KB
/
install.py
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
"""A script which downloads, compiles, and installs the dependencies needed to
install and run EMopt.
EMopt depends on 4 core open source software packages:
1. Eigen -- Linear algebra/matrix/array library
2. Boost.geometry -- polygon operations
3. PETSc -- solving large Ax=b problems, parallel computing
4. SLEPc -- solving large eigenvalue problems in parallel
To run this script, simply call:
$ python install.py
By default, this will create the directory ~/.emopt and install all of the
libraries there. If you want to install these files elsewhere, you can use the
prefix flag:
$ python install.py --prefix=/custom/install/path
For example, for a system-wide install, we might use:
$ python install.py --prefix=/opt/local
where /opt/local is an existing directory.
If this script fails for any reason, read through the output and check the
install.log file which should be created. This should give you some indication
of what went wrong. In most cases, the issue will be related to not having the
appropriate prerequisite software packages installed.
"""
import os, sys, shutil, glob, requests
from subprocess import call
from argparse import ArgumentParser
# EMopt parameters
emopt_dep_file = ".emopt_deps"
# Package Parameters
EIGEN_VERSION = "3.3.7"
BOOST_VERSION = "1_73_0"
PETSC_VERSION = "3.12.1"
SLEPC_VERSION = "3.12.1"
class Logger(object):
"""Setup log file."""
def __init__(self, log_fname):
self.terminal = sys.stdout
# clean up old log
if(os.path.isfile(log_fname)):
os.remove(log_fname)
self.log = open(log_fname, "a")
def write(self, message):
self.terminal.write(message)
self.log.write(message)
def flush(self):
pass
def print_message(s):
"""Define custom print message which adds color."""
print(''.join(['\033[92m', s, '\033[0m']))
def install_begin(build_dir):
"""Prepare for building dependencies.
This primarily involves moving into the build directory.
"""
os.chdir(build_dir)
def install_end(start_dir, build_dir):
"""Cleanup post installation, i.e. delete build dir."""
os.chdir(start_dir)
if(os.path.exists(build_dir)):
shutil.rmtree(build_dir)
def write_deps_file(home_dir, include_dir, install_dir):
"""Generate the dependency file.
The dependency file, which is stored at ~/.emopt_deps, contains the paths
of the installed dependencies. This is loaded by the setup.py script used
to install EMopt.
"""
dep_fname = home_dir + '/' + emopt_dep_file
with open(dep_fname, 'w') as fdep:
fdep.write('EIGEN_DIR=' + include_dir + '\n')
fdep.write('BOOST_DIR=' + include_dir + '\n')
fdep.write('PETSC_DIR=' + install_dir + '\n')
fdep.write('PETSC_ARCH=\n')
fdep.write('SLEPC_DIR=' + install_dir + '\n')
def install_eigen(include_dir):
"""Download and install Eigen. It's header-only, so nice and easy."""
print_message('Downloading Eigen headers...')
call(['git', 'clone', 'https://github.com/eigenteam/eigen-git-mirror.git'])
print_message('Unpacking library...')
os.chdir('eigen-git-mirror')
call(['git', 'checkout', EIGEN_VERSION])
eigen_dest = include_dir + 'Eigen'
if(os.path.exists(eigen_dest)): shutil.rmtree(eigen_dest)
shutil.copytree('Eigen', eigen_dest)
print_message('Cleaning up...')
os.chdir('../')
shutil.rmtree('eigen-git-mirror')
def install_boost(include_dir):
"""Download and install boost.geometry.
Despite being header-only, boost is a bit tricky to install. We essentially
acquire the whole of boost (which takes up ~1 GB) and then extract out the
geometry library.
"""
print_message('Retrieving boost.geometry headers. This may take a few minutes...')
boost_url = "https://boostorg.jfrog.io/artifactory/main/release/1.73.0/source/boost_1_73_0.tar.gz"
boost_fname = "boost_" + BOOST_VERSION + ".tar.gz"
r = requests.get(boost_url, allow_redirects=True)
with open(boost_fname, 'wb') as fsave:
fsave.write(r.content)
# unzip package
call(['tar', 'xvzf', boost_fname])
boost_folder = "boost_" + BOOST_VERSION
os.chdir(boost_folder)
call(['./bootstrap.sh'])
call(['./b2', 'headers'])
boost_dest = include_dir+'boost'
boost_libs_dest = include_dir+'libs/'
if(os.path.exists(boost_dest)): shutil.rmtree(boost_dest)
if(os.path.exists(boost_libs_dest)): shutil.rmtree(boost_libs_dest)
shutil.copytree('./boost', boost_dest)
shutil.copytree('./libs', boost_libs_dest)
print_message('Cleaning up boost directories')
os.chdir('../')
shutil.rmtree(boost_folder)
def install_petsc(install_dir):
"""Compile and install PETSc."""
# Clean up environment variables. If these are set the PETSc compilation will
# fail
if('PETSC_DIR' in os.environ): del os.environ['PETSC_DIR']
if('PETSC_ARCH' in os.environ): del os.environ['PETSC_ARCH']
# get PETSc
print_message('Downloading PETSc...')
petsc_url = "http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/petsc-" + PETSC_VERSION + \
".tar.gz"
petsc_fname = "petsc-" + PETSC_VERSION + ".tar.gz"
r = requests.get(petsc_url, allow_redirects=True)
with open(petsc_fname, 'wb') as fsave:
fsave.write(r.content)
# unzip package
call(['tar', 'xvzf', petsc_fname])
petsc_folder = "petsc-" + PETSC_VERSION
os.chdir(petsc_folder)
# compile
print_message('Compiling PETSc...')
call(["./configure", "--with-scalar-type=complex", "--with-mpi=1",
"--COPTFLAGS='-O3'", "--FOPTFLAGS='-O3'", "--CXXOPTFLAGS='-O3'",
"--with-debugging=0", "--prefix="+install_dir, "--download-scalapack",
"--download-mumps", "--download-openblas"])
call(['make', 'all', 'test'])
print_message('Installing PETSc...')
call(['make', 'install'])
os.environ['PETSC_DIR'] = install_dir
# cleanup
print_message('Cleaning up working directory...')
os.chdir('../')
shutil.rmtree(petsc_folder)
def install_slepc(install_dir):
"""Compile and install SLEPc."""
# SLEPC_DIR environment var cant be set
if('SLEPC_DIR' in os.environ): del os.environ['SLEPC_DIR']
# get the SLEPc source
print_message('Downloading SLEPc source...')
slepc_url = "http://slepc.upv.es/download/distrib/slepc-" + SLEPC_VERSION + \
".tar.gz"
slepc_fname = "slepc-" + SLEPC_VERSION + ".tar.gz"
r = requests.get(slepc_url, allow_redirects=True)
with open(slepc_fname, 'wb') as fsave:
fsave.write(r.content)
# unzip package
call(['tar', 'xvzf', slepc_fname])
# compile and install
print_message('Compiling SLEPc...')
slepc_folder = "slepc-" + SLEPC_VERSION
os.chdir(slepc_folder)
call(['./configure', '--prefix='+install_dir])
call(['make', 'all'])
call(['make', 'install'])
call(['make', 'test'])
# cleanup
os.chdir('../')
shutil.rmtree(slepc_folder)
os.remove(slepc_fname)
def install_deps():
# setup logging
sys.stdout = Logger("install.log")
# Do Argument parsing
parser = ArgumentParser()
parser.add_argument("--prefix=", metavar='filepath', type=str, dest='prefix',
help='Set the installation directory for EMopt dependencies')
args = parser.parse_args()
# setup install directory
home_dir = os.path.expanduser('~')
if(args.prefix == None):
install_dir = home_dir + '/.emopt/'
else:
install_dir = args.prefix
print(install_dir)
if(not os.path.exists(install_dir)):
os.makedirs(install_dir)
# setup installation subdirs
include_dir = install_dir + 'include/'
lib_dir = install_dir + 'lib/'
if(not os.path.exists(include_dir)):
os.makedirs(include_dir)
if(not os.path.exists(lib_dir)):
os.makedirs(lib_dir)
# setup working directory
current_dir = os.getcwd()
build_dir = './build/'
if(not os.path.exists(build_dir)):
os.makedirs(build_dir)
# save file to user's home directory which will tell emopt where to look for the
# dependencies
# install dependencies
install_begin(build_dir)
try:
install_eigen(include_dir)
install_boost(include_dir)
install_petsc(install_dir)
install_slepc(install_dir)
install_end(current_dir, build_dir)
write_deps_file(home_dir, include_dir, install_dir)
except Exception as e:
print(e)
install_end(current_dir, build_dir)
print_message('Finished installing EMOpt dependencies!')
if __name__ == '__main__':
install_deps()