-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathsetup.py
More file actions
360 lines (348 loc) · 14.8 KB
/
setup.py
File metadata and controls
360 lines (348 loc) · 14.8 KB
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
"""A python implementation of Gate Set Tomography"""
from warnings import warn
from collections import defaultdict
import os
try:
from setuptools import setup, find_packages
from setuptools import Extension
from setuptools.command.build_ext import build_ext
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
from distutils.command.build_ext import build_ext
# Configure setuptools_scm to build a custom version (for more info,
# see https://stackoverflow.com/a/78657279 and https://setuptools-scm.readthedocs.io/en/latest/extending)
# If on a clean release, it uses no local scheme
# Otherwise, it uses g{commit hash}.{branch}.[CLEAN | d{date}] for the local scheme,
# where the last entry is "CLEAN" if everything is committed and otherwise the date of last commit
def custom_version(version):
from setuptools_scm.version import get_local_node_and_date
local_scheme = ""
if version.dirty or version.distance:
node_and_date = get_local_node_and_date(version)
if version.dirty:
node, date = node_and_date.split('.')
else:
node = node_and_date
date = "CLEAN"
local_scheme = node + f'.{version.branch}.' + date
return local_scheme
#Create a custom command class that allows us to specify different compiler flags
# based on the compiler (~platform) being used (see
# https://stackoverflow.com/questions/30985862/how-to-identify-compiler-before-defining-cython-extensions)
BUILD_ARGS = defaultdict(lambda: ["-std=c++11"]) # ,"-stdlib=libc++", '-O3', '-g0'
for compiler, args in [
('msvc', []),
('gcc', ["-std=c++11", "-Wno-deprecated"])]:
BUILD_ARGS[compiler] = args
class build_ext_compiler_check(build_ext):
def build_extensions(self):
compiler = self.compiler.compiler_type
args = BUILD_ARGS[compiler]
print("\n\nCompiler: ",compiler,"\n")
for ext in self.extensions:
if ext.language == "c++": # only do this for c++ files, so we can specify -std=c++11, etc.
ext.extra_compile_args = args
build_ext.build_extensions(self)
# Check if environment can try to build extensions
try:
import numpy as np
from Cython.Build import cythonize
if "PYGSTI_SKIP_CYTHON" in os.environ:
warn("PYGSTI_SKIP_CYTHON env variable defined. Installing without Cython extensions...")
extensions = None
else:
ext_modules = [
Extension(
"pygsti.tools.fastcalc",
sources=["pygsti/tools/fastcalc.pyx"], # , "fastcalc.c
# # Cython docs on NumPy usage should mention this!
# define_macros = [('NPY_NO_DEPRECATED_API','NPY_1_7_API_VERSION')],
# # leave above commented
# # see http://docs.cython.org/en/latest/src/reference/compilation.html#configuring-the-c-build
# define_macros = [('CYTHON_TRACE','1')], #for profiling
include_dirs=['.', np.get_include()]
# libraries=['m'] #math lib?
),
Extension(
"pygsti.baseobjs.opcalc.fastopcalc",
sources=["pygsti/baseobjs/opcalc/fastopcalc.pyx"],
include_dirs=['.', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.basereps_cython",
sources=[
"pygsti/evotypes/basereps_cython.pyx",
"pygsti/evotypes/basecreps.cpp"
],
include_dirs=['.', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.densitymx.statereps",
sources=[
"pygsti/evotypes/densitymx/statereps.pyx",
"pygsti/evotypes/densitymx/statecreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.densitymx.opreps",
sources=[
"pygsti/evotypes/densitymx/opreps.pyx",
"pygsti/evotypes/densitymx/opcreps.cpp",
"pygsti/evotypes/densitymx/statecreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.densitymx.effectreps",
sources=[
"pygsti/evotypes/densitymx/effectreps.pyx",
"pygsti/evotypes/densitymx/effectcreps.cpp",
"pygsti/evotypes/densitymx/statecreps.cpp",
"pygsti/evotypes/densitymx/opcreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.statevec.statereps",
sources=[
"pygsti/evotypes/statevec/statereps.pyx",
"pygsti/evotypes/statevec/statecreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.statevec.opreps",
sources=[
"pygsti/evotypes/statevec/opreps.pyx",
"pygsti/evotypes/statevec/opcreps.cpp",
"pygsti/evotypes/statevec/statecreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.statevec.effectreps",
sources=[
"pygsti/evotypes/statevec/effectreps.pyx",
"pygsti/evotypes/statevec/effectcreps.cpp",
"pygsti/evotypes/statevec/statecreps.cpp",
"pygsti/evotypes/statevec/opcreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.statevec.termreps",
sources=[
"pygsti/evotypes/statevec/termreps.pyx",
"pygsti/evotypes/statevec/termcreps.cpp",
"pygsti/evotypes/statevec/statecreps.cpp",
"pygsti/evotypes/statevec/opcreps.cpp",
"pygsti/evotypes/statevec/effectcreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.stabilizer.statereps",
sources=[
"pygsti/evotypes/stabilizer/statereps.pyx",
"pygsti/evotypes/stabilizer/statecreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.stabilizer.opreps",
sources=[
"pygsti/evotypes/stabilizer/opreps.pyx",
"pygsti/evotypes/stabilizer/opcreps.cpp",
"pygsti/evotypes/stabilizer/statecreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.stabilizer.effectreps",
sources=[
"pygsti/evotypes/stabilizer/effectreps.pyx",
"pygsti/evotypes/stabilizer/effectcreps.cpp",
"pygsti/evotypes/stabilizer/statecreps.cpp",
"pygsti/evotypes/stabilizer/opcreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.evotypes.stabilizer.termreps",
sources=[
"pygsti/evotypes/stabilizer/termreps.pyx",
"pygsti/evotypes/stabilizer/termcreps.cpp",
"pygsti/evotypes/stabilizer/statecreps.cpp",
"pygsti/evotypes/stabilizer/opcreps.cpp",
"pygsti/evotypes/stabilizer/effectcreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.forwardsims.mapforwardsim_calc_densitymx",
sources=[
"pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx",
"pygsti/evotypes/densitymx/statecreps.cpp",
],
include_dirs=['.', 'pygsti/evotypes', 'pygsti/evotypes/densitymx', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.forwardsims.termforwardsim_calc_statevec",
sources=[
"pygsti/forwardsims/termforwardsim_calc_statevec.pyx",
"pygsti/evotypes/statevec/statecreps.cpp",
"pygsti/evotypes/basecreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', 'pygsti/evotypes/statevec', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.forwardsims.termforwardsim_calc_stabilizer",
sources=[
"pygsti/forwardsims/termforwardsim_calc_stabilizer.pyx",
"pygsti/evotypes/stabilizer/statecreps.cpp",
"pygsti/evotypes/basecreps.cpp"
],
include_dirs=['.', 'pygsti/evotypes', 'pygsti/evotypes/stabilizer', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
),
Extension(
"pygsti.circuits.circuitparser.fastcircuitparser",
sources=["pygsti/circuits/circuitparser/fastcircuitparser.pyx"],
include_dirs=['.', np.get_include()],
language="c++",
extra_link_args=["-std=c++11"]
)
]
extensions = cythonize(ext_modules, compiler_directives={'language_level': "3"}, exclude_failures="PYGSTI_CYTHON_EXCLUDE_FAILURES" in os.environ)
except ImportError:
warn("Extensions build tools are not available. Installing without Cython extensions...")
extensions = None
try:
setup(
use_scm_version={'version_scheme': 'no-guess-dev', 'version_file': "pygsti/_version.py", 'local_scheme': custom_version},
cmdclass={'build_ext': build_ext_compiler_check},
ext_modules=extensions,
packages=find_packages(where='.', include=['pygsti']),
package_data={
'pygsti.tools': ['fastcalc.pyx'],
'pygsti.evotypes': [
'basereps_cython.pxd',
'basereps_cython.pyx',
'basecreps.cpp',
'basecreps.h'],
'pygsti.evotypes.densitymx': [
'opreps.pxd',
'opreps.pyx',
'opcreps.cpp',
'opcreps.h',
'statereps.pxd',
'statereps.pyx',
'statecreps.cpp',
'statecreps.h',
'effectreps.pxd',
'effectreps.pyx',
'effectcreps.cpp',
'effectcreps.h'
],
'pygsti.evotypes.statevec': [
'opreps.pxd',
'opreps.pyx',
'opcreps.cpp',
'opcreps.h',
'statereps.pxd',
'statereps.pyx',
'statecreps.cpp',
'statecreps.h',
'effectreps.pxd',
'effectreps.pyx',
'effectcreps.cpp',
'effectcreps.h',
'termreps.pxd',
'termreps.pyx',
'termcreps.cpp',
'termcreps.h',
],
'pygsti.evotypes.stabilizer': [
'opreps.pxd',
'opreps.pyx',
'opcreps.cpp',
'opcreps.h',
'statereps.pxd',
'statereps.pyx',
'statecreps.cpp',
'statecreps.h',
'effectreps.pxd',
'effectreps.pyx',
'effectcreps.cpp',
'effectcreps.h',
'termreps.pxd',
'termreps.pyx',
'termcreps.cpp',
'termcreps.h',
],
'pygsti.forwardsims': [
'mapforwardsim_calc_densitymx.pyx',
'termforwardsim_calc_statevec.pyx',
'termforwardsim_calc_stabilizer.pyx'
],
'pygsti.baseobjs.opcalc': ['fastopcalc.pyx'],
'pygsti.circuits.circuitparser': ['fastcircuitparser.pyx'],
'pygsti.report': [
'templates/*.tex',
'templates/*.html',
'templates/*.json',
'templates/*.ipynb',
'templates/report_notebook/*.txt',
'templates/standard_html_report/*.html',
'templates/standard_html_report/tabs/*.html',
'templates/idletomography_html_report/*.html',
'templates/idletomography_html_report/tabs/*.html',
'templates/drift_html_report/*.html',
'templates/drift_html_report/tabs/*.html',
'templates/offline/README.txt',
'templates/offline/*.js',
'templates/offline/*.css',
'templates/offline/fonts/*',
'templates/offline/images/*'
]
}
)
except SystemExit as e:
print("\nAn error occurred while compiling Cython extensions.")
print("Either fix the compilation issue or use the PYGSTI_CYTHON_SKIP to skip compilation,",)
print('e.g. PYGSTI_CYTHON_SKIP=1 pip install pygsti')
print("To enable partial Cython failures (i.e. the exclude_failures=True flag of cythonize), use PYGSTI_CYTHON_EXCLUDE_FAILURES instead.\n")
raise e