-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
514 lines (493 loc) · 19.1 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
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
"""A python implementation of Gate Set Tomography"""
from warnings import warn
from collections import defaultdict
try:
from setuptools import setup
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
descriptionTxt = """\
Gate set tomography (GST) is a quantum tomography protocol that provides full characterization of a quantum logic device
(e.g. a qubit). GST estimates a set of quantum logic gates and (simultaneously) the associated state preparation and
measurement (SPAM) operations. GST is self-calibrating. This eliminates a key limitation of traditional quantum state
and process tomography, which characterize either states (assuming perfect processes) or processes (assuming perfect
state preparation and measurement), but not both together. Compared with benchmarking protocols such as randomized
benchmarking, GST provides much more detailed and accurate information about the gates, but demands more data. The
primary downside of GST has been its complexity. Whereas benchmarking and state/process tomography data can be analyzed
with relatively simple algorithms, GST requires more complex algorithms and more fine-tuning (linear GST is an exception
that can be implemented easily). pyGSTi addresses and eliminates this obstacle by providing a fully-featured, publicly
available implementation of GST in the Python programming language.
The primary goals of the pyGSTi project are to:
- provide efficient and robust implementations of Gate Set Tomography algorithms;
- allow straightforward interoperability with other software;
- provide a powerful high-level interface suited to inexperienced programmers, so that
common GST tasks can be performed using just one or two lines of code;
- use modular design to make it easy for users to modify, customize, and extend GST functionality.
"""
# Extra requirements
extras = {
'diamond_norm': [
'cvxopt',
'cvxpy'
],
'memory_profiling': ['psutil'],
'multiprocessor': ['mpi4py'],
'evolutionary_optimization': ['deap'],
'report_pickling': ['pandas'],
'report_pdf_figures': ['matplotlib'],
'html_reports': ['jinja2', 'MarkupSafe'],
'notebooks': [
'ipython',
'notebook',
'jupyter_server'
],
'mongodb': ['pymongo'],
'msgpack': ['msgpack'],
'extensions': ['cython'],
'linting': [
'autopep8',
'flake8'
],
'interpygate': ['csaps'],
'testing': [
'pytest',
'pytest-xdist',
'pytest-cov',
'nbval',
'csaps',
'cvxopt',
'cvxpy',
'cython',
'matplotlib',
'mpi4py',
'msgpack',
'packaging',
'pandas',
'psutil',
'zmq',
'jinja2',
'seaborn',
'scipy',
'ply',
'qibo<=0.1.7',
'cirq-core',
'notebook',
'ipython',
'jupyter_server'
]
}
# Add `complete' target, which will install all extras listed above
extras['complete'] = list({pkg for req in extras.values() for pkg in req})
# Add `no_mpi' target, identical to `complete' target but without mpi4py,
# which is unavailable in some common environments.
extras['no_mpi'] = [e for e in extras['complete'] if e != 'mpi4py']
# Add testing_no_cython target, identical to `testing` but no cython
extras['testing_no_cython'] = [e for e in extras['testing'] if e != 'cython']
# Configure setuptools_scm to build the post-release version number
def custom_version():
from setuptools_scm.version import postrelease_version
return {'version_scheme': postrelease_version,
'write_to': "pygsti/_version.py",
'local_scheme': "no-local-version" # because pypi doesn't suppport it
}
#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)
def setup_with_extensions(extensions=None):
setup(
name='pyGSTi',
use_scm_version=custom_version,
cmdclass={'build_ext': build_ext_compiler_check},
description='A python implementation of Gate Set Tomography',
long_description=descriptionTxt,
author='Erik Nielsen, Stefan Seritan, Corey Ostrove, Riley Murray, Jordan Hines, ' +\
'Kenneth Rudinger, Timothy Proctor, John Gamble, Robin Blume-Kohout',
author_email='[email protected]',
packages=[
'pygsti',
'pygsti.algorithms',
'pygsti.baseobjs',
'pygsti.baseobjs.opcalc',
'pygsti.circuits',
'pygsti.circuits.circuitparser',
'pygsti.data',
'pygsti.drivers',
'pygsti.evotypes',
'pygsti.evotypes.densitymx',
'pygsti.evotypes.densitymx_slow',
'pygsti.evotypes.statevec',
'pygsti.evotypes.statevec_slow',
'pygsti.evotypes.stabilizer',
'pygsti.evotypes.stabilizer_slow',
'pygsti.evotypes.chp',
'pygsti.evotypes.qibo',
'pygsti.extras',
'pygsti.extras.rb',
'pygsti.extras.rpe',
'pygsti.extras.drift',
'pygsti.extras.ibmq',
'pygsti.extras.idletomography',
'pygsti.extras.interpygate',
'pygsti.extras.crosstalk',
'pygsti.extras.devices',
'pygsti.forwardsims',
'pygsti.io',
'pygsti.layouts',
'pygsti.models',
'pygsti.modelmembers',
'pygsti.modelmembers.states',
'pygsti.modelmembers.operations',
'pygsti.modelmembers.instruments',
'pygsti.modelmembers.povms',
'pygsti.modelpacks',
'pygsti.modelpacks.legacy',
'pygsti.objectivefns',
'pygsti.optimize',
'pygsti.processors',
'pygsti.protocols',
'pygsti.report',
'pygsti.report.section',
'pygsti.serialization',
'pygsti.tools',
],
package_dir={'': '.'},
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/*'
]
},
setup_requires=['setuptools_scm'],
install_requires=[
'numpy>=1.15.0',
'scipy',
'plotly',
'pandas'
],
extras_require=extras,
python_requires='>=3.5',
platforms=["any"],
url='http://www.pygsti.info',
download_url='https://github.com/pyGSTio/pyGSTi/tarball/master',
keywords=[
'pygsti',
'tomography',
'gate set',
'pigsty',
'pig',
'quantum',
'qubit'
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix"
],
ext_modules=extensions or [],
)
try:
# Try to compile extensions first
import numpy as np
from Cython.Build import cythonize
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"]
)
]
setup_with_extensions(cythonize(ext_modules, compiler_directives={'language_level': "3"}, exclude_failures=True))
except ImportError:
# Cython or numpy is not available
warn("Extensions build tools are not available. Installing without Cython extensions...")
setup_with_extensions()
except SystemExit:
# Extension compilation failed
warn("Error in extension compilation. Installing without Cython extensions...")
setup_with_extensions()