pyGSTi 0.9.12__cp310-cp310-win_amd64.whl → 0.9.13__cp310-cp310-win_amd64.whl
Sign up to get free protection for your applications and to get access to all the features.
- pyGSTi-0.9.13.dist-info/METADATA +197 -0
- {pyGSTi-0.9.12.dist-info → pyGSTi-0.9.13.dist-info}/RECORD +211 -220
- {pyGSTi-0.9.12.dist-info → pyGSTi-0.9.13.dist-info}/WHEEL +1 -1
- pygsti/_version.py +2 -2
- pygsti/algorithms/contract.py +1 -1
- pygsti/algorithms/core.py +62 -35
- pygsti/algorithms/fiducialpairreduction.py +95 -110
- pygsti/algorithms/fiducialselection.py +17 -8
- pygsti/algorithms/gaugeopt.py +2 -2
- pygsti/algorithms/germselection.py +87 -77
- pygsti/algorithms/mirroring.py +0 -388
- pygsti/algorithms/randomcircuit.py +165 -1333
- pygsti/algorithms/rbfit.py +0 -234
- pygsti/baseobjs/basis.py +94 -396
- pygsti/baseobjs/errorgenbasis.py +0 -132
- pygsti/baseobjs/errorgenspace.py +0 -10
- pygsti/baseobjs/label.py +52 -168
- pygsti/baseobjs/opcalc/fastopcalc.cp310-win_amd64.pyd +0 -0
- pygsti/baseobjs/opcalc/fastopcalc.pyx +2 -2
- pygsti/baseobjs/polynomial.py +13 -595
- pygsti/baseobjs/protectedarray.py +72 -132
- pygsti/baseobjs/statespace.py +1 -0
- pygsti/circuits/__init__.py +1 -1
- pygsti/circuits/circuit.py +753 -504
- pygsti/circuits/circuitconstruction.py +0 -4
- pygsti/circuits/circuitlist.py +47 -5
- pygsti/circuits/circuitparser/__init__.py +8 -8
- pygsti/circuits/circuitparser/fastcircuitparser.cp310-win_amd64.pyd +0 -0
- pygsti/circuits/circuitstructure.py +3 -3
- pygsti/circuits/cloudcircuitconstruction.py +27 -14
- pygsti/data/datacomparator.py +4 -9
- pygsti/data/dataset.py +51 -46
- pygsti/data/hypothesistest.py +0 -7
- pygsti/drivers/bootstrap.py +0 -49
- pygsti/drivers/longsequence.py +46 -10
- pygsti/evotypes/basereps_cython.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/chp/opreps.py +0 -61
- pygsti/evotypes/chp/statereps.py +0 -32
- pygsti/evotypes/densitymx/effectcreps.cpp +9 -10
- pygsti/evotypes/densitymx/effectreps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/densitymx/effectreps.pyx +1 -1
- pygsti/evotypes/densitymx/opreps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/densitymx/opreps.pyx +2 -2
- pygsti/evotypes/densitymx/statereps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/densitymx/statereps.pyx +1 -1
- pygsti/evotypes/densitymx_slow/effectreps.py +7 -23
- pygsti/evotypes/densitymx_slow/opreps.py +16 -23
- pygsti/evotypes/densitymx_slow/statereps.py +10 -3
- pygsti/evotypes/evotype.py +39 -2
- pygsti/evotypes/stabilizer/effectreps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/stabilizer/effectreps.pyx +0 -4
- pygsti/evotypes/stabilizer/opreps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/stabilizer/opreps.pyx +0 -4
- pygsti/evotypes/stabilizer/statereps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/stabilizer/statereps.pyx +1 -5
- pygsti/evotypes/stabilizer/termreps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/stabilizer/termreps.pyx +0 -7
- pygsti/evotypes/stabilizer_slow/effectreps.py +0 -22
- pygsti/evotypes/stabilizer_slow/opreps.py +0 -4
- pygsti/evotypes/stabilizer_slow/statereps.py +0 -4
- pygsti/evotypes/statevec/effectreps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/statevec/effectreps.pyx +1 -1
- pygsti/evotypes/statevec/opreps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/statevec/opreps.pyx +2 -2
- pygsti/evotypes/statevec/statereps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/statevec/statereps.pyx +1 -1
- pygsti/evotypes/statevec/termreps.cp310-win_amd64.pyd +0 -0
- pygsti/evotypes/statevec/termreps.pyx +0 -7
- pygsti/evotypes/statevec_slow/effectreps.py +0 -3
- pygsti/evotypes/statevec_slow/opreps.py +0 -5
- pygsti/extras/__init__.py +0 -1
- pygsti/extras/drift/signal.py +1 -1
- pygsti/extras/drift/stabilityanalyzer.py +3 -1
- pygsti/extras/interpygate/__init__.py +12 -0
- pygsti/extras/interpygate/core.py +0 -36
- pygsti/extras/interpygate/process_tomography.py +44 -10
- pygsti/extras/rpe/rpeconstruction.py +0 -2
- pygsti/forwardsims/__init__.py +1 -0
- pygsti/forwardsims/forwardsim.py +50 -93
- pygsti/forwardsims/mapforwardsim.py +78 -20
- pygsti/forwardsims/mapforwardsim_calc_densitymx.cp310-win_amd64.pyd +0 -0
- pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx +65 -66
- pygsti/forwardsims/mapforwardsim_calc_generic.py +91 -13
- pygsti/forwardsims/matrixforwardsim.py +72 -17
- pygsti/forwardsims/termforwardsim.py +9 -111
- pygsti/forwardsims/termforwardsim_calc_stabilizer.cp310-win_amd64.pyd +0 -0
- pygsti/forwardsims/termforwardsim_calc_statevec.cp310-win_amd64.pyd +0 -0
- pygsti/forwardsims/termforwardsim_calc_statevec.pyx +0 -651
- pygsti/forwardsims/torchfwdsim.py +265 -0
- pygsti/forwardsims/weakforwardsim.py +2 -2
- pygsti/io/__init__.py +1 -2
- pygsti/io/mongodb.py +0 -2
- pygsti/io/stdinput.py +6 -22
- pygsti/layouts/copalayout.py +10 -12
- pygsti/layouts/distlayout.py +0 -40
- pygsti/layouts/maplayout.py +103 -25
- pygsti/layouts/matrixlayout.py +99 -60
- pygsti/layouts/prefixtable.py +1534 -52
- pygsti/layouts/termlayout.py +1 -1
- pygsti/modelmembers/instruments/instrument.py +3 -3
- pygsti/modelmembers/instruments/tpinstrument.py +2 -2
- pygsti/modelmembers/modelmember.py +0 -17
- pygsti/modelmembers/operations/__init__.py +3 -4
- pygsti/modelmembers/operations/affineshiftop.py +206 -0
- pygsti/modelmembers/operations/composederrorgen.py +1 -1
- pygsti/modelmembers/operations/composedop.py +1 -24
- pygsti/modelmembers/operations/denseop.py +5 -5
- pygsti/modelmembers/operations/eigpdenseop.py +2 -2
- pygsti/modelmembers/operations/embeddederrorgen.py +1 -1
- pygsti/modelmembers/operations/embeddedop.py +0 -1
- pygsti/modelmembers/operations/experrorgenop.py +5 -2
- pygsti/modelmembers/operations/fullarbitraryop.py +1 -0
- pygsti/modelmembers/operations/fullcptpop.py +2 -2
- pygsti/modelmembers/operations/fulltpop.py +28 -6
- pygsti/modelmembers/operations/fullunitaryop.py +5 -4
- pygsti/modelmembers/operations/lindbladcoefficients.py +93 -78
- pygsti/modelmembers/operations/lindbladerrorgen.py +268 -441
- pygsti/modelmembers/operations/linearop.py +7 -27
- pygsti/modelmembers/operations/opfactory.py +1 -1
- pygsti/modelmembers/operations/repeatedop.py +1 -24
- pygsti/modelmembers/operations/staticstdop.py +1 -1
- pygsti/modelmembers/povms/__init__.py +3 -3
- pygsti/modelmembers/povms/basepovm.py +7 -36
- pygsti/modelmembers/povms/complementeffect.py +4 -9
- pygsti/modelmembers/povms/composedeffect.py +0 -320
- pygsti/modelmembers/povms/computationaleffect.py +1 -1
- pygsti/modelmembers/povms/computationalpovm.py +3 -1
- pygsti/modelmembers/povms/effect.py +3 -5
- pygsti/modelmembers/povms/marginalizedpovm.py +3 -81
- pygsti/modelmembers/povms/tppovm.py +74 -2
- pygsti/modelmembers/states/__init__.py +2 -5
- pygsti/modelmembers/states/composedstate.py +0 -317
- pygsti/modelmembers/states/computationalstate.py +3 -3
- pygsti/modelmembers/states/cptpstate.py +4 -4
- pygsti/modelmembers/states/densestate.py +10 -8
- pygsti/modelmembers/states/fullpurestate.py +0 -24
- pygsti/modelmembers/states/purestate.py +1 -1
- pygsti/modelmembers/states/state.py +5 -6
- pygsti/modelmembers/states/tpstate.py +28 -10
- pygsti/modelmembers/term.py +3 -6
- pygsti/modelmembers/torchable.py +50 -0
- pygsti/modelpacks/_modelpack.py +1 -1
- pygsti/modelpacks/smq1Q_ZN.py +3 -1
- pygsti/modelpacks/smq2Q_XXYYII.py +2 -1
- pygsti/modelpacks/smq2Q_XY.py +3 -3
- pygsti/modelpacks/smq2Q_XYI.py +2 -2
- pygsti/modelpacks/smq2Q_XYICNOT.py +3 -3
- pygsti/modelpacks/smq2Q_XYICPHASE.py +3 -3
- pygsti/modelpacks/smq2Q_XYXX.py +1 -1
- pygsti/modelpacks/smq2Q_XYZICNOT.py +3 -3
- pygsti/modelpacks/smq2Q_XYZZ.py +1 -1
- pygsti/modelpacks/stdtarget.py +0 -121
- pygsti/models/cloudnoisemodel.py +1 -2
- pygsti/models/explicitcalc.py +3 -3
- pygsti/models/explicitmodel.py +3 -13
- pygsti/models/fogistore.py +5 -3
- pygsti/models/localnoisemodel.py +1 -2
- pygsti/models/memberdict.py +0 -12
- pygsti/models/model.py +801 -68
- pygsti/models/modelconstruction.py +4 -4
- pygsti/models/modelnoise.py +2 -2
- pygsti/models/modelparaminterposer.py +1 -1
- pygsti/models/oplessmodel.py +1 -1
- pygsti/models/qutrit.py +15 -14
- pygsti/objectivefns/objectivefns.py +75 -140
- pygsti/objectivefns/wildcardbudget.py +2 -7
- pygsti/optimize/__init__.py +1 -0
- pygsti/optimize/arraysinterface.py +28 -0
- pygsti/optimize/customcg.py +0 -12
- pygsti/optimize/customlm.py +129 -323
- pygsti/optimize/customsolve.py +2 -2
- pygsti/optimize/optimize.py +0 -84
- pygsti/optimize/simplerlm.py +841 -0
- pygsti/optimize/wildcardopt.py +19 -598
- pygsti/protocols/confidenceregionfactory.py +28 -14
- pygsti/protocols/estimate.py +31 -14
- pygsti/protocols/gst.py +238 -142
- pygsti/protocols/modeltest.py +19 -12
- pygsti/protocols/protocol.py +9 -37
- pygsti/protocols/rb.py +450 -79
- pygsti/protocols/treenode.py +8 -2
- pygsti/protocols/vb.py +108 -206
- pygsti/protocols/vbdataframe.py +1 -1
- pygsti/report/factory.py +0 -15
- pygsti/report/fogidiagram.py +1 -17
- pygsti/report/modelfunction.py +12 -3
- pygsti/report/mpl_colormaps.py +1 -1
- pygsti/report/plothelpers.py +11 -3
- pygsti/report/report.py +16 -0
- pygsti/report/reportables.py +41 -37
- pygsti/report/templates/offline/pygsti_dashboard.css +6 -0
- pygsti/report/templates/offline/pygsti_dashboard.js +12 -0
- pygsti/report/workspace.py +2 -14
- pygsti/report/workspaceplots.py +328 -505
- pygsti/tools/basistools.py +9 -36
- pygsti/tools/edesigntools.py +124 -96
- pygsti/tools/fastcalc.cp310-win_amd64.pyd +0 -0
- pygsti/tools/fastcalc.pyx +35 -81
- pygsti/tools/internalgates.py +151 -15
- pygsti/tools/jamiolkowski.py +5 -5
- pygsti/tools/lindbladtools.py +19 -11
- pygsti/tools/listtools.py +0 -114
- pygsti/tools/matrixmod2.py +1 -1
- pygsti/tools/matrixtools.py +173 -339
- pygsti/tools/nameddict.py +1 -1
- pygsti/tools/optools.py +154 -88
- pygsti/tools/pdftools.py +0 -25
- pygsti/tools/rbtheory.py +3 -320
- pygsti/tools/slicetools.py +64 -12
- pyGSTi-0.9.12.dist-info/METADATA +0 -157
- pygsti/algorithms/directx.py +0 -711
- pygsti/evotypes/qibo/__init__.py +0 -33
- pygsti/evotypes/qibo/effectreps.py +0 -78
- pygsti/evotypes/qibo/opreps.py +0 -376
- pygsti/evotypes/qibo/povmreps.py +0 -98
- pygsti/evotypes/qibo/statereps.py +0 -174
- pygsti/extras/rb/__init__.py +0 -13
- pygsti/extras/rb/benchmarker.py +0 -957
- pygsti/extras/rb/dataset.py +0 -378
- pygsti/extras/rb/io.py +0 -814
- pygsti/extras/rb/simulate.py +0 -1020
- pygsti/io/legacyio.py +0 -385
- pygsti/modelmembers/povms/denseeffect.py +0 -142
- {pyGSTi-0.9.12.dist-info → pyGSTi-0.9.13.dist-info}/LICENSE +0 -0
- {pyGSTi-0.9.12.dist-info → pyGSTi-0.9.13.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,197 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: pyGSTi
|
3
|
+
Version: 0.9.13
|
4
|
+
Summary: A python implementation of Gate Set Tomography
|
5
|
+
Home-page: http://www.pygsti.info
|
6
|
+
Download-URL: https://github.com/pyGSTio/pyGSTi/tarball/master
|
7
|
+
Author: Erik Nielsen, Stefan Seritan, Corey Ostrove, Riley Murray, Jordan Hines, Kenneth Rudinger, Timothy Proctor, John Gamble, Robin Blume-Kohout
|
8
|
+
Author-email: pygsti@sandia.gov
|
9
|
+
Keywords: pygsti,tomography,gate set,pigsty,pig,quantum,qubit
|
10
|
+
Platform: any
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
14
|
+
Classifier: Programming Language :: Python
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
16
|
+
Classifier: Operating System :: Microsoft :: Windows
|
17
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
18
|
+
Classifier: Operating System :: Unix
|
19
|
+
Requires-Python: >=3.8
|
20
|
+
License-File: LICENSE
|
21
|
+
Requires-Dist: numpy>=1.15.0
|
22
|
+
Requires-Dist: scipy
|
23
|
+
Requires-Dist: plotly
|
24
|
+
Requires-Dist: pandas
|
25
|
+
Requires-Dist: networkx
|
26
|
+
Provides-Extra: pytorch
|
27
|
+
Requires-Dist: torch; extra == "pytorch"
|
28
|
+
Provides-Extra: diamond-norm
|
29
|
+
Requires-Dist: cvxopt; extra == "diamond-norm"
|
30
|
+
Requires-Dist: cvxpy; extra == "diamond-norm"
|
31
|
+
Provides-Extra: memory-profiling
|
32
|
+
Requires-Dist: psutil; extra == "memory-profiling"
|
33
|
+
Provides-Extra: multiprocessor
|
34
|
+
Requires-Dist: mpi4py; extra == "multiprocessor"
|
35
|
+
Provides-Extra: evolutionary-optimization
|
36
|
+
Requires-Dist: deap; extra == "evolutionary-optimization"
|
37
|
+
Provides-Extra: report-pickling
|
38
|
+
Requires-Dist: pandas; extra == "report-pickling"
|
39
|
+
Provides-Extra: report-pdf-figures
|
40
|
+
Requires-Dist: matplotlib; extra == "report-pdf-figures"
|
41
|
+
Provides-Extra: html-reports
|
42
|
+
Requires-Dist: jinja2; extra == "html-reports"
|
43
|
+
Requires-Dist: MarkupSafe; extra == "html-reports"
|
44
|
+
Provides-Extra: notebooks
|
45
|
+
Requires-Dist: ipython; extra == "notebooks"
|
46
|
+
Requires-Dist: notebook; extra == "notebooks"
|
47
|
+
Requires-Dist: jupyter_server; extra == "notebooks"
|
48
|
+
Provides-Extra: mongodb
|
49
|
+
Requires-Dist: pymongo; extra == "mongodb"
|
50
|
+
Provides-Extra: msgpack
|
51
|
+
Requires-Dist: msgpack; extra == "msgpack"
|
52
|
+
Provides-Extra: extensions
|
53
|
+
Requires-Dist: cython; extra == "extensions"
|
54
|
+
Provides-Extra: linting
|
55
|
+
Requires-Dist: autopep8; extra == "linting"
|
56
|
+
Requires-Dist: flake8; extra == "linting"
|
57
|
+
Provides-Extra: interpygate
|
58
|
+
Requires-Dist: csaps; extra == "interpygate"
|
59
|
+
Provides-Extra: testing
|
60
|
+
Requires-Dist: pytest; extra == "testing"
|
61
|
+
Requires-Dist: pytest-xdist; extra == "testing"
|
62
|
+
Requires-Dist: pytest-cov; extra == "testing"
|
63
|
+
Requires-Dist: nbval; extra == "testing"
|
64
|
+
Requires-Dist: csaps; extra == "testing"
|
65
|
+
Requires-Dist: cvxopt; extra == "testing"
|
66
|
+
Requires-Dist: cvxpy; extra == "testing"
|
67
|
+
Requires-Dist: cython; extra == "testing"
|
68
|
+
Requires-Dist: matplotlib; extra == "testing"
|
69
|
+
Requires-Dist: mpi4py; extra == "testing"
|
70
|
+
Requires-Dist: msgpack; extra == "testing"
|
71
|
+
Requires-Dist: packaging; extra == "testing"
|
72
|
+
Requires-Dist: pandas; extra == "testing"
|
73
|
+
Requires-Dist: psutil; extra == "testing"
|
74
|
+
Requires-Dist: zmq; extra == "testing"
|
75
|
+
Requires-Dist: jinja2; extra == "testing"
|
76
|
+
Requires-Dist: seaborn; extra == "testing"
|
77
|
+
Requires-Dist: scipy; extra == "testing"
|
78
|
+
Requires-Dist: ply; extra == "testing"
|
79
|
+
Requires-Dist: cirq-core; extra == "testing"
|
80
|
+
Requires-Dist: notebook; extra == "testing"
|
81
|
+
Requires-Dist: ipython; extra == "testing"
|
82
|
+
Requires-Dist: jupyter_server; extra == "testing"
|
83
|
+
Requires-Dist: torch; extra == "testing"
|
84
|
+
Provides-Extra: complete
|
85
|
+
Requires-Dist: autopep8; extra == "complete"
|
86
|
+
Requires-Dist: cvxpy; extra == "complete"
|
87
|
+
Requires-Dist: ipython; extra == "complete"
|
88
|
+
Requires-Dist: flake8; extra == "complete"
|
89
|
+
Requires-Dist: packaging; extra == "complete"
|
90
|
+
Requires-Dist: torch; extra == "complete"
|
91
|
+
Requires-Dist: jinja2; extra == "complete"
|
92
|
+
Requires-Dist: nbval; extra == "complete"
|
93
|
+
Requires-Dist: pytest-cov; extra == "complete"
|
94
|
+
Requires-Dist: psutil; extra == "complete"
|
95
|
+
Requires-Dist: pymongo; extra == "complete"
|
96
|
+
Requires-Dist: mpi4py; extra == "complete"
|
97
|
+
Requires-Dist: cvxopt; extra == "complete"
|
98
|
+
Requires-Dist: msgpack; extra == "complete"
|
99
|
+
Requires-Dist: zmq; extra == "complete"
|
100
|
+
Requires-Dist: matplotlib; extra == "complete"
|
101
|
+
Requires-Dist: notebook; extra == "complete"
|
102
|
+
Requires-Dist: cirq-core; extra == "complete"
|
103
|
+
Requires-Dist: cython; extra == "complete"
|
104
|
+
Requires-Dist: deap; extra == "complete"
|
105
|
+
Requires-Dist: ply; extra == "complete"
|
106
|
+
Requires-Dist: pandas; extra == "complete"
|
107
|
+
Requires-Dist: pytest-xdist; extra == "complete"
|
108
|
+
Requires-Dist: MarkupSafe; extra == "complete"
|
109
|
+
Requires-Dist: scipy; extra == "complete"
|
110
|
+
Requires-Dist: jupyter_server; extra == "complete"
|
111
|
+
Requires-Dist: csaps; extra == "complete"
|
112
|
+
Requires-Dist: seaborn; extra == "complete"
|
113
|
+
Requires-Dist: pytest; extra == "complete"
|
114
|
+
Provides-Extra: no-mpi
|
115
|
+
Requires-Dist: autopep8; extra == "no-mpi"
|
116
|
+
Requires-Dist: cvxpy; extra == "no-mpi"
|
117
|
+
Requires-Dist: ipython; extra == "no-mpi"
|
118
|
+
Requires-Dist: flake8; extra == "no-mpi"
|
119
|
+
Requires-Dist: packaging; extra == "no-mpi"
|
120
|
+
Requires-Dist: torch; extra == "no-mpi"
|
121
|
+
Requires-Dist: jinja2; extra == "no-mpi"
|
122
|
+
Requires-Dist: nbval; extra == "no-mpi"
|
123
|
+
Requires-Dist: pytest-cov; extra == "no-mpi"
|
124
|
+
Requires-Dist: psutil; extra == "no-mpi"
|
125
|
+
Requires-Dist: pymongo; extra == "no-mpi"
|
126
|
+
Requires-Dist: cvxopt; extra == "no-mpi"
|
127
|
+
Requires-Dist: msgpack; extra == "no-mpi"
|
128
|
+
Requires-Dist: zmq; extra == "no-mpi"
|
129
|
+
Requires-Dist: matplotlib; extra == "no-mpi"
|
130
|
+
Requires-Dist: notebook; extra == "no-mpi"
|
131
|
+
Requires-Dist: cirq-core; extra == "no-mpi"
|
132
|
+
Requires-Dist: cython; extra == "no-mpi"
|
133
|
+
Requires-Dist: deap; extra == "no-mpi"
|
134
|
+
Requires-Dist: ply; extra == "no-mpi"
|
135
|
+
Requires-Dist: pandas; extra == "no-mpi"
|
136
|
+
Requires-Dist: pytest-xdist; extra == "no-mpi"
|
137
|
+
Requires-Dist: MarkupSafe; extra == "no-mpi"
|
138
|
+
Requires-Dist: scipy; extra == "no-mpi"
|
139
|
+
Requires-Dist: jupyter_server; extra == "no-mpi"
|
140
|
+
Requires-Dist: csaps; extra == "no-mpi"
|
141
|
+
Requires-Dist: seaborn; extra == "no-mpi"
|
142
|
+
Requires-Dist: pytest; extra == "no-mpi"
|
143
|
+
Provides-Extra: testing-no-cython
|
144
|
+
Requires-Dist: pytest; extra == "testing-no-cython"
|
145
|
+
Requires-Dist: pytest-xdist; extra == "testing-no-cython"
|
146
|
+
Requires-Dist: pytest-cov; extra == "testing-no-cython"
|
147
|
+
Requires-Dist: nbval; extra == "testing-no-cython"
|
148
|
+
Requires-Dist: csaps; extra == "testing-no-cython"
|
149
|
+
Requires-Dist: cvxopt; extra == "testing-no-cython"
|
150
|
+
Requires-Dist: cvxpy; extra == "testing-no-cython"
|
151
|
+
Requires-Dist: matplotlib; extra == "testing-no-cython"
|
152
|
+
Requires-Dist: mpi4py; extra == "testing-no-cython"
|
153
|
+
Requires-Dist: msgpack; extra == "testing-no-cython"
|
154
|
+
Requires-Dist: packaging; extra == "testing-no-cython"
|
155
|
+
Requires-Dist: pandas; extra == "testing-no-cython"
|
156
|
+
Requires-Dist: psutil; extra == "testing-no-cython"
|
157
|
+
Requires-Dist: zmq; extra == "testing-no-cython"
|
158
|
+
Requires-Dist: jinja2; extra == "testing-no-cython"
|
159
|
+
Requires-Dist: seaborn; extra == "testing-no-cython"
|
160
|
+
Requires-Dist: scipy; extra == "testing-no-cython"
|
161
|
+
Requires-Dist: ply; extra == "testing-no-cython"
|
162
|
+
Requires-Dist: cirq-core; extra == "testing-no-cython"
|
163
|
+
Requires-Dist: notebook; extra == "testing-no-cython"
|
164
|
+
Requires-Dist: ipython; extra == "testing-no-cython"
|
165
|
+
Requires-Dist: jupyter_server; extra == "testing-no-cython"
|
166
|
+
Requires-Dist: torch; extra == "testing-no-cython"
|
167
|
+
Dynamic: author
|
168
|
+
Dynamic: author-email
|
169
|
+
Dynamic: classifier
|
170
|
+
Dynamic: description
|
171
|
+
Dynamic: download-url
|
172
|
+
Dynamic: home-page
|
173
|
+
Dynamic: keywords
|
174
|
+
Dynamic: platform
|
175
|
+
Dynamic: provides-extra
|
176
|
+
Dynamic: requires-dist
|
177
|
+
Dynamic: requires-python
|
178
|
+
Dynamic: summary
|
179
|
+
|
180
|
+
Gate set tomography (GST) is a quantum tomography protocol that provides full characterization of a quantum logic device
|
181
|
+
(e.g. a qubit). GST estimates a set of quantum logic gates and (simultaneously) the associated state preparation and
|
182
|
+
measurement (SPAM) operations. GST is self-calibrating. This eliminates a key limitation of traditional quantum state
|
183
|
+
and process tomography, which characterize either states (assuming perfect processes) or processes (assuming perfect
|
184
|
+
state preparation and measurement), but not both together. Compared with benchmarking protocols such as randomized
|
185
|
+
benchmarking, GST provides much more detailed and accurate information about the gates, but demands more data. The
|
186
|
+
primary downside of GST has been its complexity. Whereas benchmarking and state/process tomography data can be analyzed
|
187
|
+
with relatively simple algorithms, GST requires more complex algorithms and more fine-tuning (linear GST is an exception
|
188
|
+
that can be implemented easily). pyGSTi addresses and eliminates this obstacle by providing a fully-featured, publicly
|
189
|
+
available implementation of GST in the Python programming language.
|
190
|
+
|
191
|
+
The primary goals of the pyGSTi project are to:
|
192
|
+
|
193
|
+
- provide efficient and robust implementations of Gate Set Tomography algorithms;
|
194
|
+
- allow straightforward interoperability with other software;
|
195
|
+
- provide a powerful high-level interface suited to inexperienced programmers, so that
|
196
|
+
common GST tasks can be performed using just one or two lines of code;
|
197
|
+
- use modular design to make it easy for users to modify, customize, and extend GST functionality.
|