qiskit 1.3.0__cp39-abi3-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (836) hide show
  1. qiskit/VERSION.txt +1 -0
  2. qiskit/__init__.py +146 -0
  3. qiskit/_accelerate.pyd +0 -0
  4. qiskit/_numpy_compat.py +73 -0
  5. qiskit/assembler/__init__.py +42 -0
  6. qiskit/assembler/assemble_circuits.py +451 -0
  7. qiskit/assembler/assemble_schedules.py +367 -0
  8. qiskit/assembler/disassemble.py +310 -0
  9. qiskit/assembler/run_config.py +77 -0
  10. qiskit/circuit/__init__.py +1313 -0
  11. qiskit/circuit/_classical_resource_map.py +148 -0
  12. qiskit/circuit/_standard_gates_commutations.py +3849 -0
  13. qiskit/circuit/_utils.py +167 -0
  14. qiskit/circuit/add_control.py +274 -0
  15. qiskit/circuit/annotated_operation.py +279 -0
  16. qiskit/circuit/barrier.py +50 -0
  17. qiskit/circuit/bit.py +94 -0
  18. qiskit/circuit/classical/__init__.py +41 -0
  19. qiskit/circuit/classical/expr/__init__.py +238 -0
  20. qiskit/circuit/classical/expr/constructors.py +556 -0
  21. qiskit/circuit/classical/expr/expr.py +397 -0
  22. qiskit/circuit/classical/expr/visitors.py +300 -0
  23. qiskit/circuit/classical/types/__init__.py +109 -0
  24. qiskit/circuit/classical/types/ordering.py +222 -0
  25. qiskit/circuit/classical/types/types.py +117 -0
  26. qiskit/circuit/classicalfunction/__init__.py +140 -0
  27. qiskit/circuit/classicalfunction/boolean_expression.py +129 -0
  28. qiskit/circuit/classicalfunction/classical_element.py +54 -0
  29. qiskit/circuit/classicalfunction/classical_function_visitor.py +155 -0
  30. qiskit/circuit/classicalfunction/classicalfunction.py +173 -0
  31. qiskit/circuit/classicalfunction/exceptions.py +35 -0
  32. qiskit/circuit/classicalfunction/types.py +18 -0
  33. qiskit/circuit/classicalfunction/utils.py +91 -0
  34. qiskit/circuit/classicalregister.py +57 -0
  35. qiskit/circuit/commutation_checker.py +106 -0
  36. qiskit/circuit/commutation_library.py +20 -0
  37. qiskit/circuit/controlflow/__init__.py +28 -0
  38. qiskit/circuit/controlflow/_builder_utils.py +207 -0
  39. qiskit/circuit/controlflow/break_loop.py +56 -0
  40. qiskit/circuit/controlflow/builder.py +691 -0
  41. qiskit/circuit/controlflow/continue_loop.py +58 -0
  42. qiskit/circuit/controlflow/control_flow.py +84 -0
  43. qiskit/circuit/controlflow/for_loop.py +217 -0
  44. qiskit/circuit/controlflow/if_else.py +511 -0
  45. qiskit/circuit/controlflow/switch_case.py +417 -0
  46. qiskit/circuit/controlflow/while_loop.py +171 -0
  47. qiskit/circuit/controlledgate.py +274 -0
  48. qiskit/circuit/delay.py +123 -0
  49. qiskit/circuit/duration.py +95 -0
  50. qiskit/circuit/equivalence.py +94 -0
  51. qiskit/circuit/equivalence_library.py +18 -0
  52. qiskit/circuit/exceptions.py +19 -0
  53. qiskit/circuit/gate.py +263 -0
  54. qiskit/circuit/instruction.py +697 -0
  55. qiskit/circuit/instructionset.py +179 -0
  56. qiskit/circuit/library/__init__.py +668 -0
  57. qiskit/circuit/library/arithmetic/__init__.py +34 -0
  58. qiskit/circuit/library/arithmetic/adders/__init__.py +18 -0
  59. qiskit/circuit/library/arithmetic/adders/adder.py +210 -0
  60. qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py +123 -0
  61. qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py +129 -0
  62. qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py +95 -0
  63. qiskit/circuit/library/arithmetic/exact_reciprocal.py +88 -0
  64. qiskit/circuit/library/arithmetic/functional_pauli_rotations.py +114 -0
  65. qiskit/circuit/library/arithmetic/integer_comparator.py +243 -0
  66. qiskit/circuit/library/arithmetic/linear_amplitude_function.py +196 -0
  67. qiskit/circuit/library/arithmetic/linear_pauli_rotations.py +189 -0
  68. qiskit/circuit/library/arithmetic/multipliers/__init__.py +17 -0
  69. qiskit/circuit/library/arithmetic/multipliers/hrs_cumulative_multiplier.py +145 -0
  70. qiskit/circuit/library/arithmetic/multipliers/multiplier.py +192 -0
  71. qiskit/circuit/library/arithmetic/multipliers/rg_qft_multiplier.py +108 -0
  72. qiskit/circuit/library/arithmetic/piecewise_chebyshev.py +353 -0
  73. qiskit/circuit/library/arithmetic/piecewise_linear_pauli_rotations.py +277 -0
  74. qiskit/circuit/library/arithmetic/piecewise_polynomial_pauli_rotations.py +317 -0
  75. qiskit/circuit/library/arithmetic/polynomial_pauli_rotations.py +335 -0
  76. qiskit/circuit/library/arithmetic/quadratic_form.py +198 -0
  77. qiskit/circuit/library/arithmetic/weighted_adder.py +337 -0
  78. qiskit/circuit/library/basis_change/__init__.py +15 -0
  79. qiskit/circuit/library/basis_change/qft.py +313 -0
  80. qiskit/circuit/library/blueprintcircuit.py +280 -0
  81. qiskit/circuit/library/boolean_logic/__init__.py +18 -0
  82. qiskit/circuit/library/boolean_logic/inner_product.py +155 -0
  83. qiskit/circuit/library/boolean_logic/quantum_and.py +200 -0
  84. qiskit/circuit/library/boolean_logic/quantum_or.py +202 -0
  85. qiskit/circuit/library/boolean_logic/quantum_xor.py +165 -0
  86. qiskit/circuit/library/data_preparation/__init__.py +57 -0
  87. qiskit/circuit/library/data_preparation/_z_feature_map.py +115 -0
  88. qiskit/circuit/library/data_preparation/_zz_feature_map.py +150 -0
  89. qiskit/circuit/library/data_preparation/initializer.py +107 -0
  90. qiskit/circuit/library/data_preparation/pauli_feature_map.py +656 -0
  91. qiskit/circuit/library/data_preparation/state_preparation.py +336 -0
  92. qiskit/circuit/library/fourier_checking.py +158 -0
  93. qiskit/circuit/library/generalized_gates/__init__.py +30 -0
  94. qiskit/circuit/library/generalized_gates/diagonal.py +159 -0
  95. qiskit/circuit/library/generalized_gates/gms.py +174 -0
  96. qiskit/circuit/library/generalized_gates/gr.py +215 -0
  97. qiskit/circuit/library/generalized_gates/isometry.py +370 -0
  98. qiskit/circuit/library/generalized_gates/linear_function.py +318 -0
  99. qiskit/circuit/library/generalized_gates/mcg_up_to_diagonal.py +143 -0
  100. qiskit/circuit/library/generalized_gates/mcmt.py +316 -0
  101. qiskit/circuit/library/generalized_gates/pauli.py +85 -0
  102. qiskit/circuit/library/generalized_gates/permutation.py +194 -0
  103. qiskit/circuit/library/generalized_gates/rv.py +96 -0
  104. qiskit/circuit/library/generalized_gates/uc.py +213 -0
  105. qiskit/circuit/library/generalized_gates/uc_pauli_rot.py +164 -0
  106. qiskit/circuit/library/generalized_gates/ucrx.py +32 -0
  107. qiskit/circuit/library/generalized_gates/ucry.py +32 -0
  108. qiskit/circuit/library/generalized_gates/ucrz.py +32 -0
  109. qiskit/circuit/library/generalized_gates/unitary.py +215 -0
  110. qiskit/circuit/library/graph_state.py +169 -0
  111. qiskit/circuit/library/grover_operator.py +579 -0
  112. qiskit/circuit/library/hamiltonian_gate.py +142 -0
  113. qiskit/circuit/library/hidden_linear_function.py +161 -0
  114. qiskit/circuit/library/iqp.py +175 -0
  115. qiskit/circuit/library/n_local/__init__.py +45 -0
  116. qiskit/circuit/library/n_local/efficient_su2.py +277 -0
  117. qiskit/circuit/library/n_local/evolved_operator_ansatz.py +515 -0
  118. qiskit/circuit/library/n_local/excitation_preserving.py +297 -0
  119. qiskit/circuit/library/n_local/n_local.py +1472 -0
  120. qiskit/circuit/library/n_local/pauli_two_design.py +243 -0
  121. qiskit/circuit/library/n_local/qaoa_ansatz.py +366 -0
  122. qiskit/circuit/library/n_local/real_amplitudes.py +306 -0
  123. qiskit/circuit/library/n_local/two_local.py +289 -0
  124. qiskit/circuit/library/overlap.py +182 -0
  125. qiskit/circuit/library/pauli_evolution.py +186 -0
  126. qiskit/circuit/library/phase_estimation.py +175 -0
  127. qiskit/circuit/library/phase_oracle.py +153 -0
  128. qiskit/circuit/library/quantum_volume.py +167 -0
  129. qiskit/circuit/library/standard_gates/__init__.py +142 -0
  130. qiskit/circuit/library/standard_gates/dcx.py +78 -0
  131. qiskit/circuit/library/standard_gates/ecr.py +130 -0
  132. qiskit/circuit/library/standard_gates/equivalence_library.py +1800 -0
  133. qiskit/circuit/library/standard_gates/global_phase.py +85 -0
  134. qiskit/circuit/library/standard_gates/h.py +258 -0
  135. qiskit/circuit/library/standard_gates/i.py +76 -0
  136. qiskit/circuit/library/standard_gates/iswap.py +134 -0
  137. qiskit/circuit/library/standard_gates/multi_control_rotation_gates.py +405 -0
  138. qiskit/circuit/library/standard_gates/p.py +441 -0
  139. qiskit/circuit/library/standard_gates/r.py +117 -0
  140. qiskit/circuit/library/standard_gates/rx.py +303 -0
  141. qiskit/circuit/library/standard_gates/rxx.py +183 -0
  142. qiskit/circuit/library/standard_gates/ry.py +298 -0
  143. qiskit/circuit/library/standard_gates/ryy.py +183 -0
  144. qiskit/circuit/library/standard_gates/rz.py +319 -0
  145. qiskit/circuit/library/standard_gates/rzx.py +229 -0
  146. qiskit/circuit/library/standard_gates/rzz.py +196 -0
  147. qiskit/circuit/library/standard_gates/s.py +428 -0
  148. qiskit/circuit/library/standard_gates/swap.py +288 -0
  149. qiskit/circuit/library/standard_gates/sx.py +315 -0
  150. qiskit/circuit/library/standard_gates/t.py +179 -0
  151. qiskit/circuit/library/standard_gates/u.py +403 -0
  152. qiskit/circuit/library/standard_gates/u1.py +501 -0
  153. qiskit/circuit/library/standard_gates/u2.py +149 -0
  154. qiskit/circuit/library/standard_gates/u3.py +436 -0
  155. qiskit/circuit/library/standard_gates/x.py +1529 -0
  156. qiskit/circuit/library/standard_gates/xx_minus_yy.py +235 -0
  157. qiskit/circuit/library/standard_gates/xx_plus_yy.py +239 -0
  158. qiskit/circuit/library/standard_gates/y.py +262 -0
  159. qiskit/circuit/library/standard_gates/z.py +348 -0
  160. qiskit/circuit/library/templates/__init__.py +92 -0
  161. qiskit/circuit/library/templates/clifford/__init__.py +33 -0
  162. qiskit/circuit/library/templates/clifford/clifford_2_1.py +34 -0
  163. qiskit/circuit/library/templates/clifford/clifford_2_2.py +35 -0
  164. qiskit/circuit/library/templates/clifford/clifford_2_3.py +34 -0
  165. qiskit/circuit/library/templates/clifford/clifford_2_4.py +34 -0
  166. qiskit/circuit/library/templates/clifford/clifford_3_1.py +35 -0
  167. qiskit/circuit/library/templates/clifford/clifford_4_1.py +38 -0
  168. qiskit/circuit/library/templates/clifford/clifford_4_2.py +37 -0
  169. qiskit/circuit/library/templates/clifford/clifford_4_3.py +38 -0
  170. qiskit/circuit/library/templates/clifford/clifford_4_4.py +37 -0
  171. qiskit/circuit/library/templates/clifford/clifford_5_1.py +40 -0
  172. qiskit/circuit/library/templates/clifford/clifford_6_1.py +40 -0
  173. qiskit/circuit/library/templates/clifford/clifford_6_2.py +40 -0
  174. qiskit/circuit/library/templates/clifford/clifford_6_3.py +40 -0
  175. qiskit/circuit/library/templates/clifford/clifford_6_4.py +38 -0
  176. qiskit/circuit/library/templates/clifford/clifford_6_5.py +40 -0
  177. qiskit/circuit/library/templates/clifford/clifford_8_1.py +42 -0
  178. qiskit/circuit/library/templates/clifford/clifford_8_2.py +42 -0
  179. qiskit/circuit/library/templates/clifford/clifford_8_3.py +41 -0
  180. qiskit/circuit/library/templates/nct/__init__.py +67 -0
  181. qiskit/circuit/library/templates/nct/template_nct_2a_1.py +34 -0
  182. qiskit/circuit/library/templates/nct/template_nct_2a_2.py +35 -0
  183. qiskit/circuit/library/templates/nct/template_nct_2a_3.py +37 -0
  184. qiskit/circuit/library/templates/nct/template_nct_4a_1.py +43 -0
  185. qiskit/circuit/library/templates/nct/template_nct_4a_2.py +41 -0
  186. qiskit/circuit/library/templates/nct/template_nct_4a_3.py +39 -0
  187. qiskit/circuit/library/templates/nct/template_nct_4b_1.py +41 -0
  188. qiskit/circuit/library/templates/nct/template_nct_4b_2.py +39 -0
  189. qiskit/circuit/library/templates/nct/template_nct_5a_1.py +40 -0
  190. qiskit/circuit/library/templates/nct/template_nct_5a_2.py +40 -0
  191. qiskit/circuit/library/templates/nct/template_nct_5a_3.py +40 -0
  192. qiskit/circuit/library/templates/nct/template_nct_5a_4.py +39 -0
  193. qiskit/circuit/library/templates/nct/template_nct_6a_1.py +40 -0
  194. qiskit/circuit/library/templates/nct/template_nct_6a_2.py +41 -0
  195. qiskit/circuit/library/templates/nct/template_nct_6a_3.py +41 -0
  196. qiskit/circuit/library/templates/nct/template_nct_6a_4.py +41 -0
  197. qiskit/circuit/library/templates/nct/template_nct_6b_1.py +41 -0
  198. qiskit/circuit/library/templates/nct/template_nct_6b_2.py +41 -0
  199. qiskit/circuit/library/templates/nct/template_nct_6c_1.py +41 -0
  200. qiskit/circuit/library/templates/nct/template_nct_7a_1.py +43 -0
  201. qiskit/circuit/library/templates/nct/template_nct_7b_1.py +43 -0
  202. qiskit/circuit/library/templates/nct/template_nct_7c_1.py +43 -0
  203. qiskit/circuit/library/templates/nct/template_nct_7d_1.py +43 -0
  204. qiskit/circuit/library/templates/nct/template_nct_7e_1.py +43 -0
  205. qiskit/circuit/library/templates/nct/template_nct_9a_1.py +45 -0
  206. qiskit/circuit/library/templates/nct/template_nct_9c_1.py +43 -0
  207. qiskit/circuit/library/templates/nct/template_nct_9c_10.py +44 -0
  208. qiskit/circuit/library/templates/nct/template_nct_9c_11.py +44 -0
  209. qiskit/circuit/library/templates/nct/template_nct_9c_12.py +44 -0
  210. qiskit/circuit/library/templates/nct/template_nct_9c_2.py +44 -0
  211. qiskit/circuit/library/templates/nct/template_nct_9c_3.py +44 -0
  212. qiskit/circuit/library/templates/nct/template_nct_9c_4.py +44 -0
  213. qiskit/circuit/library/templates/nct/template_nct_9c_5.py +44 -0
  214. qiskit/circuit/library/templates/nct/template_nct_9c_6.py +44 -0
  215. qiskit/circuit/library/templates/nct/template_nct_9c_7.py +44 -0
  216. qiskit/circuit/library/templates/nct/template_nct_9c_8.py +44 -0
  217. qiskit/circuit/library/templates/nct/template_nct_9c_9.py +44 -0
  218. qiskit/circuit/library/templates/nct/template_nct_9d_1.py +43 -0
  219. qiskit/circuit/library/templates/nct/template_nct_9d_10.py +44 -0
  220. qiskit/circuit/library/templates/nct/template_nct_9d_2.py +44 -0
  221. qiskit/circuit/library/templates/nct/template_nct_9d_3.py +44 -0
  222. qiskit/circuit/library/templates/nct/template_nct_9d_4.py +44 -0
  223. qiskit/circuit/library/templates/nct/template_nct_9d_5.py +44 -0
  224. qiskit/circuit/library/templates/nct/template_nct_9d_6.py +44 -0
  225. qiskit/circuit/library/templates/nct/template_nct_9d_7.py +44 -0
  226. qiskit/circuit/library/templates/nct/template_nct_9d_8.py +44 -0
  227. qiskit/circuit/library/templates/nct/template_nct_9d_9.py +44 -0
  228. qiskit/circuit/library/templates/rzx/__init__.py +25 -0
  229. qiskit/circuit/library/templates/rzx/rzx_cy.py +47 -0
  230. qiskit/circuit/library/templates/rzx/rzx_xz.py +54 -0
  231. qiskit/circuit/library/templates/rzx/rzx_yz.py +45 -0
  232. qiskit/circuit/library/templates/rzx/rzx_zz1.py +69 -0
  233. qiskit/circuit/library/templates/rzx/rzx_zz2.py +59 -0
  234. qiskit/circuit/library/templates/rzx/rzx_zz3.py +59 -0
  235. qiskit/circuit/measure.py +44 -0
  236. qiskit/circuit/operation.py +67 -0
  237. qiskit/circuit/parameter.py +178 -0
  238. qiskit/circuit/parameterexpression.py +692 -0
  239. qiskit/circuit/parametertable.py +119 -0
  240. qiskit/circuit/parametervector.py +120 -0
  241. qiskit/circuit/quantumcircuit.py +6829 -0
  242. qiskit/circuit/quantumcircuitdata.py +136 -0
  243. qiskit/circuit/quantumregister.py +75 -0
  244. qiskit/circuit/random/__init__.py +15 -0
  245. qiskit/circuit/random/utils.py +358 -0
  246. qiskit/circuit/register.py +233 -0
  247. qiskit/circuit/reset.py +34 -0
  248. qiskit/circuit/singleton.py +606 -0
  249. qiskit/circuit/store.py +97 -0
  250. qiskit/circuit/tools/__init__.py +16 -0
  251. qiskit/circuit/tools/pi_check.py +190 -0
  252. qiskit/circuit/twirling.py +145 -0
  253. qiskit/compiler/__init__.py +33 -0
  254. qiskit/compiler/assembler.py +681 -0
  255. qiskit/compiler/scheduler.py +109 -0
  256. qiskit/compiler/sequencer.py +71 -0
  257. qiskit/compiler/transpiler.py +533 -0
  258. qiskit/converters/__init__.py +74 -0
  259. qiskit/converters/circuit_to_dag.py +78 -0
  260. qiskit/converters/circuit_to_dagdependency.py +51 -0
  261. qiskit/converters/circuit_to_dagdependency_v2.py +47 -0
  262. qiskit/converters/circuit_to_gate.py +107 -0
  263. qiskit/converters/circuit_to_instruction.py +155 -0
  264. qiskit/converters/dag_to_circuit.py +79 -0
  265. qiskit/converters/dag_to_dagdependency.py +55 -0
  266. qiskit/converters/dag_to_dagdependency_v2.py +44 -0
  267. qiskit/converters/dagdependency_to_circuit.py +46 -0
  268. qiskit/converters/dagdependency_to_dag.py +54 -0
  269. qiskit/dagcircuit/__init__.py +44 -0
  270. qiskit/dagcircuit/collect_blocks.py +391 -0
  271. qiskit/dagcircuit/dagcircuit.py +24 -0
  272. qiskit/dagcircuit/dagdependency.py +646 -0
  273. qiskit/dagcircuit/dagdependency_v2.py +641 -0
  274. qiskit/dagcircuit/dagdepnode.py +160 -0
  275. qiskit/dagcircuit/dagnode.py +176 -0
  276. qiskit/dagcircuit/exceptions.py +42 -0
  277. qiskit/exceptions.py +153 -0
  278. qiskit/passmanager/__init__.py +240 -0
  279. qiskit/passmanager/base_tasks.py +230 -0
  280. qiskit/passmanager/compilation_status.py +74 -0
  281. qiskit/passmanager/exceptions.py +19 -0
  282. qiskit/passmanager/flow_controllers.py +116 -0
  283. qiskit/passmanager/passmanager.py +333 -0
  284. qiskit/primitives/__init__.py +481 -0
  285. qiskit/primitives/backend_estimator.py +486 -0
  286. qiskit/primitives/backend_estimator_v2.py +434 -0
  287. qiskit/primitives/backend_sampler.py +222 -0
  288. qiskit/primitives/backend_sampler_v2.py +339 -0
  289. qiskit/primitives/base/__init__.py +20 -0
  290. qiskit/primitives/base/base_estimator.py +252 -0
  291. qiskit/primitives/base/base_primitive.py +45 -0
  292. qiskit/primitives/base/base_primitive_job.py +78 -0
  293. qiskit/primitives/base/base_result.py +65 -0
  294. qiskit/primitives/base/base_sampler.py +204 -0
  295. qiskit/primitives/base/estimator_result.py +46 -0
  296. qiskit/primitives/base/sampler_result.py +45 -0
  297. qiskit/primitives/base/validation.py +231 -0
  298. qiskit/primitives/containers/__init__.py +26 -0
  299. qiskit/primitives/containers/bindings_array.py +389 -0
  300. qiskit/primitives/containers/bit_array.py +741 -0
  301. qiskit/primitives/containers/data_bin.py +173 -0
  302. qiskit/primitives/containers/estimator_pub.py +222 -0
  303. qiskit/primitives/containers/object_array.py +94 -0
  304. qiskit/primitives/containers/observables_array.py +279 -0
  305. qiskit/primitives/containers/primitive_result.py +53 -0
  306. qiskit/primitives/containers/pub_result.py +51 -0
  307. qiskit/primitives/containers/sampler_pub.py +193 -0
  308. qiskit/primitives/containers/sampler_pub_result.py +74 -0
  309. qiskit/primitives/containers/shape.py +129 -0
  310. qiskit/primitives/estimator.py +172 -0
  311. qiskit/primitives/primitive_job.py +81 -0
  312. qiskit/primitives/sampler.py +162 -0
  313. qiskit/primitives/statevector_estimator.py +174 -0
  314. qiskit/primitives/statevector_sampler.py +292 -0
  315. qiskit/primitives/utils.py +247 -0
  316. qiskit/providers/__init__.py +803 -0
  317. qiskit/providers/backend.py +667 -0
  318. qiskit/providers/backend_compat.py +472 -0
  319. qiskit/providers/basic_provider/__init__.py +45 -0
  320. qiskit/providers/basic_provider/basic_provider.py +101 -0
  321. qiskit/providers/basic_provider/basic_provider_job.py +65 -0
  322. qiskit/providers/basic_provider/basic_provider_tools.py +218 -0
  323. qiskit/providers/basic_provider/basic_simulator.py +821 -0
  324. qiskit/providers/basic_provider/exceptions.py +30 -0
  325. qiskit/providers/exceptions.py +45 -0
  326. qiskit/providers/fake_provider/__init__.py +105 -0
  327. qiskit/providers/fake_provider/backends_v1/__init__.py +22 -0
  328. qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/__init__.py +18 -0
  329. qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/conf_washington.json +1 -0
  330. qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/defs_washington.json +1 -0
  331. qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/fake_127q_pulse_v1.py +37 -0
  332. qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/props_washington.json +1 -0
  333. qiskit/providers/fake_provider/backends_v1/fake_20q/__init__.py +18 -0
  334. qiskit/providers/fake_provider/backends_v1/fake_20q/conf_singapore.json +1 -0
  335. qiskit/providers/fake_provider/backends_v1/fake_20q/fake_20q.py +43 -0
  336. qiskit/providers/fake_provider/backends_v1/fake_20q/props_singapore.json +1 -0
  337. qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/__init__.py +18 -0
  338. qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/conf_hanoi.json +1 -0
  339. qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/defs_hanoi.json +1 -0
  340. qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/fake_27q_pulse_v1.py +50 -0
  341. qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/props_hanoi.json +1 -0
  342. qiskit/providers/fake_provider/backends_v1/fake_5q/__init__.py +18 -0
  343. qiskit/providers/fake_provider/backends_v1/fake_5q/conf_yorktown.json +1 -0
  344. qiskit/providers/fake_provider/backends_v1/fake_5q/fake_5q_v1.py +41 -0
  345. qiskit/providers/fake_provider/backends_v1/fake_5q/props_yorktown.json +1 -0
  346. qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/__init__.py +18 -0
  347. qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/conf_nairobi.json +1 -0
  348. qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/defs_nairobi.json +1 -0
  349. qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/fake_7q_pulse_v1.py +44 -0
  350. qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/props_nairobi.json +1 -0
  351. qiskit/providers/fake_provider/fake_1q.py +91 -0
  352. qiskit/providers/fake_provider/fake_backend.py +165 -0
  353. qiskit/providers/fake_provider/fake_openpulse_2q.py +391 -0
  354. qiskit/providers/fake_provider/fake_openpulse_3q.py +340 -0
  355. qiskit/providers/fake_provider/fake_pulse_backend.py +49 -0
  356. qiskit/providers/fake_provider/fake_qasm_backend.py +77 -0
  357. qiskit/providers/fake_provider/generic_backend_v2.py +1035 -0
  358. qiskit/providers/fake_provider/utils/__init__.py +15 -0
  359. qiskit/providers/fake_provider/utils/backend_converter.py +150 -0
  360. qiskit/providers/fake_provider/utils/json_decoder.py +109 -0
  361. qiskit/providers/job.py +147 -0
  362. qiskit/providers/jobstatus.py +30 -0
  363. qiskit/providers/models/__init__.py +89 -0
  364. qiskit/providers/models/backendconfiguration.py +1040 -0
  365. qiskit/providers/models/backendproperties.py +517 -0
  366. qiskit/providers/models/backendstatus.py +94 -0
  367. qiskit/providers/models/jobstatus.py +66 -0
  368. qiskit/providers/models/pulsedefaults.py +305 -0
  369. qiskit/providers/options.py +273 -0
  370. qiskit/providers/provider.py +95 -0
  371. qiskit/providers/providerutils.py +110 -0
  372. qiskit/pulse/__init__.py +158 -0
  373. qiskit/pulse/builder.py +2254 -0
  374. qiskit/pulse/calibration_entries.py +381 -0
  375. qiskit/pulse/channels.py +227 -0
  376. qiskit/pulse/configuration.py +245 -0
  377. qiskit/pulse/exceptions.py +45 -0
  378. qiskit/pulse/filters.py +309 -0
  379. qiskit/pulse/instruction_schedule_map.py +424 -0
  380. qiskit/pulse/instructions/__init__.py +67 -0
  381. qiskit/pulse/instructions/acquire.py +150 -0
  382. qiskit/pulse/instructions/delay.py +71 -0
  383. qiskit/pulse/instructions/directives.py +154 -0
  384. qiskit/pulse/instructions/frequency.py +135 -0
  385. qiskit/pulse/instructions/instruction.py +270 -0
  386. qiskit/pulse/instructions/phase.py +152 -0
  387. qiskit/pulse/instructions/play.py +99 -0
  388. qiskit/pulse/instructions/reference.py +100 -0
  389. qiskit/pulse/instructions/snapshot.py +82 -0
  390. qiskit/pulse/library/__init__.py +97 -0
  391. qiskit/pulse/library/continuous.py +430 -0
  392. qiskit/pulse/library/pulse.py +148 -0
  393. qiskit/pulse/library/samplers/__init__.py +15 -0
  394. qiskit/pulse/library/samplers/decorators.py +295 -0
  395. qiskit/pulse/library/samplers/strategies.py +71 -0
  396. qiskit/pulse/library/symbolic_pulses.py +1988 -0
  397. qiskit/pulse/library/waveform.py +136 -0
  398. qiskit/pulse/macros.py +262 -0
  399. qiskit/pulse/parameter_manager.py +445 -0
  400. qiskit/pulse/parser.py +314 -0
  401. qiskit/pulse/reference_manager.py +58 -0
  402. qiskit/pulse/schedule.py +1854 -0
  403. qiskit/pulse/transforms/__init__.py +106 -0
  404. qiskit/pulse/transforms/alignments.py +406 -0
  405. qiskit/pulse/transforms/base_transforms.py +71 -0
  406. qiskit/pulse/transforms/canonicalization.py +498 -0
  407. qiskit/pulse/transforms/dag.py +122 -0
  408. qiskit/pulse/utils.py +149 -0
  409. qiskit/qasm/libs/dummy/stdgates.inc +75 -0
  410. qiskit/qasm/libs/qelib1.inc +266 -0
  411. qiskit/qasm/libs/stdgates.inc +82 -0
  412. qiskit/qasm2/__init__.py +654 -0
  413. qiskit/qasm2/exceptions.py +27 -0
  414. qiskit/qasm2/export.py +372 -0
  415. qiskit/qasm2/parse.py +452 -0
  416. qiskit/qasm3/__init__.py +367 -0
  417. qiskit/qasm3/ast.py +738 -0
  418. qiskit/qasm3/exceptions.py +27 -0
  419. qiskit/qasm3/experimental.py +70 -0
  420. qiskit/qasm3/exporter.py +1299 -0
  421. qiskit/qasm3/printer.py +577 -0
  422. qiskit/qobj/__init__.py +75 -0
  423. qiskit/qobj/common.py +81 -0
  424. qiskit/qobj/converters/__init__.py +18 -0
  425. qiskit/qobj/converters/lo_config.py +177 -0
  426. qiskit/qobj/converters/pulse_instruction.py +897 -0
  427. qiskit/qobj/pulse_qobj.py +709 -0
  428. qiskit/qobj/qasm_qobj.py +708 -0
  429. qiskit/qobj/utils.py +46 -0
  430. qiskit/qpy/__init__.py +1822 -0
  431. qiskit/qpy/binary_io/__init__.py +36 -0
  432. qiskit/qpy/binary_io/circuits.py +1475 -0
  433. qiskit/qpy/binary_io/schedules.py +635 -0
  434. qiskit/qpy/binary_io/value.py +1025 -0
  435. qiskit/qpy/common.py +350 -0
  436. qiskit/qpy/exceptions.py +53 -0
  437. qiskit/qpy/formats.py +401 -0
  438. qiskit/qpy/interface.py +377 -0
  439. qiskit/qpy/type_keys.py +572 -0
  440. qiskit/quantum_info/__init__.py +162 -0
  441. qiskit/quantum_info/analysis/__init__.py +17 -0
  442. qiskit/quantum_info/analysis/average.py +47 -0
  443. qiskit/quantum_info/analysis/distance.py +102 -0
  444. qiskit/quantum_info/analysis/make_observable.py +44 -0
  445. qiskit/quantum_info/analysis/z2_symmetries.py +484 -0
  446. qiskit/quantum_info/operators/__init__.py +28 -0
  447. qiskit/quantum_info/operators/base_operator.py +145 -0
  448. qiskit/quantum_info/operators/channel/__init__.py +29 -0
  449. qiskit/quantum_info/operators/channel/chi.py +191 -0
  450. qiskit/quantum_info/operators/channel/choi.py +218 -0
  451. qiskit/quantum_info/operators/channel/kraus.py +337 -0
  452. qiskit/quantum_info/operators/channel/ptm.py +204 -0
  453. qiskit/quantum_info/operators/channel/quantum_channel.py +348 -0
  454. qiskit/quantum_info/operators/channel/stinespring.py +296 -0
  455. qiskit/quantum_info/operators/channel/superop.py +377 -0
  456. qiskit/quantum_info/operators/channel/transformations.py +475 -0
  457. qiskit/quantum_info/operators/custom_iterator.py +48 -0
  458. qiskit/quantum_info/operators/dihedral/__init__.py +18 -0
  459. qiskit/quantum_info/operators/dihedral/dihedral.py +509 -0
  460. qiskit/quantum_info/operators/dihedral/dihedral_circuits.py +216 -0
  461. qiskit/quantum_info/operators/dihedral/polynomial.py +313 -0
  462. qiskit/quantum_info/operators/dihedral/random.py +64 -0
  463. qiskit/quantum_info/operators/linear_op.py +25 -0
  464. qiskit/quantum_info/operators/measures.py +418 -0
  465. qiskit/quantum_info/operators/mixins/__init__.py +52 -0
  466. qiskit/quantum_info/operators/mixins/adjoint.py +52 -0
  467. qiskit/quantum_info/operators/mixins/group.py +171 -0
  468. qiskit/quantum_info/operators/mixins/linear.py +84 -0
  469. qiskit/quantum_info/operators/mixins/multiply.py +62 -0
  470. qiskit/quantum_info/operators/mixins/tolerances.py +72 -0
  471. qiskit/quantum_info/operators/op_shape.py +525 -0
  472. qiskit/quantum_info/operators/operator.py +865 -0
  473. qiskit/quantum_info/operators/operator_utils.py +76 -0
  474. qiskit/quantum_info/operators/predicates.py +183 -0
  475. qiskit/quantum_info/operators/random.py +154 -0
  476. qiskit/quantum_info/operators/scalar_op.py +254 -0
  477. qiskit/quantum_info/operators/symplectic/__init__.py +23 -0
  478. qiskit/quantum_info/operators/symplectic/base_pauli.py +719 -0
  479. qiskit/quantum_info/operators/symplectic/clifford.py +1030 -0
  480. qiskit/quantum_info/operators/symplectic/clifford_circuits.py +558 -0
  481. qiskit/quantum_info/operators/symplectic/pauli.py +753 -0
  482. qiskit/quantum_info/operators/symplectic/pauli_list.py +1230 -0
  483. qiskit/quantum_info/operators/symplectic/pauli_utils.py +40 -0
  484. qiskit/quantum_info/operators/symplectic/random.py +117 -0
  485. qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py +1196 -0
  486. qiskit/quantum_info/operators/utils/__init__.py +20 -0
  487. qiskit/quantum_info/operators/utils/anti_commutator.py +36 -0
  488. qiskit/quantum_info/operators/utils/commutator.py +36 -0
  489. qiskit/quantum_info/operators/utils/double_commutator.py +76 -0
  490. qiskit/quantum_info/quaternion.py +156 -0
  491. qiskit/quantum_info/random.py +26 -0
  492. qiskit/quantum_info/states/__init__.py +28 -0
  493. qiskit/quantum_info/states/densitymatrix.py +845 -0
  494. qiskit/quantum_info/states/measures.py +288 -0
  495. qiskit/quantum_info/states/quantum_state.py +503 -0
  496. qiskit/quantum_info/states/random.py +157 -0
  497. qiskit/quantum_info/states/stabilizerstate.py +773 -0
  498. qiskit/quantum_info/states/statevector.py +958 -0
  499. qiskit/quantum_info/states/utils.py +247 -0
  500. qiskit/result/__init__.py +73 -0
  501. qiskit/result/counts.py +189 -0
  502. qiskit/result/distributions/__init__.py +17 -0
  503. qiskit/result/distributions/probability.py +100 -0
  504. qiskit/result/distributions/quasi.py +154 -0
  505. qiskit/result/exceptions.py +40 -0
  506. qiskit/result/mitigation/__init__.py +13 -0
  507. qiskit/result/mitigation/base_readout_mitigator.py +79 -0
  508. qiskit/result/mitigation/correlated_readout_mitigator.py +277 -0
  509. qiskit/result/mitigation/local_readout_mitigator.py +328 -0
  510. qiskit/result/mitigation/utils.py +217 -0
  511. qiskit/result/models.py +234 -0
  512. qiskit/result/postprocess.py +239 -0
  513. qiskit/result/result.py +392 -0
  514. qiskit/result/sampled_expval.py +75 -0
  515. qiskit/result/utils.py +295 -0
  516. qiskit/scheduler/__init__.py +40 -0
  517. qiskit/scheduler/config.py +37 -0
  518. qiskit/scheduler/lowering.py +187 -0
  519. qiskit/scheduler/methods/__init__.py +15 -0
  520. qiskit/scheduler/methods/basic.py +140 -0
  521. qiskit/scheduler/schedule_circuit.py +69 -0
  522. qiskit/scheduler/sequence.py +104 -0
  523. qiskit/synthesis/__init__.py +220 -0
  524. qiskit/synthesis/arithmetic/__init__.py +16 -0
  525. qiskit/synthesis/arithmetic/adders/__init__.py +17 -0
  526. qiskit/synthesis/arithmetic/adders/cdkm_ripple_carry_adder.py +154 -0
  527. qiskit/synthesis/arithmetic/adders/draper_qft_adder.py +103 -0
  528. qiskit/synthesis/arithmetic/adders/vbe_ripple_carry_adder.py +161 -0
  529. qiskit/synthesis/arithmetic/multipliers/__init__.py +16 -0
  530. qiskit/synthesis/arithmetic/multipliers/hrs_cumulative_multiplier.py +102 -0
  531. qiskit/synthesis/arithmetic/multipliers/rg_qft_multiplier.py +99 -0
  532. qiskit/synthesis/clifford/__init__.py +19 -0
  533. qiskit/synthesis/clifford/clifford_decompose_ag.py +178 -0
  534. qiskit/synthesis/clifford/clifford_decompose_bm.py +46 -0
  535. qiskit/synthesis/clifford/clifford_decompose_full.py +64 -0
  536. qiskit/synthesis/clifford/clifford_decompose_greedy.py +58 -0
  537. qiskit/synthesis/clifford/clifford_decompose_layers.py +447 -0
  538. qiskit/synthesis/cnotdihedral/__init__.py +17 -0
  539. qiskit/synthesis/cnotdihedral/cnotdihedral_decompose_full.py +52 -0
  540. qiskit/synthesis/cnotdihedral/cnotdihedral_decompose_general.py +141 -0
  541. qiskit/synthesis/cnotdihedral/cnotdihedral_decompose_two_qubits.py +266 -0
  542. qiskit/synthesis/discrete_basis/__init__.py +16 -0
  543. qiskit/synthesis/discrete_basis/commutator_decompose.py +241 -0
  544. qiskit/synthesis/discrete_basis/gate_sequence.py +415 -0
  545. qiskit/synthesis/discrete_basis/generate_basis_approximations.py +163 -0
  546. qiskit/synthesis/discrete_basis/solovay_kitaev.py +217 -0
  547. qiskit/synthesis/evolution/__init__.py +21 -0
  548. qiskit/synthesis/evolution/evolution_synthesis.py +48 -0
  549. qiskit/synthesis/evolution/lie_trotter.py +117 -0
  550. qiskit/synthesis/evolution/matrix_synthesis.py +47 -0
  551. qiskit/synthesis/evolution/pauli_network.py +80 -0
  552. qiskit/synthesis/evolution/product_formula.py +311 -0
  553. qiskit/synthesis/evolution/qdrift.py +138 -0
  554. qiskit/synthesis/evolution/suzuki_trotter.py +215 -0
  555. qiskit/synthesis/linear/__init__.py +26 -0
  556. qiskit/synthesis/linear/cnot_synth.py +69 -0
  557. qiskit/synthesis/linear/linear_circuits_utils.py +128 -0
  558. qiskit/synthesis/linear/linear_depth_lnn.py +276 -0
  559. qiskit/synthesis/linear/linear_matrix_utils.py +27 -0
  560. qiskit/synthesis/linear_phase/__init__.py +17 -0
  561. qiskit/synthesis/linear_phase/cnot_phase_synth.py +206 -0
  562. qiskit/synthesis/linear_phase/cx_cz_depth_lnn.py +262 -0
  563. qiskit/synthesis/linear_phase/cz_depth_lnn.py +58 -0
  564. qiskit/synthesis/multi_controlled/__init__.py +24 -0
  565. qiskit/synthesis/multi_controlled/mcmt_vchain.py +52 -0
  566. qiskit/synthesis/multi_controlled/mcx_synthesis.py +356 -0
  567. qiskit/synthesis/one_qubit/__init__.py +15 -0
  568. qiskit/synthesis/one_qubit/one_qubit_decompose.py +288 -0
  569. qiskit/synthesis/permutation/__init__.py +18 -0
  570. qiskit/synthesis/permutation/permutation_full.py +78 -0
  571. qiskit/synthesis/permutation/permutation_lnn.py +54 -0
  572. qiskit/synthesis/permutation/permutation_reverse_lnn.py +93 -0
  573. qiskit/synthesis/permutation/permutation_utils.py +16 -0
  574. qiskit/synthesis/qft/__init__.py +16 -0
  575. qiskit/synthesis/qft/qft_decompose_full.py +97 -0
  576. qiskit/synthesis/qft/qft_decompose_lnn.py +79 -0
  577. qiskit/synthesis/stabilizer/__init__.py +16 -0
  578. qiskit/synthesis/stabilizer/stabilizer_circuit.py +149 -0
  579. qiskit/synthesis/stabilizer/stabilizer_decompose.py +194 -0
  580. qiskit/synthesis/two_qubit/__init__.py +19 -0
  581. qiskit/synthesis/two_qubit/local_invariance.py +63 -0
  582. qiskit/synthesis/two_qubit/two_qubit_decompose.py +700 -0
  583. qiskit/synthesis/two_qubit/xx_decompose/__init__.py +19 -0
  584. qiskit/synthesis/two_qubit/xx_decompose/circuits.py +300 -0
  585. qiskit/synthesis/two_qubit/xx_decompose/decomposer.py +324 -0
  586. qiskit/synthesis/two_qubit/xx_decompose/embodiments.py +163 -0
  587. qiskit/synthesis/two_qubit/xx_decompose/paths.py +412 -0
  588. qiskit/synthesis/two_qubit/xx_decompose/polytopes.py +262 -0
  589. qiskit/synthesis/two_qubit/xx_decompose/utilities.py +40 -0
  590. qiskit/synthesis/two_qubit/xx_decompose/weyl.py +133 -0
  591. qiskit/synthesis/unitary/__init__.py +13 -0
  592. qiskit/synthesis/unitary/aqc/__init__.py +177 -0
  593. qiskit/synthesis/unitary/aqc/approximate.py +116 -0
  594. qiskit/synthesis/unitary/aqc/aqc.py +175 -0
  595. qiskit/synthesis/unitary/aqc/cnot_structures.py +300 -0
  596. qiskit/synthesis/unitary/aqc/cnot_unit_circuit.py +103 -0
  597. qiskit/synthesis/unitary/aqc/cnot_unit_objective.py +299 -0
  598. qiskit/synthesis/unitary/aqc/elementary_operations.py +108 -0
  599. qiskit/synthesis/unitary/aqc/fast_gradient/__init__.py +164 -0
  600. qiskit/synthesis/unitary/aqc/fast_gradient/fast_grad_utils.py +237 -0
  601. qiskit/synthesis/unitary/aqc/fast_gradient/fast_gradient.py +226 -0
  602. qiskit/synthesis/unitary/aqc/fast_gradient/layer.py +370 -0
  603. qiskit/synthesis/unitary/aqc/fast_gradient/pmatrix.py +312 -0
  604. qiskit/synthesis/unitary/qsd.py +288 -0
  605. qiskit/transpiler/__init__.py +1290 -0
  606. qiskit/transpiler/basepasses.py +221 -0
  607. qiskit/transpiler/coupling.py +500 -0
  608. qiskit/transpiler/exceptions.py +59 -0
  609. qiskit/transpiler/instruction_durations.py +281 -0
  610. qiskit/transpiler/layout.py +737 -0
  611. qiskit/transpiler/passes/__init__.py +312 -0
  612. qiskit/transpiler/passes/analysis/__init__.py +23 -0
  613. qiskit/transpiler/passes/analysis/count_ops.py +30 -0
  614. qiskit/transpiler/passes/analysis/count_ops_longest_path.py +26 -0
  615. qiskit/transpiler/passes/analysis/dag_longest_path.py +24 -0
  616. qiskit/transpiler/passes/analysis/depth.py +33 -0
  617. qiskit/transpiler/passes/analysis/num_qubits.py +26 -0
  618. qiskit/transpiler/passes/analysis/num_tensor_factors.py +26 -0
  619. qiskit/transpiler/passes/analysis/resource_estimation.py +41 -0
  620. qiskit/transpiler/passes/analysis/size.py +36 -0
  621. qiskit/transpiler/passes/analysis/width.py +27 -0
  622. qiskit/transpiler/passes/basis/__init__.py +19 -0
  623. qiskit/transpiler/passes/basis/basis_translator.py +137 -0
  624. qiskit/transpiler/passes/basis/decompose.py +131 -0
  625. qiskit/transpiler/passes/basis/translate_parameterized.py +175 -0
  626. qiskit/transpiler/passes/basis/unroll_3q_or_more.py +88 -0
  627. qiskit/transpiler/passes/basis/unroll_custom_definitions.py +109 -0
  628. qiskit/transpiler/passes/calibration/__init__.py +17 -0
  629. qiskit/transpiler/passes/calibration/base_builder.py +79 -0
  630. qiskit/transpiler/passes/calibration/builders.py +20 -0
  631. qiskit/transpiler/passes/calibration/exceptions.py +22 -0
  632. qiskit/transpiler/passes/calibration/pulse_gate.py +100 -0
  633. qiskit/transpiler/passes/calibration/rx_builder.py +164 -0
  634. qiskit/transpiler/passes/calibration/rzx_builder.py +411 -0
  635. qiskit/transpiler/passes/calibration/rzx_templates.py +51 -0
  636. qiskit/transpiler/passes/layout/__init__.py +26 -0
  637. qiskit/transpiler/passes/layout/_csp_custom_solver.py +65 -0
  638. qiskit/transpiler/passes/layout/apply_layout.py +123 -0
  639. qiskit/transpiler/passes/layout/csp_layout.py +132 -0
  640. qiskit/transpiler/passes/layout/dense_layout.py +202 -0
  641. qiskit/transpiler/passes/layout/disjoint_utils.py +219 -0
  642. qiskit/transpiler/passes/layout/enlarge_with_ancilla.py +49 -0
  643. qiskit/transpiler/passes/layout/full_ancilla_allocation.py +117 -0
  644. qiskit/transpiler/passes/layout/layout_2q_distance.py +77 -0
  645. qiskit/transpiler/passes/layout/sabre_layout.py +487 -0
  646. qiskit/transpiler/passes/layout/sabre_pre_layout.py +225 -0
  647. qiskit/transpiler/passes/layout/set_layout.py +69 -0
  648. qiskit/transpiler/passes/layout/trivial_layout.py +66 -0
  649. qiskit/transpiler/passes/layout/vf2_layout.py +263 -0
  650. qiskit/transpiler/passes/layout/vf2_post_layout.py +419 -0
  651. qiskit/transpiler/passes/layout/vf2_utils.py +260 -0
  652. qiskit/transpiler/passes/optimization/__init__.py +43 -0
  653. qiskit/transpiler/passes/optimization/_gate_extension.py +80 -0
  654. qiskit/transpiler/passes/optimization/collect_1q_runs.py +31 -0
  655. qiskit/transpiler/passes/optimization/collect_2q_blocks.py +35 -0
  656. qiskit/transpiler/passes/optimization/collect_and_collapse.py +115 -0
  657. qiskit/transpiler/passes/optimization/collect_cliffords.py +104 -0
  658. qiskit/transpiler/passes/optimization/collect_linear_functions.py +80 -0
  659. qiskit/transpiler/passes/optimization/collect_multiqubit_blocks.py +227 -0
  660. qiskit/transpiler/passes/optimization/commutation_analysis.py +44 -0
  661. qiskit/transpiler/passes/optimization/commutative_cancellation.py +82 -0
  662. qiskit/transpiler/passes/optimization/commutative_inverse_cancellation.py +140 -0
  663. qiskit/transpiler/passes/optimization/consolidate_blocks.py +149 -0
  664. qiskit/transpiler/passes/optimization/cx_cancellation.py +65 -0
  665. qiskit/transpiler/passes/optimization/echo_rzx_weyl_decomposition.py +162 -0
  666. qiskit/transpiler/passes/optimization/elide_permutations.py +91 -0
  667. qiskit/transpiler/passes/optimization/hoare_opt.py +420 -0
  668. qiskit/transpiler/passes/optimization/inverse_cancellation.py +95 -0
  669. qiskit/transpiler/passes/optimization/normalize_rx_angle.py +149 -0
  670. qiskit/transpiler/passes/optimization/optimize_1q_commutation.py +268 -0
  671. qiskit/transpiler/passes/optimization/optimize_1q_decomposition.py +254 -0
  672. qiskit/transpiler/passes/optimization/optimize_1q_gates.py +384 -0
  673. qiskit/transpiler/passes/optimization/optimize_annotated.py +448 -0
  674. qiskit/transpiler/passes/optimization/optimize_cliffords.py +89 -0
  675. qiskit/transpiler/passes/optimization/optimize_swap_before_measure.py +71 -0
  676. qiskit/transpiler/passes/optimization/remove_diagonal_gates_before_measure.py +41 -0
  677. qiskit/transpiler/passes/optimization/remove_final_reset.py +37 -0
  678. qiskit/transpiler/passes/optimization/remove_identity_equiv.py +69 -0
  679. qiskit/transpiler/passes/optimization/remove_reset_in_zero_state.py +37 -0
  680. qiskit/transpiler/passes/optimization/reset_after_measure_simplification.py +47 -0
  681. qiskit/transpiler/passes/optimization/split_2q_unitaries.py +40 -0
  682. qiskit/transpiler/passes/optimization/template_matching/__init__.py +19 -0
  683. qiskit/transpiler/passes/optimization/template_matching/backward_match.py +749 -0
  684. qiskit/transpiler/passes/optimization/template_matching/forward_match.py +452 -0
  685. qiskit/transpiler/passes/optimization/template_matching/maximal_matches.py +77 -0
  686. qiskit/transpiler/passes/optimization/template_matching/template_matching.py +370 -0
  687. qiskit/transpiler/passes/optimization/template_matching/template_substitution.py +638 -0
  688. qiskit/transpiler/passes/optimization/template_optimization.py +158 -0
  689. qiskit/transpiler/passes/routing/__init__.py +22 -0
  690. qiskit/transpiler/passes/routing/algorithms/__init__.py +33 -0
  691. qiskit/transpiler/passes/routing/algorithms/token_swapper.py +105 -0
  692. qiskit/transpiler/passes/routing/algorithms/types.py +46 -0
  693. qiskit/transpiler/passes/routing/algorithms/util.py +103 -0
  694. qiskit/transpiler/passes/routing/basic_swap.py +166 -0
  695. qiskit/transpiler/passes/routing/commuting_2q_gate_routing/__init__.py +25 -0
  696. qiskit/transpiler/passes/routing/commuting_2q_gate_routing/commuting_2q_block.py +60 -0
  697. qiskit/transpiler/passes/routing/commuting_2q_gate_routing/commuting_2q_gate_router.py +395 -0
  698. qiskit/transpiler/passes/routing/commuting_2q_gate_routing/pauli_2q_evolution_commutation.py +145 -0
  699. qiskit/transpiler/passes/routing/commuting_2q_gate_routing/swap_strategy.py +306 -0
  700. qiskit/transpiler/passes/routing/layout_transformation.py +119 -0
  701. qiskit/transpiler/passes/routing/lookahead_swap.py +390 -0
  702. qiskit/transpiler/passes/routing/sabre_swap.py +447 -0
  703. qiskit/transpiler/passes/routing/star_prerouting.py +392 -0
  704. qiskit/transpiler/passes/routing/stochastic_swap.py +532 -0
  705. qiskit/transpiler/passes/routing/utils.py +35 -0
  706. qiskit/transpiler/passes/scheduling/__init__.py +27 -0
  707. qiskit/transpiler/passes/scheduling/alap.py +153 -0
  708. qiskit/transpiler/passes/scheduling/alignments/__init__.py +81 -0
  709. qiskit/transpiler/passes/scheduling/alignments/align_measures.py +255 -0
  710. qiskit/transpiler/passes/scheduling/alignments/check_durations.py +78 -0
  711. qiskit/transpiler/passes/scheduling/alignments/pulse_gate_validation.py +107 -0
  712. qiskit/transpiler/passes/scheduling/alignments/reschedule.py +250 -0
  713. qiskit/transpiler/passes/scheduling/asap.py +175 -0
  714. qiskit/transpiler/passes/scheduling/base_scheduler.py +310 -0
  715. qiskit/transpiler/passes/scheduling/dynamical_decoupling.py +312 -0
  716. qiskit/transpiler/passes/scheduling/padding/__init__.py +16 -0
  717. qiskit/transpiler/passes/scheduling/padding/base_padding.py +256 -0
  718. qiskit/transpiler/passes/scheduling/padding/dynamical_decoupling.py +452 -0
  719. qiskit/transpiler/passes/scheduling/padding/pad_delay.py +82 -0
  720. qiskit/transpiler/passes/scheduling/scheduling/__init__.py +17 -0
  721. qiskit/transpiler/passes/scheduling/scheduling/alap.py +127 -0
  722. qiskit/transpiler/passes/scheduling/scheduling/asap.py +131 -0
  723. qiskit/transpiler/passes/scheduling/scheduling/base_scheduler.py +94 -0
  724. qiskit/transpiler/passes/scheduling/scheduling/set_io_latency.py +64 -0
  725. qiskit/transpiler/passes/scheduling/time_unit_conversion.py +165 -0
  726. qiskit/transpiler/passes/synthesis/__init__.py +20 -0
  727. qiskit/transpiler/passes/synthesis/aqc_plugin.py +153 -0
  728. qiskit/transpiler/passes/synthesis/high_level_synthesis.py +854 -0
  729. qiskit/transpiler/passes/synthesis/hls_plugins.py +1559 -0
  730. qiskit/transpiler/passes/synthesis/linear_functions_synthesis.py +41 -0
  731. qiskit/transpiler/passes/synthesis/plugin.py +734 -0
  732. qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py +297 -0
  733. qiskit/transpiler/passes/synthesis/unitary_synthesis.py +1076 -0
  734. qiskit/transpiler/passes/utils/__init__.py +33 -0
  735. qiskit/transpiler/passes/utils/barrier_before_final_measurements.py +41 -0
  736. qiskit/transpiler/passes/utils/check_gate_direction.py +52 -0
  737. qiskit/transpiler/passes/utils/check_map.py +78 -0
  738. qiskit/transpiler/passes/utils/contains_instruction.py +45 -0
  739. qiskit/transpiler/passes/utils/control_flow.py +65 -0
  740. qiskit/transpiler/passes/utils/convert_conditions_to_if_ops.py +93 -0
  741. qiskit/transpiler/passes/utils/dag_fixed_point.py +36 -0
  742. qiskit/transpiler/passes/utils/error.py +69 -0
  743. qiskit/transpiler/passes/utils/filter_op_nodes.py +65 -0
  744. qiskit/transpiler/passes/utils/fixed_point.py +48 -0
  745. qiskit/transpiler/passes/utils/gate_direction.py +86 -0
  746. qiskit/transpiler/passes/utils/gates_basis.py +51 -0
  747. qiskit/transpiler/passes/utils/merge_adjacent_barriers.py +163 -0
  748. qiskit/transpiler/passes/utils/minimum_point.py +118 -0
  749. qiskit/transpiler/passes/utils/remove_barriers.py +49 -0
  750. qiskit/transpiler/passes/utils/remove_final_measurements.py +114 -0
  751. qiskit/transpiler/passes/utils/unroll_forloops.py +81 -0
  752. qiskit/transpiler/passmanager.py +490 -0
  753. qiskit/transpiler/passmanager_config.py +216 -0
  754. qiskit/transpiler/preset_passmanagers/__init__.py +73 -0
  755. qiskit/transpiler/preset_passmanagers/builtin_plugins.py +1045 -0
  756. qiskit/transpiler/preset_passmanagers/common.py +649 -0
  757. qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py +626 -0
  758. qiskit/transpiler/preset_passmanagers/level0.py +113 -0
  759. qiskit/transpiler/preset_passmanagers/level1.py +120 -0
  760. qiskit/transpiler/preset_passmanagers/level2.py +119 -0
  761. qiskit/transpiler/preset_passmanagers/level3.py +119 -0
  762. qiskit/transpiler/preset_passmanagers/plugin.py +353 -0
  763. qiskit/transpiler/target.py +1319 -0
  764. qiskit/transpiler/timing_constraints.py +59 -0
  765. qiskit/user_config.py +262 -0
  766. qiskit/utils/__init__.py +89 -0
  767. qiskit/utils/classtools.py +146 -0
  768. qiskit/utils/deprecate_pulse.py +119 -0
  769. qiskit/utils/deprecation.py +490 -0
  770. qiskit/utils/lazy_tester.py +363 -0
  771. qiskit/utils/multiprocessing.py +56 -0
  772. qiskit/utils/optionals.py +347 -0
  773. qiskit/utils/parallel.py +191 -0
  774. qiskit/utils/units.py +143 -0
  775. qiskit/version.py +84 -0
  776. qiskit/visualization/__init__.py +288 -0
  777. qiskit/visualization/array.py +204 -0
  778. qiskit/visualization/bloch.py +778 -0
  779. qiskit/visualization/circuit/__init__.py +15 -0
  780. qiskit/visualization/circuit/_utils.py +675 -0
  781. qiskit/visualization/circuit/circuit_visualization.py +727 -0
  782. qiskit/visualization/circuit/latex.py +661 -0
  783. qiskit/visualization/circuit/matplotlib.py +2029 -0
  784. qiskit/visualization/circuit/qcstyle.py +278 -0
  785. qiskit/visualization/circuit/styles/__init__.py +13 -0
  786. qiskit/visualization/circuit/styles/bw.json +202 -0
  787. qiskit/visualization/circuit/styles/clifford.json +202 -0
  788. qiskit/visualization/circuit/styles/iqp-dark.json +214 -0
  789. qiskit/visualization/circuit/styles/iqp.json +214 -0
  790. qiskit/visualization/circuit/styles/textbook.json +202 -0
  791. qiskit/visualization/circuit/text.py +1844 -0
  792. qiskit/visualization/circuit_visualization.py +19 -0
  793. qiskit/visualization/counts_visualization.py +481 -0
  794. qiskit/visualization/dag_visualization.py +316 -0
  795. qiskit/visualization/exceptions.py +21 -0
  796. qiskit/visualization/gate_map.py +1485 -0
  797. qiskit/visualization/library.py +37 -0
  798. qiskit/visualization/pass_manager_visualization.py +308 -0
  799. qiskit/visualization/pulse_v2/__init__.py +21 -0
  800. qiskit/visualization/pulse_v2/core.py +901 -0
  801. qiskit/visualization/pulse_v2/device_info.py +173 -0
  802. qiskit/visualization/pulse_v2/drawings.py +253 -0
  803. qiskit/visualization/pulse_v2/events.py +254 -0
  804. qiskit/visualization/pulse_v2/generators/__init__.py +40 -0
  805. qiskit/visualization/pulse_v2/generators/barrier.py +76 -0
  806. qiskit/visualization/pulse_v2/generators/chart.py +208 -0
  807. qiskit/visualization/pulse_v2/generators/frame.py +436 -0
  808. qiskit/visualization/pulse_v2/generators/snapshot.py +133 -0
  809. qiskit/visualization/pulse_v2/generators/waveform.py +645 -0
  810. qiskit/visualization/pulse_v2/interface.py +458 -0
  811. qiskit/visualization/pulse_v2/layouts.py +387 -0
  812. qiskit/visualization/pulse_v2/plotters/__init__.py +17 -0
  813. qiskit/visualization/pulse_v2/plotters/base_plotter.py +53 -0
  814. qiskit/visualization/pulse_v2/plotters/matplotlib.py +201 -0
  815. qiskit/visualization/pulse_v2/stylesheet.py +312 -0
  816. qiskit/visualization/pulse_v2/types.py +242 -0
  817. qiskit/visualization/state_visualization.py +1518 -0
  818. qiskit/visualization/timeline/__init__.py +21 -0
  819. qiskit/visualization/timeline/core.py +480 -0
  820. qiskit/visualization/timeline/drawings.py +260 -0
  821. qiskit/visualization/timeline/generators.py +506 -0
  822. qiskit/visualization/timeline/interface.py +436 -0
  823. qiskit/visualization/timeline/layouts.py +115 -0
  824. qiskit/visualization/timeline/plotters/__init__.py +16 -0
  825. qiskit/visualization/timeline/plotters/base_plotter.py +58 -0
  826. qiskit/visualization/timeline/plotters/matplotlib.py +192 -0
  827. qiskit/visualization/timeline/stylesheet.py +301 -0
  828. qiskit/visualization/timeline/types.py +148 -0
  829. qiskit/visualization/transition_visualization.py +369 -0
  830. qiskit/visualization/utils.py +49 -0
  831. qiskit-1.3.0.dist-info/LICENSE.txt +203 -0
  832. qiskit-1.3.0.dist-info/METADATA +222 -0
  833. qiskit-1.3.0.dist-info/RECORD +836 -0
  834. qiskit-1.3.0.dist-info/WHEEL +5 -0
  835. qiskit-1.3.0.dist-info/entry_points.txt +76 -0
  836. qiskit-1.3.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,50 @@
1
+ # This code is part of Qiskit.
2
+ #
3
+ # (C) Copyright IBM 2023.
4
+ #
5
+ # This code is licensed under the Apache License, Version 2.0. You may
6
+ # obtain a copy of this license in the LICENSE.txt file in the root directory
7
+ # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
8
+ #
9
+ # Any modifications or derivative works of this code must retain this
10
+ # copyright notice, and modified files need to carry a notice indicating
11
+ # that they have been altered from the originals.
12
+
13
+ """
14
+ A 27 qubit fake :class:`.BackendV1` with pulse capabilities.
15
+ """
16
+
17
+ import os
18
+ from qiskit.providers.fake_provider import fake_pulse_backend
19
+
20
+
21
+ class Fake27QPulseV1(fake_pulse_backend.FakePulseBackend):
22
+ """A fake **pulse** backend with the following characteristics:
23
+
24
+ * num_qubits: 27
25
+ * coupling_map:
26
+
27
+ .. code-block:: text
28
+
29
+ 06 17
30
+ ↕ ↕
31
+ 00 ↔ 01 ↔ 04 ↔ 07 ↔ 10 ↔ 12 ↔ 15 ↔ 18 ↔ 20 ↔ 23
32
+ ↕ ↕ ↕
33
+ 02 13 24
34
+ ↕ ↕ ↕
35
+ 03 ↔ 05 ↔ 08 ↔ 11 ↔ 14 ↔ 16 ↔ 19 ↔ 22 ↔ 25 ↔ 26
36
+ ↕ ↕
37
+ 09 20
38
+
39
+ * basis_gates: ``["id", "rz", "sx", "x", "cx", "reset"]``
40
+ * scheduled instructions:
41
+ # ``{'id', 'rz', 'u2', 'x', 'u3', 'sx', 'measure', 'u1'}`` for all individual qubits
42
+ # ``{'cx'}`` for all edges
43
+ # ``{'measure'}`` for (0, ..., 26)
44
+ """
45
+
46
+ dirname = os.path.dirname(__file__)
47
+ conf_filename = "conf_hanoi.json"
48
+ props_filename = "props_hanoi.json"
49
+ defs_filename = "defs_hanoi.json"
50
+ backend_name = "fake_27q_pulse_v1"
@@ -0,0 +1 @@
1
+ {"backend_name": "ibm_hanoi", "backend_version": "1.0.18", "last_update_date": "2021-12-09T14:06:00-05:00", "qubits": [[{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 162.29562357444243}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 171.74648699183206}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.035257503599211}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34330377338500506}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.008299999999999974}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.01}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.00660000000000005}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T06:44:07-05:00", "name": "T1", "unit": "us", "value": 200.26740936185635}, {"date": "2021-12-09T00:36:53-05:00", "name": "T2", "unit": "us", "value": 128.87798722328756}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.155565118090405}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3417201958319424}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.008700000000000041}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0096}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.007800000000000029}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T06:41:48-05:00", "name": "T1", "unit": "us", "value": 165.10451031202692}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 70.85282786333991}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.255995040248669}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.33968683435284497}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.01629999999999998}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.014000000000000012}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0186}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T06:44:07-05:00", "name": "T1", "unit": "us", "value": 189.7038976397337}, {"date": "2021-12-09T00:36:53-05:00", "name": "T2", "unit": "us", "value": 66.07411297176124}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.097246059676533}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3421099914283281}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.013399999999999967}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.015199999999999991}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0116}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 228.1800197180789}, {"date": "2021-07-07T00:26:58-04:00", "name": "T2", "unit": "us", "value": 15.786673508605832}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.073268319137003}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34373895038391267}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.009600000000000053}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.01100000000000001}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0082}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T00:31:30-05:00", "name": "T1", "unit": "us", "value": 160.33951633948288}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 27.4002314834531}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.207464807502694}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3403819082691016}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.010599999999999943}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.012399999999999967}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0088}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 150.41844470973578}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 215.42527635779587}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.0210015516417}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34266740557687625}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.0129999999999999}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0166}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.009399999999999964}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T00:34:38-05:00", "name": "T1", "unit": "us", "value": 250.97739096997458}, {"date": "2021-12-09T00:36:53-05:00", "name": "T2", "unit": "us", "value": 321.8316917163186}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.9191505084130815}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34503425423379974}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.013800000000000034}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.016199999999999992}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0114}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T06:44:07-05:00", "name": "T1", "unit": "us", "value": 197.62610070865514}, {"date": "2021-12-09T00:36:53-05:00", "name": "T2", "unit": "us", "value": 54.912785602088746}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.030713370275684}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3446988549826478}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.03279999999999994}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0228}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.04279999999999995}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 150.00212117169139}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 49.60038191130937}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.8740868671878745}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34527473731890873}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.02510000000000001}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.033}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.017199999999999993}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 145.16727102423198}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 223.40286890830592}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.820985528731567}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34683032931717594}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.02180000000000004}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0232}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0204}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 201.45607029272736}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 189.86228443182952}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.161695558780752}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.341908817026974}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.0121}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0132}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.01100000000000001}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T00:34:38-05:00", "name": "T1", "unit": "us", "value": 107.57004336376815}, {"date": "2021-12-09T00:36:53-05:00", "name": "T2", "unit": "us", "value": 117.8720161751282}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.718894123006918}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3481829188022179}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.07820000000000005}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.08699999999999997}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0694}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 112.74691945994516}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 164.34563941412085}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.96239280214447}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34503454234379327}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.018000000000000016}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0214}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.014599999999999946}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T06:44:07-05:00", "name": "T1", "unit": "us", "value": 142.92395675015214}, {"date": "2021-11-10T04:52:02-05:00", "name": "T2", "unit": "us", "value": 21.03279749884081}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.046578733357967}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.344564182745183}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.008900000000000019}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0108}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.007000000000000006}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 229.26512818791585}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 23.959394896033672}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.9233696440290196}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.32012685787445805}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.06930000000000003}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.06940000000000002}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0692}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 171.27102231962618}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 191.15681870560078}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.883763459999275}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34451145689727636}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.014499999999999957}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0146}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.014399999999999968}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 77.74626321416429}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 52.31008943280704}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.223019531456885}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3399506710463379}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.01200000000000001}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.011800000000000033}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0122}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T06:44:07-05:00", "name": "T1", "unit": "us", "value": 136.92828577722096}, {"date": "2021-12-09T00:36:53-05:00", "name": "T2", "unit": "us", "value": 214.64593927736612}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.968043966959381}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3439987144902337}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.009700000000000042}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0112}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.008199999999999985}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T06:44:07-05:00", "name": "T1", "unit": "us", "value": 149.55535399935732}, {"date": "2021-12-09T00:36:53-05:00", "name": "T2", "unit": "us", "value": 158.26039829425585}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.003050223752749}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3431781100974163}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.006299999999999972}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.008399999999999963}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0042}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 155.18610011758446}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 99.96516734455751}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.094892970591303}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34102857576824874}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.028200000000000003}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0446}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.011800000000000033}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 129.77487292411521}, {"date": "2021-11-28T08:04:04-05:00", "name": "T2", "unit": "us", "value": 25.788257592273474}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.839318141468997}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3459283774773837}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.010099999999999998}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.013}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.007199999999999984}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T00:31:30-05:00", "name": "T1", "unit": "us", "value": 131.68699104939938}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 140.44473893338957}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.918673448292978}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3460569638786575}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.010599999999999943}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.016}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.005199999999999982}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T06:44:07-05:00", "name": "T1", "unit": "us", "value": 140.7706520647807}, {"date": "2021-12-09T00:36:53-05:00", "name": "T2", "unit": "us", "value": 24.591596113614052}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.9076099256247945}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3298207386132699}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.01869999999999994}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0204}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.017000000000000015}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 138.20480709857213}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 35.963413779866315}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.991553956799851}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34346573363448263}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.013800000000000034}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.016800000000000037}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0108}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T00:34:38-05:00", "name": "T1", "unit": "us", "value": 209.10050643128665}, {"date": "2021-12-09T00:36:53-05:00", "name": "T2", "unit": "us", "value": 86.49874122513746}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 4.812437397584483}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3466747118776749}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.01859999999999995}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.020199999999999996}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.017}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}], [{"date": "2021-12-09T12:50:09-05:00", "name": "T1", "unit": "us", "value": 127.57011007072889}, {"date": "2021-12-09T00:33:20-05:00", "name": "T2", "unit": "us", "value": 40.771382450554775}, {"date": "2021-12-09T14:06:00-05:00", "name": "frequency", "unit": "GHz", "value": 5.0198818619488375}, {"date": "2021-12-09T14:06:00-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34268404767752714}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_error", "unit": "", "value": 0.007000000000000006}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0086}, {"date": "2021-12-09T00:30:10-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.00539999999999996}, {"date": "2021-12-09T00:30:10-05:00", "name": "readout_length", "unit": "ns", "value": 757.3333333333333}]], "gates": [{"qubits": [0], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00013790682762652163}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id0"}, {"qubits": [1], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00015157374263301623}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id1"}, {"qubits": [2], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00016393621420542743}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id2"}, {"qubits": [3], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00014780011919478462}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id3"}, {"qubits": [4], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00015781468511476068}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id4"}, {"qubits": [5], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00027756496231637746}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id5"}, {"qubits": [6], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0001885422462640474}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id6"}, {"qubits": [7], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00011454203030407228}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id7"}, {"qubits": [8], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00020613384927090794}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id8"}, {"qubits": [9], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00022556897197118007}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id9"}, {"qubits": [10], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0001561651483167148}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id10"}, {"qubits": [11], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00010057601299122221}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id11"}, {"qubits": [12], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00012071151678724592}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id12"}, {"qubits": [13], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00012657380561906245}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id13"}, {"qubits": [14], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00020637437176042607}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id14"}, {"qubits": [15], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0004358587992589599}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id15"}, {"qubits": [16], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00013355297581763646}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id16"}, {"qubits": [17], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0003560167055274531}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id17"}, {"qubits": [18], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.0002733840988349284}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id18"}, {"qubits": [19], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.0001327881676002659}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id19"}, {"qubits": [20], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0005683250307041167}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id20"}, {"qubits": [21], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0002273922906038985}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id21"}, {"qubits": [22], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00020918361091333906}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id22"}, {"qubits": [23], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00047279579221251356}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id23"}, {"qubits": [24], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00030802838217055064}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id24"}, {"qubits": [25], "gate": "id", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 9.814733917736364e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id25"}, {"qubits": [26], "gate": "id", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00015163384492023144}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "id26"}, {"qubits": [0], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz0"}, {"qubits": [1], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz1"}, {"qubits": [2], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz2"}, {"qubits": [3], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz3"}, {"qubits": [4], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz4"}, {"qubits": [5], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz5"}, {"qubits": [6], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz6"}, {"qubits": [7], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz7"}, {"qubits": [8], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz8"}, {"qubits": [9], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz9"}, {"qubits": [10], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz10"}, {"qubits": [11], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz11"}, {"qubits": [12], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz12"}, {"qubits": [13], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz13"}, {"qubits": [14], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz14"}, {"qubits": [15], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz15"}, {"qubits": [16], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz16"}, {"qubits": [17], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz17"}, {"qubits": [18], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz18"}, {"qubits": [19], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz19"}, {"qubits": [20], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz20"}, {"qubits": [21], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz21"}, {"qubits": [22], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz22"}, {"qubits": [23], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz23"}, {"qubits": [24], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz24"}, {"qubits": [25], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz25"}, {"qubits": [26], "gate": "rz", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz26"}, {"qubits": [0], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00013790682762652163}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx0"}, {"qubits": [1], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00015157374263301623}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx1"}, {"qubits": [2], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00016393621420542743}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx2"}, {"qubits": [3], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00014780011919478462}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx3"}, {"qubits": [4], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00015781468511476068}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx4"}, {"qubits": [5], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00027756496231637746}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx5"}, {"qubits": [6], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0001885422462640474}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx6"}, {"qubits": [7], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00011454203030407228}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx7"}, {"qubits": [8], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00020613384927090794}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx8"}, {"qubits": [9], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00022556897197118007}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx9"}, {"qubits": [10], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0001561651483167148}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx10"}, {"qubits": [11], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00010057601299122221}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx11"}, {"qubits": [12], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00012071151678724592}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx12"}, {"qubits": [13], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00012657380561906245}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx13"}, {"qubits": [14], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00020637437176042607}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx14"}, {"qubits": [15], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0004358587992589599}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx15"}, {"qubits": [16], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00013355297581763646}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx16"}, {"qubits": [17], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0003560167055274531}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx17"}, {"qubits": [18], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.0002733840988349284}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx18"}, {"qubits": [19], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.0001327881676002659}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx19"}, {"qubits": [20], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0005683250307041167}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx20"}, {"qubits": [21], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0002273922906038985}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx21"}, {"qubits": [22], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00020918361091333906}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx22"}, {"qubits": [23], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00047279579221251356}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx23"}, {"qubits": [24], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00030802838217055064}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx24"}, {"qubits": [25], "gate": "sx", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 9.814733917736364e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx25"}, {"qubits": [26], "gate": "sx", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00015163384492023144}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "sx26"}, {"qubits": [0], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00013790682762652163}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x0"}, {"qubits": [1], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00015157374263301623}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x1"}, {"qubits": [2], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00016393621420542743}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x2"}, {"qubits": [3], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00014780011919478462}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x3"}, {"qubits": [4], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00015781468511476068}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x4"}, {"qubits": [5], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00027756496231637746}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x5"}, {"qubits": [6], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0001885422462640474}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x6"}, {"qubits": [7], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00011454203030407228}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x7"}, {"qubits": [8], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00020613384927090794}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x8"}, {"qubits": [9], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00022556897197118007}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x9"}, {"qubits": [10], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0001561651483167148}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x10"}, {"qubits": [11], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00010057601299122221}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x11"}, {"qubits": [12], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00012071151678724592}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x12"}, {"qubits": [13], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00012657380561906245}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x13"}, {"qubits": [14], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00020637437176042607}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x14"}, {"qubits": [15], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0004358587992589599}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x15"}, {"qubits": [16], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00013355297581763646}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x16"}, {"qubits": [17], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0003560167055274531}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x17"}, {"qubits": [18], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.0002733840988349284}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x18"}, {"qubits": [19], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.0001327881676002659}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x19"}, {"qubits": [20], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0005683250307041167}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x20"}, {"qubits": [21], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.0002273922906038985}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x21"}, {"qubits": [22], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00020918361091333906}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x22"}, {"qubits": [23], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 0.00047279579221251356}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x23"}, {"qubits": [24], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00030802838217055064}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x24"}, {"qubits": [25], "gate": "x", "parameters": [{"date": "2021-12-09T00:42:48-05:00", "name": "gate_error", "unit": "", "value": 9.814733917736364e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x25"}, {"qubits": [26], "gate": "x", "parameters": [{"date": "2021-12-09T00:39:04-05:00", "name": "gate_error", "unit": "", "value": 0.00015163384492023144}, {"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 21.333333333333332}], "name": "x26"}, {"qubits": [19, 16], "gate": "cx", "parameters": [{"date": "2021-12-09T02:59:52-05:00", "name": "gate_error", "unit": "", "value": 0.006337542369056093}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 305.77777777777777}], "name": "cx19_16"}, {"qubits": [16, 19], "gate": "cx", "parameters": [{"date": "2021-12-09T02:59:52-05:00", "name": "gate_error", "unit": "", "value": 0.006337542369056093}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 327.1111111111111}], "name": "cx16_19"}, {"qubits": [19, 22], "gate": "cx", "parameters": [{"date": "2021-12-09T02:54:25-05:00", "name": "gate_error", "unit": "", "value": 0.008353026850019152}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 227.55555555555554}], "name": "cx19_22"}, {"qubits": [22, 19], "gate": "cx", "parameters": [{"date": "2021-12-09T02:54:25-05:00", "name": "gate_error", "unit": "", "value": 0.008353026850019152}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 248.88888888888889}], "name": "cx22_19"}, {"qubits": [9, 8], "gate": "cx", "parameters": [{"date": "2021-12-09T02:48:55-05:00", "name": "gate_error", "unit": "", "value": 0.008506915871418552}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 519.1111111111111}], "name": "cx9_8"}, {"qubits": [8, 9], "gate": "cx", "parameters": [{"date": "2021-12-09T02:48:55-05:00", "name": "gate_error", "unit": "", "value": 0.008506915871418552}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 540.4444444444445}], "name": "cx8_9"}, {"qubits": [6, 7], "gate": "cx", "parameters": [{"date": "2021-12-09T02:43:23-05:00", "name": "gate_error", "unit": "", "value": 0.00429950285120731}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 263.1111111111111}], "name": "cx6_7"}, {"qubits": [7, 6], "gate": "cx", "parameters": [{"date": "2021-12-09T02:43:23-05:00", "name": "gate_error", "unit": "", "value": 0.00429950285120731}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 284.44444444444446}], "name": "cx7_6"}, {"qubits": [24, 23], "gate": "cx", "parameters": [{"date": "2021-12-09T02:43:23-05:00", "name": "gate_error", "unit": "", "value": 0.022998772467994755}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 248.88888888888889}], "name": "cx24_23"}, {"qubits": [23, 24], "gate": "cx", "parameters": [{"date": "2021-12-09T02:43:23-05:00", "name": "gate_error", "unit": "", "value": 0.022998772467994755}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 270.22222222222223}], "name": "cx23_24"}, {"qubits": [13, 12], "gate": "cx", "parameters": [{"date": "2021-12-09T02:35:35-05:00", "name": "gate_error", "unit": "", "value": 0.005247526291353555}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 384}], "name": "cx13_12"}, {"qubits": [12, 13], "gate": "cx", "parameters": [{"date": "2021-12-09T02:35:35-05:00", "name": "gate_error", "unit": "", "value": 0.005247526291353555}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 405.3333333333333}], "name": "cx12_13"}, {"qubits": [14, 13], "gate": "cx", "parameters": [{"date": "2021-12-09T02:29:35-05:00", "name": "gate_error", "unit": "", "value": 0.004709347951406734}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 234.66666666666666}], "name": "cx14_13"}, {"qubits": [13, 14], "gate": "cx", "parameters": [{"date": "2021-12-09T02:29:35-05:00", "name": "gate_error", "unit": "", "value": 0.004709347951406734}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 256}], "name": "cx13_14"}, {"qubits": [21, 23], "gate": "cx", "parameters": [{"date": "2021-12-09T02:29:35-05:00", "name": "gate_error", "unit": "", "value": 0.01727369895539732}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 256}], "name": "cx21_23"}, {"qubits": [23, 21], "gate": "cx", "parameters": [{"date": "2021-12-09T02:29:35-05:00", "name": "gate_error", "unit": "", "value": 0.01727369895539732}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 277.3333333333333}], "name": "cx23_21"}, {"qubits": [14, 11], "gate": "cx", "parameters": [{"date": "2021-12-09T02:24:11-05:00", "name": "gate_error", "unit": "", "value": 0.00707849526409296}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 405.3333333333333}], "name": "cx14_11"}, {"qubits": [11, 14], "gate": "cx", "parameters": [{"date": "2021-12-09T02:24:11-05:00", "name": "gate_error", "unit": "", "value": 0.00707849526409296}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 426.66666666666663}], "name": "cx11_14"}, {"qubits": [0, 1], "gate": "cx", "parameters": [{"date": "2021-12-09T02:18:18-05:00", "name": "gate_error", "unit": "", "value": 0.006357420265272751}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 305.77777777777777}], "name": "cx0_1"}, {"qubits": [1, 0], "gate": "cx", "parameters": [{"date": "2021-12-09T02:18:18-05:00", "name": "gate_error", "unit": "", "value": 0.006357420265272751}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 327.1111111111111}], "name": "cx1_0"}, {"qubits": [18, 15], "gate": "cx", "parameters": [{"date": "2021-12-09T02:18:18-05:00", "name": "gate_error", "unit": "", "value": 0.013049747614580776}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 305.77777777777777}], "name": "cx18_15"}, {"qubits": [15, 18], "gate": "cx", "parameters": [{"date": "2021-12-09T02:18:18-05:00", "name": "gate_error", "unit": "", "value": 0.013049747614580776}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 327.1111111111111}], "name": "cx15_18"}, {"qubits": [25, 22], "gate": "cx", "parameters": [{"date": "2021-12-09T02:18:18-05:00", "name": "gate_error", "unit": "", "value": 0.0061355063177596925}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 291.55555555555554}], "name": "cx25_22"}, {"qubits": [22, 25], "gate": "cx", "parameters": [{"date": "2021-12-09T02:18:18-05:00", "name": "gate_error", "unit": "", "value": 0.0061355063177596925}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 312.88888888888886}], "name": "cx22_25"}, {"qubits": [14, 16], "gate": "cx", "parameters": [{"date": "2021-12-09T02:12:12-05:00", "name": "gate_error", "unit": "", "value": 0.009847791267468736}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 419.55555555555554}], "name": "cx14_16"}, {"qubits": [16, 14], "gate": "cx", "parameters": [{"date": "2021-12-09T02:12:12-05:00", "name": "gate_error", "unit": "", "value": 0.009847791267468736}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 440.88888888888886}], "name": "cx16_14"}, {"qubits": [17, 18], "gate": "cx", "parameters": [{"date": "2021-12-09T02:12:12-05:00", "name": "gate_error", "unit": "", "value": 0.007561349832055975}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 419.55555555555554}], "name": "cx17_18"}, {"qubits": [18, 17], "gate": "cx", "parameters": [{"date": "2021-12-09T02:12:12-05:00", "name": "gate_error", "unit": "", "value": 0.007561349832055975}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 440.88888888888886}], "name": "cx18_17"}, {"qubits": [15, 12], "gate": "cx", "parameters": [{"date": "2021-12-09T02:06:50-05:00", "name": "gate_error", "unit": "", "value": 0.01309719449542407}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 384}], "name": "cx15_12"}, {"qubits": [12, 15], "gate": "cx", "parameters": [{"date": "2021-12-09T02:06:50-05:00", "name": "gate_error", "unit": "", "value": 0.01309719449542407}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 405.3333333333333}], "name": "cx12_15"}, {"qubits": [10, 12], "gate": "cx", "parameters": [{"date": "2021-12-09T01:56:09-05:00", "name": "gate_error", "unit": "", "value": 0.012336794143630897}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 277.3333333333333}], "name": "cx10_12"}, {"qubits": [12, 10], "gate": "cx", "parameters": [{"date": "2021-12-09T01:56:09-05:00", "name": "gate_error", "unit": "", "value": 0.012336794143630897}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 298.66666666666663}], "name": "cx12_10"}, {"qubits": [19, 20], "gate": "cx", "parameters": [{"date": "2021-12-09T01:56:09-05:00", "name": "gate_error", "unit": "", "value": 0.006482538837842389}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 291.55555555555554}], "name": "cx19_20"}, {"qubits": [20, 19], "gate": "cx", "parameters": [{"date": "2021-12-09T01:56:09-05:00", "name": "gate_error", "unit": "", "value": 0.006482538837842389}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 312.88888888888886}], "name": "cx20_19"}, {"qubits": [5, 8], "gate": "cx", "parameters": [{"date": "2021-12-09T01:50:32-05:00", "name": "gate_error", "unit": "", "value": 0.024196133150740873}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 323.55555555555554}], "name": "cx5_8"}, {"qubits": [8, 5], "gate": "cx", "parameters": [{"date": "2021-12-09T01:50:32-05:00", "name": "gate_error", "unit": "", "value": 0.024196133150740873}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 366.22222222222223}], "name": "cx8_5"}, {"qubits": [4, 7], "gate": "cx", "parameters": [{"date": "2021-12-09T01:40:48-05:00", "name": "gate_error", "unit": "", "value": 0.00762651350114224}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 256}], "name": "cx4_7"}, {"qubits": [7, 4], "gate": "cx", "parameters": [{"date": "2021-12-09T01:40:48-05:00", "name": "gate_error", "unit": "", "value": 0.00762651350114224}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 298.66666666666663}], "name": "cx7_4"}, {"qubits": [11, 8], "gate": "cx", "parameters": [{"date": "2021-12-09T01:40:48-05:00", "name": "gate_error", "unit": "", "value": 0.006642075980445833}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 270.22222222222223}], "name": "cx11_8"}, {"qubits": [8, 11], "gate": "cx", "parameters": [{"date": "2021-12-09T01:40:48-05:00", "name": "gate_error", "unit": "", "value": 0.006642075980445833}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 312.88888888888886}], "name": "cx8_11"}, {"qubits": [5, 3], "gate": "cx", "parameters": [{"date": "2021-12-09T01:31:39-05:00", "name": "gate_error", "unit": "", "value": 0.006968307084630532}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 184.88888888888889}], "name": "cx5_3"}, {"qubits": [3, 5], "gate": "cx", "parameters": [{"date": "2021-12-09T01:31:39-05:00", "name": "gate_error", "unit": "", "value": 0.006968307084630532}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 227.55555555555554}], "name": "cx3_5"}, {"qubits": [7, 10], "gate": "cx", "parameters": [{"date": "2021-12-09T01:31:39-05:00", "name": "gate_error", "unit": "", "value": 0.00759069213567834}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 202.66666666666666}], "name": "cx7_10"}, {"qubits": [10, 7], "gate": "cx", "parameters": [{"date": "2021-12-09T01:31:39-05:00", "name": "gate_error", "unit": "", "value": 0.00759069213567834}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 245.33333333333331}], "name": "cx10_7"}, {"qubits": [26, 25], "gate": "cx", "parameters": [{"date": "2021-12-09T01:31:39-05:00", "name": "gate_error", "unit": "", "value": 0.005525208032735179}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 224}], "name": "cx26_25"}, {"qubits": [25, 26], "gate": "cx", "parameters": [{"date": "2021-12-09T01:31:39-05:00", "name": "gate_error", "unit": "", "value": 0.005525208032735179}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 266.66666666666663}], "name": "cx25_26"}, {"qubits": [2, 3], "gate": "cx", "parameters": [{"date": "2021-12-09T01:16:21-05:00", "name": "gate_error", "unit": "", "value": 0.012094161701677514}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 334.22222222222223}], "name": "cx2_3"}, {"qubits": [3, 2], "gate": "cx", "parameters": [{"date": "2021-12-09T01:16:21-05:00", "name": "gate_error", "unit": "", "value": 0.012094161701677514}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 376.88888888888886}], "name": "cx3_2"}, {"qubits": [24, 25], "gate": "cx", "parameters": [{"date": "2021-12-09T01:16:21-05:00", "name": "gate_error", "unit": "", "value": 0.0175616132547268}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 323.55555555555554}], "name": "cx24_25"}, {"qubits": [25, 24], "gate": "cx", "parameters": [{"date": "2021-12-09T01:16:21-05:00", "name": "gate_error", "unit": "", "value": 0.0175616132547268}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 366.22222222222223}], "name": "cx25_24"}, {"qubits": [1, 4], "gate": "cx", "parameters": [{"date": "2021-12-09T01:06:04-05:00", "name": "gate_error", "unit": "", "value": 0.005321346562177809}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 181.33333333333331}], "name": "cx1_4"}, {"qubits": [4, 1], "gate": "cx", "parameters": [{"date": "2021-12-09T01:06:04-05:00", "name": "gate_error", "unit": "", "value": 0.005321346562177809}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 224}], "name": "cx4_1"}, {"qubits": [2, 1], "gate": "cx", "parameters": [{"date": "2021-12-09T00:57:45-05:00", "name": "gate_error", "unit": "", "value": 0.0036825930396536255}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 199.1111111111111}], "name": "cx2_1"}, {"qubits": [1, 2], "gate": "cx", "parameters": [{"date": "2021-12-09T00:57:45-05:00", "name": "gate_error", "unit": "", "value": 0.0036825930396536255}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 241.77777777777777}], "name": "cx1_2"}, {"qubits": [18, 21], "gate": "cx", "parameters": [{"date": "2021-12-09T00:57:45-05:00", "name": "gate_error", "unit": "", "value": 0.004606278511712469}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 238.2222222222222}], "name": "cx18_21"}, {"qubits": [21, 18], "gate": "cx", "parameters": [{"date": "2021-12-09T00:57:45-05:00", "name": "gate_error", "unit": "", "value": 0.004606278511712469}, {"date": "2021-12-06T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 280.88888888888886}], "name": "cx21_18"}, {"qubits": [0], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1013.3333333333333}], "name": "reset0"}, {"qubits": [1], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1034.6666666666665}], "name": "reset1"}, {"qubits": [2], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 796.4444444444443}], "name": "reset2"}, {"qubits": [3], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset3"}, {"qubits": [4], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset4"}, {"qubits": [5], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset5"}, {"qubits": [6], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset6"}, {"qubits": [7], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset7"}, {"qubits": [8], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset8"}, {"qubits": [9], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset9"}, {"qubits": [10], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 785.7777777777777}], "name": "reset10"}, {"qubits": [11], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset11"}, {"qubits": [12], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset12"}, {"qubits": [13], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset13"}, {"qubits": [14], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset14"}, {"qubits": [15], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset15"}, {"qubits": [16], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset16"}, {"qubits": [17], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset17"}, {"qubits": [18], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset18"}, {"qubits": [19], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset19"}, {"qubits": [20], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset20"}, {"qubits": [21], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset21"}, {"qubits": [22], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset22"}, {"qubits": [23], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset23"}, {"qubits": [24], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset24"}, {"qubits": [25], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset25"}, {"qubits": [26], "gate": "reset", "parameters": [{"date": "2021-12-09T14:06:00-05:00", "name": "gate_length", "unit": "ns", "value": 1027.5555555555554}], "name": "reset26"}], "general": [{"date": "2021-12-09T14:06:00-05:00", "name": "jq_1213", "unit": "GHz", "value": 0.0018887236719288803}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1213", "unit": "GHz", "value": -8.234561335428781e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1416", "unit": "GHz", "value": 0.001886878632181137}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1416", "unit": "GHz", "value": -5.351795176349092e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_89", "unit": "GHz", "value": 0.0019522580008889305}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_89", "unit": "GHz", "value": -5.6179176377601576e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1718", "unit": "GHz", "value": 0.0020129599348760684}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1718", "unit": "GHz", "value": -0.0001089817423086943}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1114", "unit": "GHz", "value": 0.001964504165732513}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1114", "unit": "GHz", "value": -5.1105539518314186e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1012", "unit": "GHz", "value": 0.0018171515493103328}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1012", "unit": "GHz", "value": -4.152126804777608e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1314", "unit": "GHz", "value": 0.002009355790829741}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1314", "unit": "GHz", "value": -5.003314383138693e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_710", "unit": "GHz", "value": 0.0016720559973090238}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_710", "unit": "GHz", "value": -3.558744539115089e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1619", "unit": "GHz", "value": 0.0018865517451473871}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1619", "unit": "GHz", "value": -4.6846675496043986e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1215", "unit": "GHz", "value": 0.0017715580797881506}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1215", "unit": "GHz", "value": -6.623513249544847e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_2225", "unit": "GHz", "value": 0.0018650051385189213}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_2225", "unit": "GHz", "value": -4.457069533109141e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_2324", "unit": "GHz", "value": 0.0028155952283568757}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_2324", "unit": "GHz", "value": -9.947834440658777e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_811", "unit": "GHz", "value": 0.0019464431539896285}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_811", "unit": "GHz", "value": -5.2153323741519595e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_01", "unit": "GHz", "value": 0.002026799863637165}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_01", "unit": "GHz", "value": -5.4860351649404975e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_12", "unit": "GHz", "value": 0.0021214366380768687}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_12", "unit": "GHz", "value": -5.7961962001162e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1920", "unit": "GHz", "value": 0.001960640268264794}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1920", "unit": "GHz", "value": -4.846053225616354e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_67", "unit": "GHz", "value": 0.001784439951172113}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_67", "unit": "GHz", "value": -4.113328592300485e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_2425", "unit": "GHz", "value": 0.0019445944403997987}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_2425", "unit": "GHz", "value": -6.018795412879298e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1821", "unit": "GHz", "value": 0.0019693214801490165}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1821", "unit": "GHz", "value": -5.229576499801676e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_47", "unit": "GHz", "value": 0.001867309326589659}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_47", "unit": "GHz", "value": -5.1310401070554394e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_35", "unit": "GHz", "value": 0.002073349452691569}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_35", "unit": "GHz", "value": -5.647914430786984e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_2123", "unit": "GHz", "value": 0.001945591309938483}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_2123", "unit": "GHz", "value": -4.7412089208261694e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_58", "unit": "GHz", "value": 0.0020719183799323766}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_58", "unit": "GHz", "value": -6.920573798835464e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_14", "unit": "GHz", "value": 0.0019935247922118248}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_14", "unit": "GHz", "value": -4.9393369033263765e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_23", "unit": "GHz", "value": 0.0020950421591516616}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_23", "unit": "GHz", "value": -6.597855192291888e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1922", "unit": "GHz", "value": 0.001959802322799525}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1922", "unit": "GHz", "value": -4.738868896285107e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_1518", "unit": "GHz", "value": 0.0016845752063501366}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_1518", "unit": "GHz", "value": -3.4580347913212845e-05}, {"date": "2021-12-09T14:06:00-05:00", "name": "jq_2526", "unit": "GHz", "value": 0.0019201876227456542}, {"date": "2021-12-09T14:06:00-05:00", "name": "zz_2526", "unit": "GHz", "value": -6.82030387638762e-05}]}
@@ -0,0 +1,18 @@
1
+ # This code is part of Qiskit.
2
+ #
3
+ # (C) Copyright IBM 2023.
4
+ #
5
+ # This code is licensed under the Apache License, Version 2.0. You may
6
+ # obtain a copy of this license in the LICENSE.txt file in the root directory
7
+ # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
8
+ #
9
+ # Any modifications or derivative works of this code must retain this
10
+ # copyright notice, and modified files need to carry a notice indicating
11
+ # that they have been altered from the originals.
12
+
13
+
14
+ """
15
+ A 5 qubit fake :class:`.BackendV1` without pulse capabilities.
16
+ """
17
+
18
+ from .fake_5q_v1 import Fake5QV1
@@ -0,0 +1 @@
1
+ {"backend_name": "ibmqx2", "backend_version": "2.3.3", "n_qubits": 5, "basis_gates": ["id", "rz", "sx", "x", "cx", "reset"], "gates": [{"name": "id", "parameters": [], "qasm_def": "gate id q { U(0, 0, 0) q; }", "coupling_map": [[0], [1], [2], [3], [4]]}, {"name": "rz", "parameters": ["theta"], "qasm_def": "gate rz(theta) q { U(0, 0, theta) q; }", "coupling_map": [[0], [1], [2], [3], [4]]}, {"name": "sx", "parameters": [], "qasm_def": "gate sx q { U(pi/2, 3*pi/2, pi/2) q; }", "coupling_map": [[0], [1], [2], [3], [4]]}, {"name": "x", "parameters": [], "qasm_def": "gate x q { U(pi, 0, pi) q; }", "coupling_map": [[0], [1], [2], [3], [4]]}, {"name": "cx", "parameters": [], "qasm_def": "gate cx q0, q1 { CX q0, q1; }", "coupling_map": [[0, 1], [0, 2], [1, 0], [1, 2], [2, 0], [2, 1], [2, 3], [2, 4], [3, 2], [3, 4], [4, 2], [4, 3]]}, {"name": "reset", "parameters": null, "qasm_def": null}], "local": false, "simulator": false, "conditional": false, "open_pulse": false, "memory": true, "max_shots": 8192, "coupling_map": [[0, 1], [0, 2], [1, 0], [1, 2], [2, 0], [2, 1], [2, 3], [2, 4], [3, 2], [3, 4], [4, 2], [4, 3]], "dynamic_reprate_enabled": true, "supported_instructions": ["rz", "sx", "id", "reset", "delay", "play", "u1", "measure", "acquire", "u2", "cx", "setf", "shiftf", "u3", "x"], "rep_delay_range": [0.0, 500.0], "default_rep_delay": 250.0, "max_experiments": 75, "sample_name": "family: Canary, revision: 1", "n_registers": 1, "credits_required": true, "online_date": "2017-01-24T05:00:00+00:00", "description": "5 qubit device Yorktown", "dt": 0.2222222222222222, "dtm": 0.2222222222222222, "processor_type": {"family": "Canary", "revision": 1}, "acquisition_latency": [], "allow_q_object": true, "channels": {"acquire0": {"operates": {"qubits": [0]}, "purpose": "acquire", "type": "acquire"}, "acquire1": {"operates": {"qubits": [1]}, "purpose": "acquire", "type": "acquire"}, "acquire2": {"operates": {"qubits": [2]}, "purpose": "acquire", "type": "acquire"}, "acquire3": {"operates": {"qubits": [3]}, "purpose": "acquire", "type": "acquire"}, "acquire4": {"operates": {"qubits": [4]}, "purpose": "acquire", "type": "acquire"}, "d0": {"operates": {"qubits": [0]}, "purpose": "drive", "type": "drive"}, "d1": {"operates": {"qubits": [1]}, "purpose": "drive", "type": "drive"}, "d2": {"operates": {"qubits": [2]}, "purpose": "drive", "type": "drive"}, "d3": {"operates": {"qubits": [3]}, "purpose": "drive", "type": "drive"}, "d4": {"operates": {"qubits": [4]}, "purpose": "drive", "type": "drive"}, "m0": {"operates": {"qubits": [0]}, "purpose": "measure", "type": "measure"}, "m1": {"operates": {"qubits": [1]}, "purpose": "measure", "type": "measure"}, "m2": {"operates": {"qubits": [2]}, "purpose": "measure", "type": "measure"}, "m3": {"operates": {"qubits": [3]}, "purpose": "measure", "type": "measure"}, "m4": {"operates": {"qubits": [4]}, "purpose": "measure", "type": "measure"}, "u0": {"operates": {"qubits": [0, 1]}, "purpose": "cross-resonance", "type": "control"}, "u1": {"operates": {"qubits": [0, 2]}, "purpose": "cross-resonance", "type": "control"}, "u10": {"operates": {"qubits": [4, 2]}, "purpose": "cross-resonance", "type": "control"}, "u11": {"operates": {"qubits": [4, 3]}, "purpose": "cross-resonance", "type": "control"}, "u2": {"operates": {"qubits": [1, 0]}, "purpose": "cross-resonance", "type": "control"}, "u3": {"operates": {"qubits": [1, 2]}, "purpose": "cross-resonance", "type": "control"}, "u4": {"operates": {"qubits": [2, 0]}, "purpose": "cross-resonance", "type": "control"}, "u5": {"operates": {"qubits": [2, 1]}, "purpose": "cross-resonance", "type": "control"}, "u6": {"operates": {"qubits": [2, 3]}, "purpose": "cross-resonance", "type": "control"}, "u7": {"operates": {"qubits": [2, 4]}, "purpose": "cross-resonance", "type": "control"}, "u8": {"operates": {"qubits": [3, 2]}, "purpose": "cross-resonance", "type": "control"}, "u9": {"operates": {"qubits": [3, 4]}, "purpose": "cross-resonance", "type": "control"}}, "conditional_latency": [], "discriminators": ["quadratic_discriminator", "hw_centroid", "linear_discriminator"], "hamiltonian": {"description": "Qubits are modeled as Duffing oscillators. In this case, the system includes higher energy states, i.e. not just |0> and |1>. The Pauli operators are generalized via the following set of transformations:\n\n$(\\mathbb{I}-\\sigma_{i}^z)/2 \\rightarrow O_i \\equiv b^\\dagger_{i} b_{i}$,\n\n$\\sigma_{+} \\rightarrow b^\\dagger$,\n\n$\\sigma_{-} \\rightarrow b$,\n\n$\\sigma_{i}^X \\rightarrow b^\\dagger_{i} + b_{i}$.\n\nQubits are coupled through resonator buses. The provided Hamiltonian has been projected into the zero excitation subspace of the resonator buses leading to an effective qubit-qubit flip-flop interaction. The qubit resonance frequencies in the Hamiltonian are the cavity dressed frequencies and not exactly what is returned by the backend defaults, which also includes the dressing due to the qubit-qubit interactions.\n\nQuantities are returned in angular frequencies, with units 2*pi*GHz.\n\nWARNING: Currently not all system Hamiltonian information is available to the public, missing values have been replaced with 0.\n", "h_latex": "\\begin{align} \\mathcal{H}/\\hbar = & \\sum_{i=0}^{4}\\left(\\frac{\\omega_{q,i}}{2}(\\mathbb{I}-\\sigma_i^{z})+\\frac{\\Delta_{i}}{2}(O_i^2-O_i)+\\Omega_{d,i}D_i(t)\\sigma_i^{X}\\right) \\\\ & + J_{0,1}(\\sigma_{0}^{+}\\sigma_{1}^{-}+\\sigma_{0}^{-}\\sigma_{1}^{+}) + J_{1,2}(\\sigma_{1}^{+}\\sigma_{2}^{-}+\\sigma_{1}^{-}\\sigma_{2}^{+}) + J_{2,3}(\\sigma_{2}^{+}\\sigma_{3}^{-}+\\sigma_{2}^{-}\\sigma_{3}^{+}) + J_{2,4}(\\sigma_{2}^{+}\\sigma_{4}^{-}+\\sigma_{2}^{-}\\sigma_{4}^{+}) \\\\ & + J_{3,4}(\\sigma_{3}^{+}\\sigma_{4}^{-}+\\sigma_{3}^{-}\\sigma_{4}^{+}) + J_{0,2}(\\sigma_{0}^{+}\\sigma_{2}^{-}+\\sigma_{0}^{-}\\sigma_{2}^{+}) \\\\ & + \\Omega_{d,0}(U_{0}^{(0,1)}(t)+U_{1}^{(0,2)}(t))\\sigma_{0}^{X} + \\Omega_{d,1}(U_{2}^{(1,0)}(t)+U_{3}^{(1,2)}(t))\\sigma_{1}^{X} \\\\ & + \\Omega_{d,2}(U_{6}^{(2,3)}(t)+U_{5}^{(2,1)}(t)+U_{7}^{(2,4)}(t)+U_{4}^{(2,0)}(t))\\sigma_{2}^{X} + \\Omega_{d,3}(U_{8}^{(3,2)}(t)+U_{9}^{(3,4)}(t))\\sigma_{3}^{X} \\\\ & + \\Omega_{d,4}(U_{11}^{(4,3)}(t)+U_{10}^{(4,2)}(t))\\sigma_{4}^{X} \\\\ \\end{align}", "h_str": ["_SUM[i,0,4,wq{i}/2*(I{i}-Z{i})]", "_SUM[i,0,4,delta{i}/2*O{i}*O{i}]", "_SUM[i,0,4,-delta{i}/2*O{i}]", "_SUM[i,0,4,omegad{i}*X{i}||D{i}]", "jq0q1*Sp0*Sm1", "jq0q1*Sm0*Sp1", "jq1q2*Sp1*Sm2", "jq1q2*Sm1*Sp2", "jq2q3*Sp2*Sm3", "jq2q3*Sm2*Sp3", "jq2q4*Sp2*Sm4", "jq2q4*Sm2*Sp4", "jq3q4*Sp3*Sm4", "jq3q4*Sm3*Sp4", "jq0q2*Sp0*Sm2", "jq0q2*Sm0*Sp2", "omegad1*X0||U0", "omegad2*X0||U1", "omegad0*X1||U2", "omegad2*X1||U3", "omegad3*X2||U6", "omegad1*X2||U5", "omegad4*X2||U7", "omegad0*X2||U4", "omegad2*X3||U8", "omegad4*X3||U9", "omegad3*X4||U11", "omegad2*X4||U10"], "osc": {}, "qub": {"0": 3, "1": 3, "2": 3, "3": 3, "4": 3}, "vars": {"delta0": -2.078515989791283, "delta1": -2.076140198460304, "delta2": -2.3632544243955147, "delta3": -2.071793501418874, "delta4": -2.092928090491978, "jq0q1": 0.011968734726718661, "jq0q2": 0.01143731530238952, "jq1q2": 0.0077637124867075335, "jq2q3": 0.011434086611531646, "jq2q4": 0.011382837107272241, "jq3q4": 0.012622615872488169, "omegad0": 0.31227678627828565, "omegad1": 0.3287329454702026, "omegad2": 0.2641052707637787, "omegad3": 0.24124632745223779, "omegad4": 0.42046738820058555, "wq0": 33.18944334684542, "wq1": 32.97119189144383, "wq2": 31.62559984414466, "wq3": 33.25055909747699, "wq4": 31.908861733581208}}, "meas_kernels": ["hw_boxcar"], "meas_levels": [1, 2], "meas_lo_range": [[6.030433052, 7.030433052], [5.981651108, 6.981651108], [5.93654928, 6.93654928], [6.078886966, 7.078886966], [6.030066921, 7.030066921]], "meas_map": [[0, 1, 2, 3, 4]], "multi_meas_enabled": true, "n_uchannels": 12, "parametric_pulses": ["gaussian", "gaussian_square", "drag", "constant"], "quantum_volume": 8, "qubit_channel_mapping": [["u4", "u0", "m0", "d0", "u1", "u2"], ["d1", "u0", "u2", "u3", "u5", "m1"], ["d2", "u4", "u7", "u8", "u10", "u1", "m2", "u3", "u5", "u6"], ["u8", "u11", "u9", "m3", "d3", "u6"], ["u7", "u11", "m4", "u9", "d4", "u10"]], "qubit_lo_range": [[4.782263967118866, 5.782263967118866], [4.747528169154703, 5.747528169154703], [4.5333705434418975, 5.533370543441897], [4.791990840932652, 5.791990840932652], [4.578453073335274, 5.578453073335273]], "rep_times": [0.001], "u_channel_lo": [[{"q": 1, "scale": [1.0, 0.0]}], [{"q": 2, "scale": [1.0, 0.0]}], [{"q": 0, "scale": [1.0, 0.0]}], [{"q": 2, "scale": [1.0, 0.0]}], [{"q": 0, "scale": [1.0, 0.0]}], [{"q": 1, "scale": [1.0, 0.0]}], [{"q": 3, "scale": [1.0, 0.0]}], [{"q": 4, "scale": [1.0, 0.0]}], [{"q": 2, "scale": [1.0, 0.0]}], [{"q": 4, "scale": [1.0, 0.0]}], [{"q": 2, "scale": [1.0, 0.0]}], [{"q": 3, "scale": [1.0, 0.0]}]], "uchannels_enabled": true, "url": "None", "allow_object_storage": true}
@@ -0,0 +1,41 @@
1
+ # This code is part of Qiskit.
2
+ #
3
+ # (C) Copyright IBM 2023.
4
+ #
5
+ # This code is licensed under the Apache License, Version 2.0. You may
6
+ # obtain a copy of this license in the LICENSE.txt file in the root directory
7
+ # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
8
+ #
9
+ # Any modifications or derivative works of this code must retain this
10
+ # copyright notice, and modified files need to carry a notice indicating
11
+ # that they have been altered from the originals.
12
+
13
+ """
14
+ A 5 qubit fake :class:`.BackendV1` without pulse capabilities.
15
+ """
16
+
17
+ import os
18
+ from qiskit.providers.fake_provider import fake_qasm_backend
19
+
20
+
21
+ class Fake5QV1(fake_qasm_backend.FakeQasmBackend):
22
+ """A fake backend with the following characteristics:
23
+
24
+ * num_qubits: 5
25
+ * coupling_map:
26
+
27
+ .. code-block:: text
28
+
29
+ 1
30
+ / |
31
+ 0 - 2 - 3
32
+ | /
33
+ 4
34
+
35
+ * basis_gates: ``["id", "rz", "sx", "x", "cx", "reset"]``
36
+ """
37
+
38
+ dirname = os.path.dirname(__file__)
39
+ conf_filename = "conf_yorktown.json"
40
+ props_filename = "props_yorktown.json"
41
+ backend_name = "fake_5q_v1"
@@ -0,0 +1 @@
1
+ {"backend_name": "ibmqx2", "backend_version": "2.3.3", "last_update_date": "2021-03-15T01:02:20-04:00", "qubits": [[{"date": "2021-03-15T00:18:25-04:00", "name": "T1", "unit": "us", "value": 48.23393547580996}, {"date": "2021-03-15T00:19:28-04:00", "name": "T2", "unit": "us", "value": 22.946009132253206}, {"date": "2021-03-15T01:02:20-04:00", "name": "frequency", "unit": "GHz", "value": 5.282263967118867}, {"date": "2021-03-15T01:02:20-04:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3308060940708262}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_error", "unit": "", "value": 0.06330000000000002}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0776}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.049000000000000044}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_length", "unit": "ns", "value": 3352.8888888888887}], [{"date": "2021-03-15T00:18:25-04:00", "name": "T1", "unit": "us", "value": 42.86533281094276}, {"date": "2021-03-15T00:20:28-04:00", "name": "T2", "unit": "us", "value": 24.54508080735243}, {"date": "2021-03-15T01:02:20-04:00", "name": "frequency", "unit": "GHz", "value": 5.2475281691547035}, {"date": "2021-03-15T01:02:20-04:00", "name": "anharmonicity", "unit": "GHz", "value": -0.33042797513674593}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_error", "unit": "", "value": 0.031100000000000017}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0408}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.021399999999999975}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_length", "unit": "ns", "value": 3352.8888888888887}], [{"date": "2021-03-15T00:18:25-04:00", "name": "T1", "unit": "us", "value": 64.96063166056538}, {"date": "2021-03-15T00:21:30-04:00", "name": "T2", "unit": "us", "value": 68.66934540094697}, {"date": "2021-03-15T01:02:20-04:00", "name": "frequency", "unit": "GHz", "value": 5.033370543441897}, {"date": "2021-03-15T01:02:20-04:00", "name": "anharmonicity", "unit": "GHz", "value": -0.376123623426338}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_error", "unit": "", "value": 0.11519999999999997}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.1388}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.09160000000000001}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_length", "unit": "ns", "value": 3352.8888888888887}], [{"date": "2021-03-15T00:18:25-04:00", "name": "T1", "unit": "us", "value": 54.844955470162034}, {"date": "2021-03-15T00:19:28-04:00", "name": "T2", "unit": "us", "value": 30.759930969381355}, {"date": "2021-03-15T01:02:20-04:00", "name": "frequency", "unit": "GHz", "value": 5.291990840932653}, {"date": "2021-03-15T01:02:20-04:00", "name": "anharmonicity", "unit": "GHz", "value": -0.32973617681647954}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_error", "unit": "", "value": 0.027700000000000058}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.04239999999999999}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.013}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_length", "unit": "ns", "value": 3352.8888888888887}], [{"date": "2021-03-14T00:19:57-05:00", "name": "T1", "unit": "us", "value": 46.86728923564854}, {"date": "2021-03-15T00:20:28-04:00", "name": "T2", "unit": "us", "value": 3.443082999663734}, {"date": "2021-03-15T01:02:20-04:00", "name": "frequency", "unit": "GHz", "value": 5.078453073335274}, {"date": "2021-03-15T01:02:20-04:00", "name": "anharmonicity", "unit": "GHz", "value": -0.33309985113768}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_error", "unit": "", "value": 0.2923}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.49860000000000004}, {"date": "2021-03-15T00:17:54-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.086}, {"date": "2021-03-15T00:17:54-04:00", "name": "readout_length", "unit": "ns", "value": 3352.8888888888887}]], "gates": [{"qubits": [0], "gate": "id", "parameters": [{"date": "2021-03-15T00:22:15-04:00", "name": "gate_error", "unit": "", "value": 0.0013043388897769352}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id0"}, {"qubits": [1], "gate": "id", "parameters": [{"date": "2021-03-15T00:24:31-04:00", "name": "gate_error", "unit": "", "value": 0.0016225037300878712}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id1"}, {"qubits": [2], "gate": "id", "parameters": [{"date": "2021-03-15T00:26:15-04:00", "name": "gate_error", "unit": "", "value": 0.0006173446629852812}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id2"}, {"qubits": [3], "gate": "id", "parameters": [{"date": "2021-03-15T00:27:58-04:00", "name": "gate_error", "unit": "", "value": 0.0003956947295829953}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id3"}, {"qubits": [4], "gate": "id", "parameters": [{"date": "2021-03-15T00:29:42-04:00", "name": "gate_error", "unit": "", "value": 0.0032277421851412153}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id4"}, {"qubits": [0], "gate": "rz", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz0"}, {"qubits": [1], "gate": "rz", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz1"}, {"qubits": [2], "gate": "rz", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz2"}, {"qubits": [3], "gate": "rz", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz3"}, {"qubits": [4], "gate": "rz", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz4"}, {"qubits": [0], "gate": "sx", "parameters": [{"date": "2021-03-15T00:22:15-04:00", "name": "gate_error", "unit": "", "value": 0.0013043388897769352}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx0"}, {"qubits": [1], "gate": "sx", "parameters": [{"date": "2021-03-15T00:24:31-04:00", "name": "gate_error", "unit": "", "value": 0.0016225037300878712}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx1"}, {"qubits": [2], "gate": "sx", "parameters": [{"date": "2021-03-15T00:26:15-04:00", "name": "gate_error", "unit": "", "value": 0.0006173446629852812}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx2"}, {"qubits": [3], "gate": "sx", "parameters": [{"date": "2021-03-15T00:27:58-04:00", "name": "gate_error", "unit": "", "value": 0.0003956947295829953}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx3"}, {"qubits": [4], "gate": "sx", "parameters": [{"date": "2021-03-15T00:29:42-04:00", "name": "gate_error", "unit": "", "value": 0.0032277421851412153}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx4"}, {"qubits": [0], "gate": "x", "parameters": [{"date": "2021-03-15T00:22:15-04:00", "name": "gate_error", "unit": "", "value": 0.0013043388897769352}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x0"}, {"qubits": [1], "gate": "x", "parameters": [{"date": "2021-03-15T00:24:31-04:00", "name": "gate_error", "unit": "", "value": 0.0016225037300878712}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x1"}, {"qubits": [2], "gate": "x", "parameters": [{"date": "2021-03-15T00:26:15-04:00", "name": "gate_error", "unit": "", "value": 0.0006173446629852812}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x2"}, {"qubits": [3], "gate": "x", "parameters": [{"date": "2021-03-15T00:27:58-04:00", "name": "gate_error", "unit": "", "value": 0.0003956947295829953}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x3"}, {"qubits": [4], "gate": "x", "parameters": [{"date": "2021-03-15T00:29:42-04:00", "name": "gate_error", "unit": "", "value": 0.0032277421851412153}, {"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x4"}, {"qubits": [4, 2], "gate": "cx", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_error", "unit": "", "value": 0.0394454366954671}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 355.55555555555554}], "name": "cx4_2"}, {"qubits": [2, 4], "gate": "cx", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_error", "unit": "", "value": 0.0394454366954671}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 391.1111111111111}], "name": "cx2_4"}, {"qubits": [3, 2], "gate": "cx", "parameters": [{"date": "2021-03-15T00:50:18-04:00", "name": "gate_error", "unit": "", "value": 0.0177363241903033}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 483.55555555555554}], "name": "cx3_2"}, {"qubits": [2, 3], "gate": "cx", "parameters": [{"date": "2021-03-15T00:50:18-04:00", "name": "gate_error", "unit": "", "value": 0.0177363241903033}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 519.1111111111111}], "name": "cx2_3"}, {"qubits": [1, 2], "gate": "cx", "parameters": [{"date": "2021-03-15T00:45:01-04:00", "name": "gate_error", "unit": "", "value": 0.0222732707463274}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 583.1111111111111}], "name": "cx1_2"}, {"qubits": [2, 1], "gate": "cx", "parameters": [{"date": "2021-03-15T00:45:01-04:00", "name": "gate_error", "unit": "", "value": 0.0222732707463274}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 618.6666666666666}], "name": "cx2_1"}, {"qubits": [0, 2], "gate": "cx", "parameters": [{"date": "2021-03-15T00:39:55-04:00", "name": "gate_error", "unit": "", "value": 0.02167489052376287}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 419.55555555555554}], "name": "cx0_2"}, {"qubits": [2, 0], "gate": "cx", "parameters": [{"date": "2021-03-15T00:39:55-04:00", "name": "gate_error", "unit": "", "value": 0.02167489052376287}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 455.1111111111111}], "name": "cx2_0"}, {"qubits": [0, 1], "gate": "cx", "parameters": [{"date": "2021-03-15T00:34:45-04:00", "name": "gate_error", "unit": "", "value": 0.021170783846888724}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 440.88888888888886}], "name": "cx0_1"}, {"qubits": [1, 0], "gate": "cx", "parameters": [{"date": "2021-03-15T00:34:45-04:00", "name": "gate_error", "unit": "", "value": 0.021170783846888724}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 476.4444444444444}], "name": "cx1_0"}, {"qubits": [3, 4], "gate": "cx", "parameters": [{"date": "2021-03-14T00:56:06-05:00", "name": "gate_error", "unit": "", "value": 0.015858131645591494}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 469.3333333333333}], "name": "cx3_4"}, {"qubits": [4, 3], "gate": "cx", "parameters": [{"date": "2021-03-14T00:56:06-05:00", "name": "gate_error", "unit": "", "value": 0.015858131645591494}, {"date": "2021-03-12T01:02:20-05:00", "name": "gate_length", "unit": "ns", "value": 504.88888888888886}], "name": "cx4_3"}, {"qubits": [0], "gate": "reset", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 5344}], "name": "reset0"}, {"qubits": [1], "gate": "reset", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 5344}], "name": "reset1"}, {"qubits": [2], "gate": "reset", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 5344}], "name": "reset2"}, {"qubits": [3], "gate": "reset", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 5344}], "name": "reset3"}, {"qubits": [4], "gate": "reset", "parameters": [{"date": "2021-03-15T01:02:20-04:00", "name": "gate_length", "unit": "ns", "value": 5344}], "name": "reset4"}], "general": [{"date": "2021-03-15T01:02:20-04:00", "name": "jq_01", "unit": "GHz", "value": 0.0019048832943129}, {"date": "2021-03-15T01:02:20-04:00", "name": "zz_01", "unit": "GHz", "value": -4.4398488162847355e-05}, {"date": "2021-03-15T01:02:20-04:00", "name": "jq_12", "unit": "GHz", "value": 0.0012356332190037748}, {"date": "2021-03-15T01:02:20-04:00", "name": "zz_12", "unit": "GHz", "value": -3.143188075660228e-05}, {"date": "2021-03-15T01:02:20-04:00", "name": "jq_02", "unit": "GHz", "value": 0.0018203052660758679}, {"date": "2021-03-15T01:02:20-04:00", "name": "zz_02", "unit": "GHz", "value": -9.193504368395755e-05}, {"date": "2021-03-15T01:02:20-04:00", "name": "jq_23", "unit": "GHz", "value": 0.0018197914039661215}, {"date": "2021-03-15T01:02:20-04:00", "name": "zz_23", "unit": "GHz", "value": -0.00010375981304385374}, {"date": "2021-03-15T01:02:20-04:00", "name": "jq_34", "unit": "GHz", "value": 0.002008951710856709}, {"date": "2021-03-15T01:02:20-04:00", "name": "zz_34", "unit": "GHz", "value": -8.438162979241823e-05}, {"date": "2021-03-15T01:02:20-04:00", "name": "jq_24", "unit": "GHz", "value": 0.0018116347920322281}, {"date": "2021-03-15T01:02:20-04:00", "name": "zz_24", "unit": "GHz", "value": -3.837006496679632e-05}]}
@@ -0,0 +1,18 @@
1
+ # This code is part of Qiskit.
2
+ #
3
+ # (C) Copyright IBM 2023.
4
+ #
5
+ # This code is licensed under the Apache License, Version 2.0. You may
6
+ # obtain a copy of this license in the LICENSE.txt file in the root directory
7
+ # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
8
+ #
9
+ # Any modifications or derivative works of this code must retain this
10
+ # copyright notice, and modified files need to carry a notice indicating
11
+ # that they have been altered from the originals.
12
+
13
+
14
+ """
15
+ A 7 qubit fake :class:`.BackendV1` with pulse capabilities.
16
+ """
17
+
18
+ from .fake_7q_pulse_v1 import Fake7QPulseV1
@@ -0,0 +1 @@
1
+ {"backend_name": "ibm_nairobi", "backend_version": "1.0.13", "n_qubits": 7, "basis_gates": ["id", "rz", "sx", "x", "cx", "reset"], "gates": [{"name": "id", "parameters": [], "qasm_def": "gate id q { U(0, 0, 0) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6]]}, {"name": "rz", "parameters": ["theta"], "qasm_def": "gate rz(theta) q { U(0, 0, theta) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6]]}, {"name": "sx", "parameters": [], "qasm_def": "gate sx q { U(pi/2, 3*pi/2, pi/2) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6]]}, {"name": "x", "parameters": [], "qasm_def": "gate x q { U(pi, 0, pi) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6]]}, {"name": "cx", "parameters": [], "qasm_def": "gate cx q0, q1 { CX q0, q1; }", "coupling_map": [[0, 1], [1, 0], [1, 2], [1, 3], [2, 1], [3, 1], [3, 5], [4, 5], [5, 3], [5, 4], [5, 6], [6, 5]]}, {"name": "reset", "parameters": null, "qasm_def": null}], "local": false, "simulator": false, "conditional": false, "open_pulse": true, "memory": true, "max_shots": 100000, "coupling_map": [[0, 1], [1, 0], [1, 2], [1, 3], [2, 1], [3, 1], [3, 5], [4, 5], [5, 3], [5, 4], [5, 6], [6, 5]], "dynamic_reprate_enabled": true, "supported_instructions": ["cx", "u2", "sx", "delay", "measure", "reset", "rz", "setf", "u3", "acquire", "shiftf", "u1", "x", "id", "play"], "rep_delay_range": [0.0, 500.0], "default_rep_delay": 250.0, "max_experiments": 300, "sample_name": "family: Falcon, revision: 5.11, segment: H", "n_registers": 1, "credits_required": true, "online_date": "2021-05-20T04:00:00+00:00", "description": "7 qubit device", "dt": 0.2222222222222222, "dtm": 0.2222222222222222, "processor_type": {"family": "Falcon", "revision": "5.11", "segment": "H"}, "parametric_pulses": ["gaussian", "gaussian_square", "drag", "constant"], "allow_q_object": true, "clops": 2645, "measure_esp_enabled": false, "multi_meas_enabled": true, "quantum_volume": 32, "qubit_channel_mapping": [["d0", "u0", "m0", "u1"], ["u2", "u5", "m1", "u3", "u1", "d1", "u0", "u4"], ["u2", "m2", "u4", "d2"], ["d3", "u8", "u5", "u6", "u3", "m3"], ["u9", "u7", "d4", "m4"], ["u8", "d5", "u9", "u10", "u6", "u11", "m5", "u7"], ["u10", "u11", "d6", "m6"]], "supported_features": ["q", "o", "b", "j"], "timing_constraints": {"acquire_alignment": 16, "granularity": 16, "min_length": 64, "pulse_alignment": 1}, "uchannels_enabled": true, "url": "None", "input_allowed": ["job", "runtime"], "allow_object_storage": true, "pulse_num_channels": 9, "pulse_num_qubits": 3, "n_uchannels": 12, "u_channel_lo": [[{"q": 1, "scale": [1.0, 0.0]}], [{"q": 0, "scale": [1.0, 0.0]}], [{"q": 2, "scale": [1.0, 0.0]}], [{"q": 3, "scale": [1.0, 0.0]}], [{"q": 1, "scale": [1.0, 0.0]}], [{"q": 1, "scale": [1.0, 0.0]}], [{"q": 5, "scale": [1.0, 0.0]}], [{"q": 5, "scale": [1.0, 0.0]}], [{"q": 3, "scale": [1.0, 0.0]}], [{"q": 4, "scale": [1.0, 0.0]}], [{"q": 6, "scale": [1.0, 0.0]}], [{"q": 5, "scale": [1.0, 0.0]}]], "meas_levels": [1, 2], "qubit_lo_range": [[4.760483791030155, 5.760483791030155], [4.670333454748703, 5.670333454748703], [4.774436548447222, 5.774436548447222], [4.526646125967889, 5.526646125967889], [4.677223413479857, 5.677223413479857], [4.79284383826766, 5.79284383826766], [4.6286976963519475, 5.6286976963519475]], "meas_lo_range": [[6.692252553, 7.692252553], [6.628685982, 7.628685982], [6.875559376, 7.875559376000001], [6.750891115000001, 7.750891115000001], [6.691408487, 7.691408487], [6.794383799, 7.794383799], [6.692597760000001, 7.692597760000001]], "meas_kernels": ["hw_qmfk"], "discriminators": ["quadratic_discriminator", "linear_discriminator", "hw_qmfk"], "rep_times": [1000.0], "meas_map": [[0, 1, 2, 3, 4, 5, 6]], "acquisition_latency": [], "conditional_latency": [], "hamiltonian": {"description": "Qubits are modeled as Duffing oscillators. In this case, the system includes higher energy states, i.e. not just |0> and |1>. The Pauli operators are generalized via the following set of transformations:\n\n$(\\mathbb{I}-\\sigma_{i}^z)/2 \\rightarrow O_i \\equiv b^\\dagger_{i} b_{i}$,\n\n$\\sigma_{+} \\rightarrow b^\\dagger$,\n\n$\\sigma_{-} \\rightarrow b$,\n\n$\\sigma_{i}^X \\rightarrow b^\\dagger_{i} + b_{i}$.\n\nQubits are coupled through resonator buses. The provided Hamiltonian has been projected into the zero excitation subspace of the resonator buses leading to an effective qubit-qubit flip-flop interaction. The qubit resonance frequencies in the Hamiltonian are the cavity dressed frequencies and not exactly what is returned by the backend defaults, which also includes the dressing due to the qubit-qubit interactions.\n\nQuantities are returned in angular frequencies, with units 2*pi*GHz.\n\nWARNING: Currently not all system Hamiltonian information is available to the public, missing values have been replaced with 0.\n", "h_latex": "\\begin{align} \\mathcal{H}/\\hbar = & \\sum_{i=0}^{6}\\left(\\frac{\\omega_{q,i}}{2}(\\mathbb{I}-\\sigma_i^{z})+\\frac{\\Delta_{i}}{2}(O_i^2-O_i)+\\Omega_{d,i}D_i(t)\\sigma_i^{X}\\right) \\\\ & + J_{0,1}(\\sigma_{0}^{+}\\sigma_{1}^{-}+\\sigma_{0}^{-}\\sigma_{1}^{+}) + J_{1,2}(\\sigma_{1}^{+}\\sigma_{2}^{-}+\\sigma_{1}^{-}\\sigma_{2}^{+}) + J_{4,5}(\\sigma_{4}^{+}\\sigma_{5}^{-}+\\sigma_{4}^{-}\\sigma_{5}^{+}) + J_{5,6}(\\sigma_{5}^{+}\\sigma_{6}^{-}+\\sigma_{5}^{-}\\sigma_{6}^{+}) \\\\ & + J_{1,3}(\\sigma_{1}^{+}\\sigma_{3}^{-}+\\sigma_{1}^{-}\\sigma_{3}^{+}) + J_{3,5}(\\sigma_{3}^{+}\\sigma_{5}^{-}+\\sigma_{3}^{-}\\sigma_{5}^{+}) \\\\ & + \\Omega_{d,0}(U_{0}^{(0,1)}(t))\\sigma_{0}^{X} + \\Omega_{d,1}(U_{1}^{(1,0)}(t)+U_{3}^{(1,3)}(t)+U_{2}^{(1,2)}(t))\\sigma_{1}^{X} \\\\ & + \\Omega_{d,2}(U_{4}^{(2,1)}(t))\\sigma_{2}^{X} + \\Omega_{d,3}(U_{5}^{(3,1)}(t)+U_{6}^{(3,5)}(t))\\sigma_{3}^{X} \\\\ & + \\Omega_{d,4}(U_{7}^{(4,5)}(t))\\sigma_{4}^{X} + \\Omega_{d,5}(U_{8}^{(5,3)}(t)+U_{10}^{(5,6)}(t)+U_{9}^{(5,4)}(t))\\sigma_{5}^{X} \\\\ & + \\Omega_{d,6}(U_{11}^{(6,5)}(t))\\sigma_{6}^{X} \\\\ \\end{align}", "h_str": ["_SUM[i,0,6,wq{i}/2*(I{i}-Z{i})]", "_SUM[i,0,6,delta{i}/2*O{i}*O{i}]", "_SUM[i,0,6,-delta{i}/2*O{i}]", "_SUM[i,0,6,omegad{i}*X{i}||D{i}]", "jq0q1*Sp0*Sm1", "jq0q1*Sm0*Sp1", "jq1q2*Sp1*Sm2", "jq1q2*Sm1*Sp2", "jq4q5*Sp4*Sm5", "jq4q5*Sm4*Sp5", "jq5q6*Sp5*Sm6", "jq5q6*Sm5*Sp6", "jq1q3*Sp1*Sm3", "jq1q3*Sm1*Sp3", "jq3q5*Sp3*Sm5", "jq3q5*Sm3*Sp5", "omegad1*X0||U0", "omegad0*X1||U1", "omegad3*X1||U3", "omegad2*X1||U2", "omegad1*X2||U4", "omegad1*X3||U5", "omegad5*X3||U6", "omegad5*X4||U7", "omegad3*X5||U8", "omegad6*X5||U10", "omegad4*X5||U9", "omegad5*X6||U11"], "osc": {}, "qub": {"0": 3, "1": 3, "2": 3, "3": 3, "4": 3, "5": 3, "6": 3}, "vars": {"delta0": -2.135243733769955, "delta1": -2.13994911280816, "delta2": -2.129394678066021, "delta3": -2.1521818261888614, "delta4": -2.139992595470489, "delta5": -2.1396276723776833, "delta6": -2.1390204375856214, "jq0q1": 0.015232735472195266, "jq1q2": 0.020731271939206836, "jq1q3": 0.02043730274123934, "jq3q5": 0.015020857056561223, "jq4q5": 0.021264092348739026, "jq5q6": 0.02072534082080968, "omegad0": 1.373110659068891, "omegad1": 1.1780873207435267, "omegad2": 0.9139845233449416, "omegad3": 0.9656993163503216, "omegad4": 0.9298407995337947, "omegad5": 0.9577198276355297, "omegad6": 0.9685069625647934, "wq0": 33.052594464457044, "wq1": 32.48616319609612, "wq2": 33.140262224854595, "wq3": 31.58334908307263, "wq4": 32.52945408356278, "wq5": 33.255918637799375, "wq6": 32.22455801068434}}, "channels": {"acquire0": {"operates": {"qubits": [0]}, "purpose": "acquire", "type": "acquire"}, "acquire1": {"operates": {"qubits": [1]}, "purpose": "acquire", "type": "acquire"}, "acquire2": {"operates": {"qubits": [2]}, "purpose": "acquire", "type": "acquire"}, "acquire3": {"operates": {"qubits": [3]}, "purpose": "acquire", "type": "acquire"}, "acquire4": {"operates": {"qubits": [4]}, "purpose": "acquire", "type": "acquire"}, "acquire5": {"operates": {"qubits": [5]}, "purpose": "acquire", "type": "acquire"}, "acquire6": {"operates": {"qubits": [6]}, "purpose": "acquire", "type": "acquire"}, "d0": {"operates": {"qubits": [0]}, "purpose": "drive", "type": "drive"}, "d1": {"operates": {"qubits": [1]}, "purpose": "drive", "type": "drive"}, "d2": {"operates": {"qubits": [2]}, "purpose": "drive", "type": "drive"}, "d3": {"operates": {"qubits": [3]}, "purpose": "drive", "type": "drive"}, "d4": {"operates": {"qubits": [4]}, "purpose": "drive", "type": "drive"}, "d5": {"operates": {"qubits": [5]}, "purpose": "drive", "type": "drive"}, "d6": {"operates": {"qubits": [6]}, "purpose": "drive", "type": "drive"}, "m0": {"operates": {"qubits": [0]}, "purpose": "measure", "type": "measure"}, "m1": {"operates": {"qubits": [1]}, "purpose": "measure", "type": "measure"}, "m2": {"operates": {"qubits": [2]}, "purpose": "measure", "type": "measure"}, "m3": {"operates": {"qubits": [3]}, "purpose": "measure", "type": "measure"}, "m4": {"operates": {"qubits": [4]}, "purpose": "measure", "type": "measure"}, "m5": {"operates": {"qubits": [5]}, "purpose": "measure", "type": "measure"}, "m6": {"operates": {"qubits": [6]}, "purpose": "measure", "type": "measure"}, "u0": {"operates": {"qubits": [0, 1]}, "purpose": "cross-resonance", "type": "control"}, "u1": {"operates": {"qubits": [1, 0]}, "purpose": "cross-resonance", "type": "control"}, "u10": {"operates": {"qubits": [5, 6]}, "purpose": "cross-resonance", "type": "control"}, "u11": {"operates": {"qubits": [6, 5]}, "purpose": "cross-resonance", "type": "control"}, "u2": {"operates": {"qubits": [1, 2]}, "purpose": "cross-resonance", "type": "control"}, "u3": {"operates": {"qubits": [1, 3]}, "purpose": "cross-resonance", "type": "control"}, "u4": {"operates": {"qubits": [2, 1]}, "purpose": "cross-resonance", "type": "control"}, "u5": {"operates": {"qubits": [3, 1]}, "purpose": "cross-resonance", "type": "control"}, "u6": {"operates": {"qubits": [3, 5]}, "purpose": "cross-resonance", "type": "control"}, "u7": {"operates": {"qubits": [4, 5]}, "purpose": "cross-resonance", "type": "control"}, "u8": {"operates": {"qubits": [5, 3]}, "purpose": "cross-resonance", "type": "control"}, "u9": {"operates": {"qubits": [5, 4]}, "purpose": "cross-resonance", "type": "control"}}}