pyGSTi 0.9.12.1__cp38-cp38-macosx_10_9_x86_64.whl → 0.9.13__cp38-cp38-macosx_10_9_x86_64.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (221) hide show
  1. pyGSTi-0.9.13.dist-info/METADATA +185 -0
  2. {pyGSTi-0.9.12.1.dist-info → pyGSTi-0.9.13.dist-info}/RECORD +207 -217
  3. {pyGSTi-0.9.12.1.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 +42 -28
  7. pygsti/algorithms/fiducialselection.py +17 -8
  8. pygsti/algorithms/gaugeopt.py +2 -2
  9. pygsti/algorithms/germselection.py +87 -77
  10. pygsti/algorithms/mirroring.py +0 -388
  11. pygsti/algorithms/randomcircuit.py +165 -1333
  12. pygsti/algorithms/rbfit.py +0 -234
  13. pygsti/baseobjs/basis.py +94 -396
  14. pygsti/baseobjs/errorgenbasis.py +0 -132
  15. pygsti/baseobjs/errorgenspace.py +0 -10
  16. pygsti/baseobjs/label.py +52 -168
  17. pygsti/baseobjs/opcalc/fastopcalc.cpython-38-darwin.so +0 -0
  18. pygsti/baseobjs/opcalc/fastopcalc.pyx +2 -2
  19. pygsti/baseobjs/polynomial.py +13 -595
  20. pygsti/baseobjs/statespace.py +1 -0
  21. pygsti/circuits/__init__.py +1 -1
  22. pygsti/circuits/circuit.py +682 -505
  23. pygsti/circuits/circuitconstruction.py +0 -4
  24. pygsti/circuits/circuitlist.py +47 -5
  25. pygsti/circuits/circuitparser/__init__.py +8 -8
  26. pygsti/circuits/circuitparser/fastcircuitparser.cpython-38-darwin.so +0 -0
  27. pygsti/circuits/circuitstructure.py +3 -3
  28. pygsti/circuits/cloudcircuitconstruction.py +1 -1
  29. pygsti/data/datacomparator.py +2 -7
  30. pygsti/data/dataset.py +46 -44
  31. pygsti/data/hypothesistest.py +0 -7
  32. pygsti/drivers/bootstrap.py +0 -49
  33. pygsti/drivers/longsequence.py +2 -1
  34. pygsti/evotypes/basereps_cython.cpython-38-darwin.so +0 -0
  35. pygsti/evotypes/chp/opreps.py +0 -61
  36. pygsti/evotypes/chp/statereps.py +0 -32
  37. pygsti/evotypes/densitymx/effectcreps.cpp +9 -10
  38. pygsti/evotypes/densitymx/effectreps.cpython-38-darwin.so +0 -0
  39. pygsti/evotypes/densitymx/effectreps.pyx +1 -1
  40. pygsti/evotypes/densitymx/opreps.cpython-38-darwin.so +0 -0
  41. pygsti/evotypes/densitymx/opreps.pyx +2 -2
  42. pygsti/evotypes/densitymx/statereps.cpython-38-darwin.so +0 -0
  43. pygsti/evotypes/densitymx/statereps.pyx +1 -1
  44. pygsti/evotypes/densitymx_slow/effectreps.py +7 -23
  45. pygsti/evotypes/densitymx_slow/opreps.py +16 -23
  46. pygsti/evotypes/densitymx_slow/statereps.py +10 -3
  47. pygsti/evotypes/evotype.py +39 -2
  48. pygsti/evotypes/stabilizer/effectreps.cpython-38-darwin.so +0 -0
  49. pygsti/evotypes/stabilizer/effectreps.pyx +0 -4
  50. pygsti/evotypes/stabilizer/opreps.cpython-38-darwin.so +0 -0
  51. pygsti/evotypes/stabilizer/opreps.pyx +0 -4
  52. pygsti/evotypes/stabilizer/statereps.cpython-38-darwin.so +0 -0
  53. pygsti/evotypes/stabilizer/statereps.pyx +1 -5
  54. pygsti/evotypes/stabilizer/termreps.cpython-38-darwin.so +0 -0
  55. pygsti/evotypes/stabilizer/termreps.pyx +0 -7
  56. pygsti/evotypes/stabilizer_slow/effectreps.py +0 -22
  57. pygsti/evotypes/stabilizer_slow/opreps.py +0 -4
  58. pygsti/evotypes/stabilizer_slow/statereps.py +0 -4
  59. pygsti/evotypes/statevec/effectreps.cpython-38-darwin.so +0 -0
  60. pygsti/evotypes/statevec/effectreps.pyx +1 -1
  61. pygsti/evotypes/statevec/opreps.cpython-38-darwin.so +0 -0
  62. pygsti/evotypes/statevec/opreps.pyx +2 -2
  63. pygsti/evotypes/statevec/statereps.cpython-38-darwin.so +0 -0
  64. pygsti/evotypes/statevec/statereps.pyx +1 -1
  65. pygsti/evotypes/statevec/termreps.cpython-38-darwin.so +0 -0
  66. pygsti/evotypes/statevec/termreps.pyx +0 -7
  67. pygsti/evotypes/statevec_slow/effectreps.py +0 -3
  68. pygsti/evotypes/statevec_slow/opreps.py +0 -5
  69. pygsti/extras/__init__.py +0 -1
  70. pygsti/extras/drift/stabilityanalyzer.py +3 -1
  71. pygsti/extras/interpygate/__init__.py +12 -0
  72. pygsti/extras/interpygate/core.py +0 -36
  73. pygsti/extras/interpygate/process_tomography.py +44 -10
  74. pygsti/extras/rpe/rpeconstruction.py +0 -2
  75. pygsti/forwardsims/__init__.py +1 -0
  76. pygsti/forwardsims/forwardsim.py +14 -55
  77. pygsti/forwardsims/mapforwardsim.py +69 -18
  78. pygsti/forwardsims/mapforwardsim_calc_densitymx.cpython-38-darwin.so +0 -0
  79. pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx +65 -66
  80. pygsti/forwardsims/mapforwardsim_calc_generic.py +91 -13
  81. pygsti/forwardsims/matrixforwardsim.py +63 -15
  82. pygsti/forwardsims/termforwardsim.py +8 -110
  83. pygsti/forwardsims/termforwardsim_calc_stabilizer.cpython-38-darwin.so +0 -0
  84. pygsti/forwardsims/termforwardsim_calc_statevec.cpython-38-darwin.so +0 -0
  85. pygsti/forwardsims/termforwardsim_calc_statevec.pyx +0 -651
  86. pygsti/forwardsims/torchfwdsim.py +265 -0
  87. pygsti/forwardsims/weakforwardsim.py +2 -2
  88. pygsti/io/__init__.py +1 -2
  89. pygsti/io/mongodb.py +0 -2
  90. pygsti/io/stdinput.py +6 -22
  91. pygsti/layouts/copalayout.py +10 -12
  92. pygsti/layouts/distlayout.py +0 -40
  93. pygsti/layouts/maplayout.py +103 -25
  94. pygsti/layouts/matrixlayout.py +99 -60
  95. pygsti/layouts/prefixtable.py +1534 -52
  96. pygsti/layouts/termlayout.py +1 -1
  97. pygsti/modelmembers/instruments/instrument.py +3 -3
  98. pygsti/modelmembers/instruments/tpinstrument.py +2 -2
  99. pygsti/modelmembers/modelmember.py +0 -17
  100. pygsti/modelmembers/operations/__init__.py +2 -4
  101. pygsti/modelmembers/operations/affineshiftop.py +1 -0
  102. pygsti/modelmembers/operations/composederrorgen.py +1 -1
  103. pygsti/modelmembers/operations/composedop.py +1 -24
  104. pygsti/modelmembers/operations/denseop.py +5 -5
  105. pygsti/modelmembers/operations/eigpdenseop.py +2 -2
  106. pygsti/modelmembers/operations/embeddederrorgen.py +1 -1
  107. pygsti/modelmembers/operations/embeddedop.py +0 -1
  108. pygsti/modelmembers/operations/experrorgenop.py +2 -2
  109. pygsti/modelmembers/operations/fullarbitraryop.py +1 -0
  110. pygsti/modelmembers/operations/fullcptpop.py +2 -2
  111. pygsti/modelmembers/operations/fulltpop.py +28 -6
  112. pygsti/modelmembers/operations/fullunitaryop.py +5 -4
  113. pygsti/modelmembers/operations/lindbladcoefficients.py +93 -78
  114. pygsti/modelmembers/operations/lindbladerrorgen.py +268 -441
  115. pygsti/modelmembers/operations/linearop.py +7 -27
  116. pygsti/modelmembers/operations/opfactory.py +1 -1
  117. pygsti/modelmembers/operations/repeatedop.py +1 -24
  118. pygsti/modelmembers/operations/staticstdop.py +1 -1
  119. pygsti/modelmembers/povms/__init__.py +3 -3
  120. pygsti/modelmembers/povms/basepovm.py +7 -36
  121. pygsti/modelmembers/povms/complementeffect.py +4 -9
  122. pygsti/modelmembers/povms/composedeffect.py +0 -320
  123. pygsti/modelmembers/povms/computationaleffect.py +1 -1
  124. pygsti/modelmembers/povms/computationalpovm.py +3 -1
  125. pygsti/modelmembers/povms/effect.py +3 -5
  126. pygsti/modelmembers/povms/marginalizedpovm.py +0 -79
  127. pygsti/modelmembers/povms/tppovm.py +74 -2
  128. pygsti/modelmembers/states/__init__.py +2 -5
  129. pygsti/modelmembers/states/composedstate.py +0 -317
  130. pygsti/modelmembers/states/computationalstate.py +3 -3
  131. pygsti/modelmembers/states/cptpstate.py +4 -4
  132. pygsti/modelmembers/states/densestate.py +6 -4
  133. pygsti/modelmembers/states/fullpurestate.py +0 -24
  134. pygsti/modelmembers/states/purestate.py +1 -1
  135. pygsti/modelmembers/states/state.py +5 -6
  136. pygsti/modelmembers/states/tpstate.py +28 -10
  137. pygsti/modelmembers/term.py +3 -6
  138. pygsti/modelmembers/torchable.py +50 -0
  139. pygsti/modelpacks/_modelpack.py +1 -1
  140. pygsti/modelpacks/smq1Q_ZN.py +3 -1
  141. pygsti/modelpacks/smq2Q_XXYYII.py +2 -1
  142. pygsti/modelpacks/smq2Q_XY.py +3 -3
  143. pygsti/modelpacks/smq2Q_XYI.py +2 -2
  144. pygsti/modelpacks/smq2Q_XYICNOT.py +3 -3
  145. pygsti/modelpacks/smq2Q_XYICPHASE.py +3 -3
  146. pygsti/modelpacks/smq2Q_XYXX.py +1 -1
  147. pygsti/modelpacks/smq2Q_XYZICNOT.py +3 -3
  148. pygsti/modelpacks/smq2Q_XYZZ.py +1 -1
  149. pygsti/modelpacks/stdtarget.py +0 -121
  150. pygsti/models/cloudnoisemodel.py +1 -2
  151. pygsti/models/explicitcalc.py +3 -3
  152. pygsti/models/explicitmodel.py +3 -13
  153. pygsti/models/fogistore.py +5 -3
  154. pygsti/models/localnoisemodel.py +1 -2
  155. pygsti/models/memberdict.py +0 -12
  156. pygsti/models/model.py +800 -65
  157. pygsti/models/modelconstruction.py +4 -4
  158. pygsti/models/modelnoise.py +2 -2
  159. pygsti/models/modelparaminterposer.py +1 -1
  160. pygsti/models/oplessmodel.py +1 -1
  161. pygsti/models/qutrit.py +15 -14
  162. pygsti/objectivefns/objectivefns.py +73 -138
  163. pygsti/objectivefns/wildcardbudget.py +2 -7
  164. pygsti/optimize/__init__.py +1 -0
  165. pygsti/optimize/arraysinterface.py +28 -0
  166. pygsti/optimize/customcg.py +0 -12
  167. pygsti/optimize/customlm.py +129 -323
  168. pygsti/optimize/customsolve.py +2 -2
  169. pygsti/optimize/optimize.py +0 -84
  170. pygsti/optimize/simplerlm.py +841 -0
  171. pygsti/optimize/wildcardopt.py +19 -598
  172. pygsti/protocols/confidenceregionfactory.py +28 -14
  173. pygsti/protocols/estimate.py +31 -14
  174. pygsti/protocols/gst.py +142 -68
  175. pygsti/protocols/modeltest.py +6 -10
  176. pygsti/protocols/protocol.py +9 -37
  177. pygsti/protocols/rb.py +450 -79
  178. pygsti/protocols/treenode.py +8 -2
  179. pygsti/protocols/vb.py +108 -206
  180. pygsti/protocols/vbdataframe.py +1 -1
  181. pygsti/report/factory.py +0 -15
  182. pygsti/report/fogidiagram.py +1 -17
  183. pygsti/report/modelfunction.py +12 -3
  184. pygsti/report/mpl_colormaps.py +1 -1
  185. pygsti/report/plothelpers.py +8 -2
  186. pygsti/report/reportables.py +41 -37
  187. pygsti/report/templates/offline/pygsti_dashboard.css +6 -0
  188. pygsti/report/templates/offline/pygsti_dashboard.js +12 -0
  189. pygsti/report/workspace.py +2 -14
  190. pygsti/report/workspaceplots.py +326 -504
  191. pygsti/tools/basistools.py +9 -36
  192. pygsti/tools/edesigntools.py +124 -96
  193. pygsti/tools/fastcalc.cpython-38-darwin.so +0 -0
  194. pygsti/tools/fastcalc.pyx +35 -81
  195. pygsti/tools/internalgates.py +151 -15
  196. pygsti/tools/jamiolkowski.py +5 -5
  197. pygsti/tools/lindbladtools.py +19 -11
  198. pygsti/tools/listtools.py +0 -114
  199. pygsti/tools/matrixmod2.py +1 -1
  200. pygsti/tools/matrixtools.py +173 -339
  201. pygsti/tools/nameddict.py +1 -1
  202. pygsti/tools/optools.py +154 -88
  203. pygsti/tools/pdftools.py +0 -25
  204. pygsti/tools/rbtheory.py +3 -320
  205. pygsti/tools/slicetools.py +64 -12
  206. pyGSTi-0.9.12.1.dist-info/METADATA +0 -155
  207. pygsti/algorithms/directx.py +0 -711
  208. pygsti/evotypes/qibo/__init__.py +0 -33
  209. pygsti/evotypes/qibo/effectreps.py +0 -78
  210. pygsti/evotypes/qibo/opreps.py +0 -376
  211. pygsti/evotypes/qibo/povmreps.py +0 -98
  212. pygsti/evotypes/qibo/statereps.py +0 -174
  213. pygsti/extras/rb/__init__.py +0 -13
  214. pygsti/extras/rb/benchmarker.py +0 -957
  215. pygsti/extras/rb/dataset.py +0 -378
  216. pygsti/extras/rb/io.py +0 -814
  217. pygsti/extras/rb/simulate.py +0 -1020
  218. pygsti/io/legacyio.py +0 -385
  219. pygsti/modelmembers/povms/denseeffect.py +0 -142
  220. {pyGSTi-0.9.12.1.dist-info → pyGSTi-0.9.13.dist-info}/LICENSE +0 -0
  221. {pyGSTi-0.9.12.1.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: jinja2; extra == "complete"
28
+ Requires-Dist: deap; extra == "complete"
29
+ Requires-Dist: msgpack; extra == "complete"
30
+ Requires-Dist: pytest-xdist; extra == "complete"
31
+ Requires-Dist: matplotlib; extra == "complete"
32
+ Requires-Dist: notebook; extra == "complete"
33
+ Requires-Dist: csaps; extra == "complete"
34
+ Requires-Dist: cirq-core; extra == "complete"
35
+ Requires-Dist: ipython; extra == "complete"
36
+ Requires-Dist: torch; extra == "complete"
37
+ Requires-Dist: scipy; extra == "complete"
38
+ Requires-Dist: psutil; extra == "complete"
39
+ Requires-Dist: seaborn; extra == "complete"
40
+ Requires-Dist: flake8; extra == "complete"
41
+ Requires-Dist: autopep8; extra == "complete"
42
+ Requires-Dist: zmq; extra == "complete"
43
+ Requires-Dist: cvxopt; extra == "complete"
44
+ Requires-Dist: MarkupSafe; extra == "complete"
45
+ Requires-Dist: pytest; extra == "complete"
46
+ Requires-Dist: pytest-cov; extra == "complete"
47
+ Requires-Dist: packaging; extra == "complete"
48
+ Requires-Dist: nbval; extra == "complete"
49
+ Requires-Dist: mpi4py; extra == "complete"
50
+ Requires-Dist: cython; extra == "complete"
51
+ Requires-Dist: pymongo; extra == "complete"
52
+ Requires-Dist: jupyter-server; extra == "complete"
53
+ Requires-Dist: ply; extra == "complete"
54
+ Requires-Dist: pandas; extra == "complete"
55
+ Requires-Dist: cvxpy; 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: jinja2; extra == "no-mpi"
81
+ Requires-Dist: deap; extra == "no-mpi"
82
+ Requires-Dist: msgpack; extra == "no-mpi"
83
+ Requires-Dist: pytest-xdist; extra == "no-mpi"
84
+ Requires-Dist: matplotlib; extra == "no-mpi"
85
+ Requires-Dist: notebook; extra == "no-mpi"
86
+ Requires-Dist: csaps; extra == "no-mpi"
87
+ Requires-Dist: cirq-core; extra == "no-mpi"
88
+ Requires-Dist: ipython; extra == "no-mpi"
89
+ Requires-Dist: torch; extra == "no-mpi"
90
+ Requires-Dist: scipy; extra == "no-mpi"
91
+ Requires-Dist: psutil; extra == "no-mpi"
92
+ Requires-Dist: seaborn; extra == "no-mpi"
93
+ Requires-Dist: flake8; extra == "no-mpi"
94
+ Requires-Dist: autopep8; extra == "no-mpi"
95
+ Requires-Dist: zmq; extra == "no-mpi"
96
+ Requires-Dist: cvxopt; extra == "no-mpi"
97
+ Requires-Dist: MarkupSafe; extra == "no-mpi"
98
+ Requires-Dist: pytest; extra == "no-mpi"
99
+ Requires-Dist: pytest-cov; extra == "no-mpi"
100
+ Requires-Dist: packaging; extra == "no-mpi"
101
+ Requires-Dist: nbval; extra == "no-mpi"
102
+ Requires-Dist: cython; extra == "no-mpi"
103
+ Requires-Dist: pymongo; extra == "no-mpi"
104
+ Requires-Dist: jupyter-server; extra == "no-mpi"
105
+ Requires-Dist: ply; extra == "no-mpi"
106
+ Requires-Dist: pandas; extra == "no-mpi"
107
+ Requires-Dist: cvxpy; 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.