-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
276 lines (235 loc) · 9.06 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
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
# This setup.py file simply builds TOAST using the underlying cmake build
# system. This is only preferred in certain cases where the automation is
# easier from a setup.py (e.g. readthedocs, pip, etc).
import os
import sys
import re
import subprocess
import glob
from pathlib import Path
from setuptools import setup, Extension, find_packages
from setuptools.command.build_ext import build_ext
def find_compilers():
cc = None
cxx = None
# If we have mpi4py, then get the MPI compilers that were used to build that.
# Then get the serial compilers used by the MPI wrappers. Otherwise, just the
# normal distutils compilers.
try:
from mpi4py import MPI
import mpi4py
mpiconf = mpi4py.get_config()
mpicc = mpiconf["mpicc"]
mpicxx = mpiconf["mpicxx"]
mpicc_com = None
mpicxx_com = None
try:
mpicc_com = subprocess.check_output(
"{} -show".format(mpicc), shell=True, universal_newlines=True
)
except CalledProcessError:
# Cannot run the MPI C compiler, give up
raise ImportError
try:
mpicxx_com = subprocess.check_output(
"{} -show".format(mpicxx), shell=True, universal_newlines=True
)
except CalledProcessError:
# Cannot run the MPI C++ compiler, give up
raise ImportError
# Extract the serial compilers
cc = mpicc_com.split()[0]
cxx = mpicxx_com.split()[0]
except ImportError:
pass
return (cc, cxx)
def parse_release(topdir):
# Helper function to parse the RELEASE file
ver = None
rel_file = os.path.join(topdir, "src", "toast", "RELEASE")
try:
with open(rel_file, "r") as f:
for line in f:
ver = line.rstrip()
except Exception:
print(f"Cannot parse release file '{rel_file}'")
return ver
def get_version():
# Run the underlying cmake command that generates the version file, and then
# parse that output. This way setup.py is using the exact same version as the
# (not yet built) compiled code.
topdir = Path(__file__).resolve().parent
ver = None
if "CIBUILDWHEEL" in os.environ:
# Short circuit the generation of the version- just parse the
# Release file.
ver = parse_release(topdir)
else:
try:
version_dir = os.path.join(topdir, "src", "libtoast")
# version_dir = os.path.join("src", "libtoast")
subprocess.check_call("cmake -P version.cmake", shell=True, cwd=version_dir)
version_cpp = os.path.join(version_dir, "version.cpp")
git_ver = None
rel_ver = None
with open(version_cpp, "r") as f:
for line in f:
mat = re.match(r'.*GIT_VERSION = "(.*)".*', line)
if mat is not None:
git_ver = mat.group(1)
mat = re.match(r'.*RELEASE_VERSION = "(.*)".*', line)
if mat is not None:
rel_ver = mat.group(1)
if (git_ver is not None) and (git_ver != ""):
ver = git_ver
else:
ver = rel_ver
except Exception:
# Just try to parse the RELEASE file directly
ver = parse_release(topdir)
return ver
class CMakeExtension(Extension):
"""
This overrides the built-in extension class and essentially does nothing,
since all extensions are compiled in one go by the custom build_ext class.
"""
def __init__(self, name, sources=[]):
super().__init__(name=name, sources=sources)
class CMakeBuild(build_ext):
"""
Builds the full package using CMake.
"""
def run(self):
"""
Perform build_cmake before doing the 'normal' stuff
"""
for extension in self.extensions:
if extension.name == "toast._libtoast":
# We always build the serial extension, so we trigger the build
# on that.
self.build_cmake()
super().run()
def build_cmake(self):
try:
out = subprocess.check_output(["cmake", "--version"])
except OSError:
raise RuntimeError(
"CMake must be installed to build the following extensions: "
+ ", ".join(e.name for e in self.extensions)
)
(cc, cxx) = find_compilers()
# Make a copy of the environment so that we can modify it
env = os.environ.copy()
# Search the environment for any variables starting with "TOAST_BUILD_".
# We extract these and convert them into cmake options.
cmake_opts = dict()
cpat = re.compile(r"TOAST_BUILD_(.*)")
for k, v in env.items():
mat = cpat.match(k)
if mat is not None:
cmake_opts[mat.group(1)] = v
cmake_args = ["-DPYTHON_EXECUTABLE=" + sys.executable]
cfg = "Debug" if self.debug else "Release"
build_args = ["--config", cfg]
cmake_args += ["-DCMAKE_BUILD_TYPE=" + cfg]
# Set compilers
if cc is not None:
# Use serial compilers that were used when building MPI
cmake_args += ["-DCMAKE_C_COMPILER={}".format(cc)]
elif "CMAKE_C_COMPILER" in cmake_opts:
# Get these from the environment
cmake_args += [
"-DCMAKE_C_COMPILER={}".format(cmake_opts["CMAKE_C_COMPILER"])
]
_ = cmake_opts.pop("CMAKE_C_COMPILER")
else:
# We just let cmake guess the compilers and hope for the best...
pass
if cxx is not None:
# Use serial compilers that were used when building MPI
cmake_args += ["-DCMAKE_CXX_COMPILER={}".format(cxx)]
elif "CMAKE_CXX_COMPILER" in cmake_opts:
# Get these from the environment
cmake_args += [
"-DCMAKE_CXX_COMPILER={}".format(cmake_opts["CMAKE_CXX_COMPILER"])
]
_ = cmake_opts.pop("CMAKE_CXX_COMPILER")
else:
# We just let cmake guess the compilers and hope for the best...
pass
# Append any other TOAST_BUILD_ options to the cmake args
for k, v in cmake_opts.items():
cmake_args += ["-D{}={}".format(k, v)]
# Assuming Makefiles
build_args += ["--", "-j2"]
self.build_args = build_args
env["CXXFLAGS"] = "{} -DVERSION_INFO=\\'{}\\'".format(
env.get("CXXFLAGS", ""), get_version()
)
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
# CMakeLists.txt is in the same directory as this setup.py file
cmake_list_dir = os.path.abspath(os.path.dirname(__file__))
print("-" * 10, "Running CMake prepare", "-" * 40)
subprocess.check_call(
["cmake", cmake_list_dir] + cmake_args, cwd=self.build_temp, env=env
)
print("-" * 10, "Building extensions", "-" * 40)
cmake_cmd = ["cmake", "--build", "."] + self.build_args
subprocess.check_call(cmake_cmd, cwd=self.build_temp)
# Move from build temp to final position
for ext in self.extensions:
self.move_output(ext)
def move_output(self, ext):
extpath = self.get_ext_filename(ext.name)
build_temp = Path(self.build_temp).resolve()
dest_path = Path(self.get_ext_fullpath(ext.name)).resolve()
source_path = os.path.join(build_temp, "src", extpath)
dest_directory = dest_path.parents[0]
dest_directory.mkdir(parents=True, exist_ok=True)
self.copy_file(source_path, dest_path)
ext_modules = [CMakeExtension("toast._libtoast")]
scripts = glob.glob("pipelines/*.py")
def readme():
with open("README.md") as f:
return f.read()
conf = dict()
conf["name"] = "toast"
conf["description"] = "Time Ordered Astrophysics Scalable Tools"
conf["long_description"] = readme()
conf["long_description_content_type"] = "text/markdown"
conf["author"] = "Theodore Kisner, Reijo Keskitalo"
conf["author_email"] = "[email protected]"
conf["license"] = "BSD"
conf["url"] = "https://github.com/hpc4cmb/toast"
conf["version"] = get_version()
conf["python_requires"] = ">=3.7.0"
conf["setup_requires"] = (["wheel"],)
conf["install_requires"] = [
"cmake",
"numpy",
"scipy",
"healpy",
"matplotlib",
"ephem",
"h5py",
]
conf["extras_require"] = {"mpi": ["mpi4py>=3.0"]}
conf["packages"] = find_packages("src")
conf["package_dir"] = {"": "src"}
conf["ext_modules"] = ext_modules
conf["scripts"] = scripts
conf["cmdclass"] = {"build_ext": CMakeBuild}
conf["zip_safe"] = False
conf["classifiers"] = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Astronomy",
]
setup(**conf)