pyGSTi 0.9.12__cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl → 0.9.13__cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl

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