forked from LLNL/pyranda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
198 lines (159 loc) · 6.14 KB
/
setup.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
################################################################################
# Copyright (c) 2018, Lawrence Livemore National Security, LLC.
# Produced at the Lawrence Livermore National Laboratory.
#
# LLNL-CODE-749864
# This file is part of pyranda
# For details about use and distribution, please read: pyranda/LICENSE
################################################################################
import os
import sys
import subprocess
from setuptools import setup
from distutils.command.build import build
from distutils.command.install import install
try:
import mpi4py
from numpy import f2py
except ImportError as e:
print(e)
print("some modules need to be installed before building pyranda")
def find_mpi4py_mpif90_compiler():
# try to get the mpif90 compiler from mpi4py, it isn't always there..
# if a user installs like `env MPICC=/path/to/mpicc pip install mpi4py ...`
# it doesn't seem to have anything other than mpicc
mpi4py_compilers = mpi4py.get_config()
if 'mpif90' in mpi4py_compilers:
return mpi4py_compilers['mpif90']
elif 'mpifort' in mpi4py_compilers:
return mpi4py_compilers['mpifort']
# last effort, try to build the possible location
elif 'mpicc' in mpi4py_compilers and os.path.exists(mpi4py_compilers['mpicc'][:-2] + 'f90'):
return mpi4py_compilers['mpicc'][:-2] + 'f90'
else:
return None
distname = "pyranda"
fortran_module = 'parcop'
fortran_package = '{}/{}'.format(distname, fortran_module)
fortran_module_lib = '{}.so'.format(fortran_module)
packages = [distname, fortran_package]
install_requires = ['matplotlib']
description = """
A Python driven, Fortran powered Finite Difference solver for arbitrary
hyperbolic PDE systems. This is the mini-app for the Miranda code.
"""
class PyrandaMakeMixin():
user_options = [
('mpif90=', None, 'mpif90 compiler'),
('fflags=', None, 'flags for mpif90'),
('mpiexec=', None, 'mpi exec command used to verify when verifying the mpi compiler'),
('numprocs-arg=', None, 'mpi exec num procs arg used when verifying the mpi compiler'),
('numprocs=', None, 'number of procs used when verifying mpi'),
('check-mpi-compatibility', None, 'check that the mpi compiler is compatible with mpi4py'),
]
def initialize_options(self):
self.mpif90 = None
self.fflags = None
self.mpiexec = None
self.numprocs_arg = None
self.numprocs = None
self.check_mpi_compatibility = None
def finalize_options(self):
pass
def test(self):
print("running regression tests for pyranda...")
try:
os.chdir('tests')
subprocess.check_call(['python','run_tests.py'])
except:
print("Failed to run tests")
raise
def clean(self):
print("cleaning up from {} build".format(fortran_module))
try:
subprocess.check_call(['make', '-C', fortran_package, 'clean'])
except subprocess.CalledProcessError:
print("failed to clean {}".format(fortran_module))
raise
print("{} cleaned".format(fortran_module))
def run(self):
mpi4py_mpif90 = find_mpi4py_mpif90_compiler()
python = sys.executable
args = ['make', '-C', fortran_package, 'python={}'.format(python)]
if self.mpif90 is not None:
args.append('mpif90={}'.format(self.mpif90))
elif mpi4py_mpif90 is not None:
args.append('mpif90={}'.format(mpi4py_mpif90))
# test mpi X mpi4py compatibility
if self.check_mpi_compatibility:
print("trying to verify that the mpi compiler is compatible with mpi4py")
try:
subprocess.check_call(args + ['test-mpi4py'])
except subprocess.CalledProcessError:
print("mpi verification failed")
raise
print("mpi verification successful")
# build the .so module
print("building {}".format(fortran_module))
try:
if self.fflags is not None:
args.append('fflags={}'.format(self.fflags))
if self.numprocs_arg is not None:
args.append('np_arg={}'.format(self.numprocs_arg))
if self.mpiexec is not None:
args.append('mpirun={}'.format(self.mpiexec))
if self.numprocs is not None:
args.append('numprocs={}'.format(self.numprocs))
args.append(fortran_module_lib)
subprocess.check_call(args)
except subprocess.CalledProcessError:
print("failed to build {}".format(fortran_module))
raise
print("{} built".format(fortran_module))
class BuildPyranda(build, PyrandaMakeMixin):
user_options = build.user_options + PyrandaMakeMixin.user_options
def initialize_options(self):
build.initialize_options(self)
PyrandaMakeMixin.initialize_options(self)
def finalize_options(self):
build.finalize_options(self)
PyrandaMakeMixin.finalize_options(self)
def run(self):
PyrandaMakeMixin.run(self)
build.run(self)
class InstallPyranda(install, PyrandaMakeMixin):
def initialize_options(self):
install.initialize_options(self)
def finalize_options(self):
install.finalize_options(self)
def run(self):
install.run(self)
#PyrandaMakeMixin.clean(self)
class CleanPyranda(install, PyrandaMakeMixin):
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
PyrandaMakeMixin.clean(self)
class TestPyranda(install, PyrandaMakeMixin):
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
PyrandaMakeMixin.test(self)
setup_args = dict(
name=distname,
description=description,
packages=packages,
package_data={distname:['*.tex'],fortran_package: [fortran_module_lib]},
install_requires=install_requires,
cmdclass={
'build': BuildPyranda,
'install': InstallPyranda,
'clean': CleanPyranda,
'runtest': TestPyranda
}
)
setup(**setup_args)