qiskit 1.4.1__cp39-abi3-macosx_11_0_arm64.whl → 2.0.0__cp39-abi3-macosx_11_0_arm64.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.
- qiskit/VERSION.txt +1 -1
- qiskit/__init__.py +3 -9
- qiskit/_accelerate.abi3.so +0 -0
- qiskit/circuit/__init__.py +35 -10
- qiskit/circuit/{add_control.py → _add_control.py} +32 -12
- qiskit/circuit/_classical_resource_map.py +5 -3
- qiskit/circuit/barrier.py +3 -7
- qiskit/circuit/classical/expr/__init__.py +31 -3
- qiskit/circuit/classical/expr/constructors.py +236 -28
- qiskit/circuit/classical/expr/expr.py +104 -3
- qiskit/circuit/classical/expr/visitors.py +75 -0
- qiskit/circuit/classical/types/__init__.py +12 -8
- qiskit/circuit/classical/types/ordering.py +14 -7
- qiskit/circuit/classical/types/types.py +36 -0
- qiskit/circuit/commutation_checker.py +34 -7
- qiskit/circuit/controlflow/__init__.py +32 -1
- qiskit/circuit/controlflow/_builder_utils.py +9 -5
- qiskit/circuit/controlflow/box.py +163 -0
- qiskit/circuit/controlflow/break_loop.py +1 -1
- qiskit/circuit/controlflow/builder.py +139 -39
- qiskit/circuit/controlflow/continue_loop.py +1 -3
- qiskit/circuit/controlflow/control_flow.py +10 -0
- qiskit/circuit/controlflow/for_loop.py +2 -1
- qiskit/circuit/controlflow/if_else.py +3 -16
- qiskit/circuit/controlflow/switch_case.py +2 -8
- qiskit/circuit/controlflow/while_loop.py +2 -7
- qiskit/circuit/controlledgate.py +2 -4
- qiskit/circuit/delay.py +40 -11
- qiskit/circuit/duration.py +0 -15
- qiskit/circuit/gate.py +2 -4
- qiskit/circuit/instruction.py +2 -141
- qiskit/circuit/instructionset.py +7 -54
- qiskit/circuit/library/__init__.py +469 -154
- qiskit/circuit/library/arithmetic/__init__.py +16 -10
- qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py +1 -1
- qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py +2 -2
- qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py +1 -1
- qiskit/circuit/library/arithmetic/exact_reciprocal.py +64 -21
- qiskit/circuit/library/arithmetic/integer_comparator.py +37 -80
- qiskit/circuit/library/arithmetic/linear_amplitude_function.py +169 -2
- qiskit/circuit/library/arithmetic/linear_pauli_rotations.py +59 -5
- qiskit/circuit/library/arithmetic/piecewise_chebyshev.py +154 -6
- qiskit/circuit/library/arithmetic/piecewise_linear_pauli_rotations.py +114 -4
- qiskit/circuit/library/arithmetic/piecewise_polynomial_pauli_rotations.py +191 -15
- qiskit/circuit/library/arithmetic/polynomial_pauli_rotations.py +93 -39
- qiskit/circuit/library/arithmetic/quadratic_form.py +168 -2
- qiskit/circuit/library/arithmetic/weighted_adder.py +73 -1
- qiskit/circuit/library/bit_flip_oracle.py +130 -0
- qiskit/circuit/library/blueprintcircuit.py +52 -16
- qiskit/circuit/library/data_preparation/initializer.py +1 -1
- qiskit/circuit/library/data_preparation/pauli_feature_map.py +4 -4
- qiskit/circuit/library/data_preparation/state_preparation.py +1 -1
- qiskit/circuit/library/generalized_gates/gms.py +1 -1
- qiskit/circuit/library/generalized_gates/isometry.py +1 -1
- qiskit/circuit/library/generalized_gates/pauli.py +1 -2
- qiskit/circuit/library/generalized_gates/uc.py +97 -7
- qiskit/circuit/library/generalized_gates/uc_pauli_rot.py +1 -1
- qiskit/circuit/library/generalized_gates/unitary.py +4 -2
- qiskit/circuit/library/graph_state.py +1 -0
- qiskit/circuit/library/hamiltonian_gate.py +1 -1
- qiskit/circuit/library/n_local/evolved_operator_ansatz.py +1 -1
- qiskit/circuit/library/n_local/n_local.py +1 -1
- qiskit/circuit/library/n_local/qaoa_ansatz.py +1 -1
- qiskit/circuit/library/overlap.py +2 -2
- qiskit/circuit/library/pauli_evolution.py +39 -24
- qiskit/circuit/library/phase_oracle.py +130 -51
- qiskit/circuit/library/standard_gates/__init__.py +0 -1
- qiskit/circuit/library/standard_gates/dcx.py +3 -4
- qiskit/circuit/library/standard_gates/ecr.py +3 -4
- qiskit/circuit/library/standard_gates/global_phase.py +5 -6
- qiskit/circuit/library/standard_gates/h.py +4 -9
- qiskit/circuit/library/standard_gates/i.py +2 -2
- qiskit/circuit/library/standard_gates/iswap.py +3 -4
- qiskit/circuit/library/standard_gates/p.py +15 -34
- qiskit/circuit/library/standard_gates/r.py +7 -10
- qiskit/circuit/library/standard_gates/rx.py +5 -15
- qiskit/circuit/library/standard_gates/rxx.py +3 -6
- qiskit/circuit/library/standard_gates/ry.py +5 -17
- qiskit/circuit/library/standard_gates/ryy.py +3 -6
- qiskit/circuit/library/standard_gates/rz.py +5 -17
- qiskit/circuit/library/standard_gates/rzx.py +3 -6
- qiskit/circuit/library/standard_gates/rzz.py +3 -6
- qiskit/circuit/library/standard_gates/s.py +6 -15
- qiskit/circuit/library/standard_gates/swap.py +4 -11
- qiskit/circuit/library/standard_gates/sx.py +7 -12
- qiskit/circuit/library/standard_gates/t.py +6 -7
- qiskit/circuit/library/standard_gates/u.py +2 -10
- qiskit/circuit/library/standard_gates/u1.py +5 -16
- qiskit/circuit/library/standard_gates/u2.py +2 -6
- qiskit/circuit/library/standard_gates/u3.py +3 -11
- qiskit/circuit/library/standard_gates/x.py +14 -62
- qiskit/circuit/library/standard_gates/xx_minus_yy.py +2 -5
- qiskit/circuit/library/standard_gates/xx_plus_yy.py +2 -5
- qiskit/circuit/library/standard_gates/y.py +4 -9
- qiskit/circuit/library/standard_gates/z.py +5 -15
- qiskit/circuit/measure.py +11 -2
- qiskit/circuit/parameterexpression.py +11 -0
- qiskit/circuit/quantumcircuit.py +890 -564
- qiskit/circuit/random/utils.py +12 -6
- qiskit/circuit/reset.py +5 -2
- qiskit/circuit/singleton.py +5 -11
- qiskit/circuit/store.py +0 -8
- qiskit/circuit/tools/pi_check.py +3 -0
- qiskit/compiler/__init__.py +1 -7
- qiskit/compiler/transpiler.py +38 -196
- qiskit/converters/circuit_to_dag.py +6 -4
- qiskit/converters/circuit_to_dagdependency.py +0 -2
- qiskit/converters/circuit_to_dagdependency_v2.py +0 -1
- qiskit/converters/circuit_to_gate.py +1 -1
- qiskit/converters/circuit_to_instruction.py +16 -29
- qiskit/converters/dag_to_circuit.py +7 -8
- qiskit/converters/dag_to_dagdependency.py +0 -1
- qiskit/converters/dag_to_dagdependency_v2.py +0 -1
- qiskit/converters/dagdependency_to_circuit.py +0 -6
- qiskit/converters/dagdependency_to_dag.py +0 -6
- qiskit/dagcircuit/collect_blocks.py +32 -20
- qiskit/dagcircuit/dagdependency.py +3 -37
- qiskit/dagcircuit/dagdependency_v2.py +5 -82
- qiskit/dagcircuit/dagnode.py +14 -2
- qiskit/passmanager/__init__.py +24 -6
- qiskit/passmanager/passmanager.py +26 -24
- qiskit/primitives/__init__.py +44 -35
- qiskit/primitives/backend_estimator_v2.py +102 -23
- qiskit/primitives/backend_sampler_v2.py +5 -20
- qiskit/primitives/base/__init__.py +4 -4
- qiskit/primitives/base/base_estimator.py +77 -82
- qiskit/primitives/base/base_primitive_job.py +2 -2
- qiskit/primitives/base/{base_primitive.py → base_primitive_v1.py} +1 -1
- qiskit/primitives/base/{base_result.py → base_result_v1.py} +1 -1
- qiskit/primitives/base/base_sampler.py +52 -60
- qiskit/primitives/base/{estimator_result.py → estimator_result_v1.py} +2 -2
- qiskit/primitives/base/{sampler_result.py → sampler_result_v1.py} +2 -2
- qiskit/primitives/base/{validation.py → validation_v1.py} +34 -15
- qiskit/primitives/containers/bindings_array.py +3 -1
- qiskit/primitives/containers/bit_array.py +23 -0
- qiskit/primitives/containers/data_bin.py +3 -1
- qiskit/primitives/containers/observables_array.py +19 -2
- qiskit/primitives/statevector_sampler.py +6 -8
- qiskit/primitives/utils.py +14 -189
- qiskit/providers/__init__.py +4 -130
- qiskit/providers/backend.py +11 -314
- qiskit/providers/basic_provider/__init__.py +3 -1
- qiskit/providers/basic_provider/basic_provider.py +29 -9
- qiskit/providers/basic_provider/basic_simulator.py +158 -298
- qiskit/providers/exceptions.py +0 -33
- qiskit/providers/fake_provider/__init__.py +0 -37
- qiskit/providers/fake_provider/generic_backend_v2.py +32 -693
- qiskit/qasm2/__init__.py +21 -6
- qiskit/qasm2/export.py +2 -10
- qiskit/qasm2/parse.py +11 -25
- qiskit/qasm3/__init__.py +5 -1
- qiskit/qasm3/ast.py +44 -0
- qiskit/qasm3/exporter.py +65 -27
- qiskit/qasm3/printer.py +35 -4
- qiskit/qpy/__init__.py +162 -19
- qiskit/qpy/binary_io/__init__.py +0 -1
- qiskit/qpy/binary_io/circuits.py +96 -116
- qiskit/qpy/binary_io/parse_sympy_repr.py +121 -0
- qiskit/qpy/binary_io/schedules.py +61 -388
- qiskit/qpy/binary_io/value.py +159 -33
- qiskit/qpy/common.py +10 -7
- qiskit/qpy/formats.py +41 -0
- qiskit/qpy/interface.py +29 -62
- qiskit/qpy/type_keys.py +58 -221
- qiskit/quantum_info/analysis/distance.py +3 -1
- qiskit/quantum_info/operators/dihedral/dihedral.py +3 -1
- qiskit/quantum_info/operators/operator.py +6 -2
- qiskit/quantum_info/operators/symplectic/clifford.py +3 -1
- qiskit/quantum_info/operators/symplectic/pauli.py +4 -2
- qiskit/quantum_info/operators/symplectic/pauli_list.py +17 -5
- qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py +40 -6
- qiskit/quantum_info/states/densitymatrix.py +16 -6
- qiskit/quantum_info/states/stabilizerstate.py +35 -4
- qiskit/quantum_info/states/statevector.py +16 -6
- qiskit/result/__init__.py +5 -17
- qiskit/result/models.py +18 -11
- qiskit/result/result.py +38 -134
- qiskit/result/sampled_expval.py +1 -2
- qiskit/result/utils.py +3 -4
- qiskit/synthesis/__init__.py +21 -1
- qiskit/synthesis/arithmetic/__init__.py +3 -1
- qiskit/synthesis/arithmetic/adders/cdkm_ripple_carry_adder.py +1 -1
- qiskit/synthesis/arithmetic/adders/draper_qft_adder.py +1 -1
- qiskit/synthesis/arithmetic/adders/vbe_ripple_carry_adder.py +2 -2
- qiskit/{providers/fake_provider/backends_v1/fake_20q → synthesis/arithmetic/comparators}/__init__.py +4 -6
- qiskit/synthesis/arithmetic/comparators/compare_2s.py +112 -0
- qiskit/synthesis/arithmetic/comparators/compare_greedy.py +66 -0
- qiskit/synthesis/arithmetic/multipliers/hrs_cumulative_multiplier.py +1 -1
- qiskit/synthesis/arithmetic/multipliers/rg_qft_multiplier.py +1 -1
- qiskit/synthesis/arithmetic/weighted_sum.py +155 -0
- qiskit/{result/mitigation → synthesis/boolean}/__init__.py +2 -2
- qiskit/synthesis/boolean/boolean_expression.py +231 -0
- qiskit/synthesis/boolean/boolean_expression_synth.py +124 -0
- qiskit/synthesis/boolean/boolean_expression_visitor.py +96 -0
- qiskit/synthesis/discrete_basis/generate_basis_approximations.py +2 -0
- qiskit/synthesis/evolution/lie_trotter.py +10 -7
- qiskit/synthesis/evolution/product_formula.py +44 -35
- qiskit/synthesis/evolution/qdrift.py +17 -24
- qiskit/synthesis/evolution/suzuki_trotter.py +20 -27
- qiskit/synthesis/linear/linear_depth_lnn.py +6 -221
- qiskit/synthesis/linear_phase/cx_cz_depth_lnn.py +4 -205
- qiskit/synthesis/multi_controlled/__init__.py +1 -0
- qiskit/synthesis/multi_controlled/mcx_synthesis.py +5 -2
- qiskit/synthesis/multi_controlled/multi_control_rotation_gates.py +206 -0
- qiskit/synthesis/one_qubit/one_qubit_decompose.py +1 -1
- qiskit/synthesis/two_qubit/__init__.py +1 -0
- qiskit/synthesis/two_qubit/two_qubit_decompose.py +28 -145
- qiskit/transpiler/__init__.py +32 -232
- qiskit/transpiler/basepasses.py +20 -51
- qiskit/transpiler/layout.py +1 -1
- qiskit/transpiler/passes/__init__.py +4 -40
- qiskit/transpiler/passes/basis/basis_translator.py +5 -4
- qiskit/transpiler/passes/basis/decompose.py +1 -15
- qiskit/transpiler/passes/basis/unroll_3q_or_more.py +1 -5
- qiskit/transpiler/passes/basis/unroll_custom_definitions.py +3 -2
- qiskit/transpiler/passes/layout/apply_layout.py +4 -0
- qiskit/transpiler/passes/layout/dense_layout.py +2 -39
- qiskit/transpiler/passes/layout/full_ancilla_allocation.py +3 -4
- qiskit/transpiler/passes/layout/sabre_layout.py +7 -3
- qiskit/transpiler/passes/layout/vf2_layout.py +2 -20
- qiskit/transpiler/passes/layout/vf2_post_layout.py +60 -125
- qiskit/transpiler/passes/layout/vf2_utils.py +2 -26
- qiskit/transpiler/passes/optimization/__init__.py +2 -3
- qiskit/transpiler/passes/optimization/collect_and_collapse.py +2 -0
- qiskit/transpiler/passes/optimization/collect_cliffords.py +5 -0
- qiskit/transpiler/passes/optimization/collect_linear_functions.py +5 -0
- qiskit/transpiler/passes/optimization/collect_multiqubit_blocks.py +16 -1
- qiskit/transpiler/passes/optimization/commutation_analysis.py +3 -3
- qiskit/transpiler/passes/optimization/consolidate_blocks.py +41 -19
- qiskit/transpiler/passes/optimization/contract_idle_wires_in_control_flow.py +104 -0
- qiskit/transpiler/passes/optimization/light_cone.py +135 -0
- qiskit/transpiler/passes/optimization/optimize_1q_commutation.py +0 -1
- qiskit/transpiler/passes/optimization/optimize_1q_decomposition.py +18 -22
- qiskit/transpiler/passes/optimization/optimize_annotated.py +3 -2
- qiskit/transpiler/passes/optimization/remove_identity_equiv.py +6 -4
- qiskit/transpiler/passes/optimization/reset_after_measure_simplification.py +5 -2
- qiskit/transpiler/passes/optimization/split_2q_unitaries.py +26 -3
- qiskit/transpiler/passes/optimization/template_matching/template_substitution.py +3 -2
- qiskit/transpiler/passes/routing/__init__.py +0 -1
- qiskit/transpiler/passes/routing/commuting_2q_gate_routing/commuting_2q_gate_router.py +3 -1
- qiskit/transpiler/passes/routing/sabre_swap.py +14 -6
- qiskit/transpiler/passes/routing/star_prerouting.py +1 -1
- qiskit/transpiler/passes/scheduling/__init__.py +1 -7
- qiskit/transpiler/passes/scheduling/alignments/__init__.py +2 -4
- qiskit/transpiler/passes/scheduling/alignments/check_durations.py +1 -9
- qiskit/transpiler/passes/scheduling/alignments/reschedule.py +17 -16
- qiskit/transpiler/passes/scheduling/padding/base_padding.py +32 -4
- qiskit/transpiler/passes/scheduling/padding/dynamical_decoupling.py +25 -63
- qiskit/transpiler/passes/scheduling/padding/pad_delay.py +12 -4
- qiskit/transpiler/passes/scheduling/scheduling/alap.py +5 -39
- qiskit/transpiler/passes/scheduling/scheduling/asap.py +4 -35
- qiskit/transpiler/passes/scheduling/scheduling/base_scheduler.py +10 -16
- qiskit/transpiler/passes/scheduling/time_unit_conversion.py +134 -62
- qiskit/transpiler/passes/synthesis/default_unitary_synth_plugin.py +653 -0
- qiskit/transpiler/passes/synthesis/high_level_synthesis.py +176 -601
- qiskit/transpiler/passes/synthesis/hls_plugins.py +294 -1
- qiskit/transpiler/passes/synthesis/plugin.py +4 -0
- qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py +16 -10
- qiskit/transpiler/passes/synthesis/unitary_synthesis.py +34 -697
- qiskit/transpiler/passes/utils/__init__.py +0 -1
- qiskit/transpiler/passes/utils/check_gate_direction.py +13 -5
- qiskit/transpiler/passes/utils/control_flow.py +2 -6
- qiskit/transpiler/passes/utils/gate_direction.py +7 -0
- qiskit/transpiler/passes/utils/remove_final_measurements.py +40 -33
- qiskit/transpiler/passmanager.py +13 -0
- qiskit/transpiler/passmanager_config.py +5 -81
- qiskit/transpiler/preset_passmanagers/builtin_plugins.py +225 -344
- qiskit/transpiler/preset_passmanagers/common.py +140 -167
- qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py +107 -322
- qiskit/transpiler/preset_passmanagers/level0.py +2 -11
- qiskit/transpiler/preset_passmanagers/level1.py +2 -14
- qiskit/transpiler/preset_passmanagers/level2.py +2 -12
- qiskit/transpiler/preset_passmanagers/level3.py +2 -11
- qiskit/transpiler/preset_passmanagers/plugin.py +5 -3
- qiskit/transpiler/target.py +78 -524
- qiskit/user_config.py +8 -4
- qiskit/utils/__init__.py +13 -12
- qiskit/utils/deprecation.py +4 -112
- qiskit/utils/optionals.py +11 -4
- qiskit/utils/parallel.py +214 -87
- qiskit/utils/units.py +4 -1
- qiskit/visualization/__init__.py +3 -7
- qiskit/visualization/array.py +4 -1
- qiskit/visualization/bloch.py +1 -1
- qiskit/visualization/circuit/_utils.py +19 -19
- qiskit/visualization/circuit/circuit_visualization.py +11 -4
- qiskit/visualization/circuit/matplotlib.py +13 -23
- qiskit/visualization/circuit/text.py +7 -3
- qiskit/visualization/counts_visualization.py +4 -0
- qiskit/visualization/dag_visualization.py +2 -1
- qiskit/visualization/gate_map.py +39 -154
- qiskit/visualization/library.py +4 -1
- qiskit/visualization/pass_manager_visualization.py +6 -2
- qiskit/visualization/state_visualization.py +19 -2
- qiskit/visualization/timeline/core.py +19 -13
- qiskit/visualization/timeline/interface.py +19 -18
- qiskit/visualization/timeline/plotters/matplotlib.py +4 -1
- {qiskit-1.4.1.dist-info → qiskit-2.0.0.dist-info}/METADATA +4 -3
- {qiskit-1.4.1.dist-info → qiskit-2.0.0.dist-info}/RECORD +303 -449
- {qiskit-1.4.1.dist-info → qiskit-2.0.0.dist-info}/WHEEL +2 -1
- {qiskit-1.4.1.dist-info → qiskit-2.0.0.dist-info}/entry_points.txt +8 -2
- qiskit/assembler/__init__.py +0 -42
- qiskit/assembler/assemble_circuits.py +0 -451
- qiskit/assembler/assemble_schedules.py +0 -367
- qiskit/assembler/disassemble.py +0 -310
- qiskit/assembler/run_config.py +0 -77
- qiskit/circuit/bit.py +0 -106
- qiskit/circuit/classicalfunction/__init__.py +0 -152
- qiskit/circuit/classicalfunction/boolean_expression.py +0 -138
- qiskit/circuit/classicalfunction/classical_element.py +0 -54
- qiskit/circuit/classicalfunction/classical_function_visitor.py +0 -155
- qiskit/circuit/classicalfunction/classicalfunction.py +0 -182
- qiskit/circuit/classicalfunction/exceptions.py +0 -41
- qiskit/circuit/classicalfunction/types.py +0 -18
- qiskit/circuit/classicalfunction/utils.py +0 -91
- qiskit/circuit/classicalregister.py +0 -57
- qiskit/circuit/library/standard_gates/multi_control_rotation_gates.py +0 -405
- qiskit/circuit/quantumregister.py +0 -75
- qiskit/circuit/register.py +0 -246
- qiskit/compiler/assembler.py +0 -689
- qiskit/compiler/scheduler.py +0 -109
- qiskit/compiler/sequencer.py +0 -71
- qiskit/primitives/backend_estimator.py +0 -486
- qiskit/primitives/backend_sampler.py +0 -222
- qiskit/primitives/estimator.py +0 -172
- qiskit/primitives/sampler.py +0 -162
- qiskit/providers/backend_compat.py +0 -507
- qiskit/providers/fake_provider/backends_v1/__init__.py +0 -22
- qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/__init__.py +0 -18
- qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/conf_washington.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/defs_washington.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/fake_127q_pulse_v1.py +0 -37
- qiskit/providers/fake_provider/backends_v1/fake_127q_pulse/props_washington.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_20q/conf_singapore.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_20q/fake_20q.py +0 -43
- qiskit/providers/fake_provider/backends_v1/fake_20q/props_singapore.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/__init__.py +0 -18
- qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/conf_hanoi.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/defs_hanoi.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/fake_27q_pulse_v1.py +0 -50
- qiskit/providers/fake_provider/backends_v1/fake_27q_pulse/props_hanoi.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_5q/__init__.py +0 -18
- qiskit/providers/fake_provider/backends_v1/fake_5q/conf_yorktown.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_5q/fake_5q_v1.py +0 -41
- qiskit/providers/fake_provider/backends_v1/fake_5q/props_yorktown.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/__init__.py +0 -18
- qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/conf_nairobi.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/defs_nairobi.json +0 -1
- qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/fake_7q_pulse_v1.py +0 -44
- qiskit/providers/fake_provider/backends_v1/fake_7q_pulse/props_nairobi.json +0 -1
- qiskit/providers/fake_provider/fake_1q.py +0 -91
- qiskit/providers/fake_provider/fake_backend.py +0 -165
- qiskit/providers/fake_provider/fake_openpulse_2q.py +0 -391
- qiskit/providers/fake_provider/fake_openpulse_3q.py +0 -340
- qiskit/providers/fake_provider/fake_pulse_backend.py +0 -49
- qiskit/providers/fake_provider/fake_qasm_backend.py +0 -77
- qiskit/providers/fake_provider/utils/backend_converter.py +0 -150
- qiskit/providers/fake_provider/utils/json_decoder.py +0 -109
- qiskit/providers/models/__init__.py +0 -89
- qiskit/providers/models/backendconfiguration.py +0 -1040
- qiskit/providers/models/backendproperties.py +0 -535
- qiskit/providers/models/backendstatus.py +0 -104
- qiskit/providers/models/jobstatus.py +0 -77
- qiskit/providers/models/pulsedefaults.py +0 -305
- qiskit/providers/provider.py +0 -95
- qiskit/pulse/__init__.py +0 -158
- qiskit/pulse/builder.py +0 -2262
- qiskit/pulse/calibration_entries.py +0 -381
- qiskit/pulse/channels.py +0 -227
- qiskit/pulse/configuration.py +0 -245
- qiskit/pulse/exceptions.py +0 -45
- qiskit/pulse/filters.py +0 -309
- qiskit/pulse/instruction_schedule_map.py +0 -424
- qiskit/pulse/instructions/__init__.py +0 -67
- qiskit/pulse/instructions/acquire.py +0 -150
- qiskit/pulse/instructions/delay.py +0 -71
- qiskit/pulse/instructions/directives.py +0 -154
- qiskit/pulse/instructions/frequency.py +0 -135
- qiskit/pulse/instructions/instruction.py +0 -270
- qiskit/pulse/instructions/phase.py +0 -152
- qiskit/pulse/instructions/play.py +0 -99
- qiskit/pulse/instructions/reference.py +0 -100
- qiskit/pulse/instructions/snapshot.py +0 -82
- qiskit/pulse/library/__init__.py +0 -97
- qiskit/pulse/library/continuous.py +0 -430
- qiskit/pulse/library/pulse.py +0 -148
- qiskit/pulse/library/samplers/__init__.py +0 -15
- qiskit/pulse/library/samplers/decorators.py +0 -295
- qiskit/pulse/library/samplers/strategies.py +0 -71
- qiskit/pulse/library/symbolic_pulses.py +0 -1989
- qiskit/pulse/library/waveform.py +0 -136
- qiskit/pulse/macros.py +0 -262
- qiskit/pulse/parameter_manager.py +0 -445
- qiskit/pulse/parser.py +0 -314
- qiskit/pulse/reference_manager.py +0 -58
- qiskit/pulse/schedule.py +0 -1854
- qiskit/pulse/transforms/__init__.py +0 -106
- qiskit/pulse/transforms/alignments.py +0 -406
- qiskit/pulse/transforms/base_transforms.py +0 -71
- qiskit/pulse/transforms/canonicalization.py +0 -498
- qiskit/pulse/transforms/dag.py +0 -122
- qiskit/pulse/utils.py +0 -149
- qiskit/qobj/__init__.py +0 -75
- qiskit/qobj/common.py +0 -81
- qiskit/qobj/converters/__init__.py +0 -18
- qiskit/qobj/converters/lo_config.py +0 -177
- qiskit/qobj/converters/pulse_instruction.py +0 -897
- qiskit/qobj/pulse_qobj.py +0 -709
- qiskit/qobj/qasm_qobj.py +0 -708
- qiskit/qobj/utils.py +0 -46
- qiskit/result/mitigation/base_readout_mitigator.py +0 -79
- qiskit/result/mitigation/correlated_readout_mitigator.py +0 -277
- qiskit/result/mitigation/local_readout_mitigator.py +0 -328
- qiskit/result/mitigation/utils.py +0 -217
- qiskit/scheduler/__init__.py +0 -40
- qiskit/scheduler/config.py +0 -37
- qiskit/scheduler/lowering.py +0 -187
- qiskit/scheduler/methods/__init__.py +0 -15
- qiskit/scheduler/methods/basic.py +0 -140
- qiskit/scheduler/schedule_circuit.py +0 -69
- qiskit/scheduler/sequence.py +0 -104
- qiskit/transpiler/passes/calibration/__init__.py +0 -17
- qiskit/transpiler/passes/calibration/base_builder.py +0 -79
- qiskit/transpiler/passes/calibration/builders.py +0 -20
- qiskit/transpiler/passes/calibration/exceptions.py +0 -22
- qiskit/transpiler/passes/calibration/pulse_gate.py +0 -100
- qiskit/transpiler/passes/calibration/rx_builder.py +0 -164
- qiskit/transpiler/passes/calibration/rzx_builder.py +0 -411
- qiskit/transpiler/passes/calibration/rzx_templates.py +0 -58
- qiskit/transpiler/passes/optimization/cx_cancellation.py +0 -65
- qiskit/transpiler/passes/optimization/echo_rzx_weyl_decomposition.py +0 -162
- qiskit/transpiler/passes/optimization/normalize_rx_angle.py +0 -157
- qiskit/transpiler/passes/routing/stochastic_swap.py +0 -532
- qiskit/transpiler/passes/scheduling/alap.py +0 -153
- qiskit/transpiler/passes/scheduling/alignments/align_measures.py +0 -255
- qiskit/transpiler/passes/scheduling/alignments/pulse_gate_validation.py +0 -107
- qiskit/transpiler/passes/scheduling/asap.py +0 -175
- qiskit/transpiler/passes/scheduling/base_scheduler.py +0 -310
- qiskit/transpiler/passes/scheduling/dynamical_decoupling.py +0 -313
- qiskit/transpiler/passes/utils/convert_conditions_to_if_ops.py +0 -93
- qiskit/utils/deprecate_pulse.py +0 -119
- qiskit/utils/multiprocessing.py +0 -56
- qiskit/visualization/pulse_v2/__init__.py +0 -21
- qiskit/visualization/pulse_v2/core.py +0 -901
- qiskit/visualization/pulse_v2/device_info.py +0 -173
- qiskit/visualization/pulse_v2/drawings.py +0 -253
- qiskit/visualization/pulse_v2/events.py +0 -254
- qiskit/visualization/pulse_v2/generators/__init__.py +0 -40
- qiskit/visualization/pulse_v2/generators/barrier.py +0 -76
- qiskit/visualization/pulse_v2/generators/chart.py +0 -208
- qiskit/visualization/pulse_v2/generators/frame.py +0 -436
- qiskit/visualization/pulse_v2/generators/snapshot.py +0 -133
- qiskit/visualization/pulse_v2/generators/waveform.py +0 -645
- qiskit/visualization/pulse_v2/interface.py +0 -459
- qiskit/visualization/pulse_v2/layouts.py +0 -387
- qiskit/visualization/pulse_v2/plotters/__init__.py +0 -17
- qiskit/visualization/pulse_v2/plotters/base_plotter.py +0 -53
- qiskit/visualization/pulse_v2/plotters/matplotlib.py +0 -201
- qiskit/visualization/pulse_v2/stylesheet.py +0 -312
- qiskit/visualization/pulse_v2/types.py +0 -242
- {qiskit-1.4.1.dist-info → qiskit-2.0.0.dist-info/licenses}/LICENSE.txt +0 -0
- {qiskit-1.4.1.dist-info → qiskit-2.0.0.dist-info}/top_level.txt +0 -0
@@ -1 +0,0 @@
|
|
1
|
-
{"backend_name": "ibmq_singapore", "backend_version": "1.1.13", "n_qubits": 20, "basis_gates": ["id", "u1", "u2", "u3", "cx"], "gates": [{"name": "id", "parameters": [], "qasm_def": "gate id q { U(0,0,0) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19]]}, {"name": "u1", "parameters": ["lambda"], "qasm_def": "gate u1(lambda) q { U(0,0,lambda) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19]]}, {"name": "u2", "parameters": ["phi", "lambda"], "qasm_def": "gate u2(phi,lambda) q { U(pi/2,phi,lambda) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19]]}, {"name": "u3", "parameters": ["theta", "phi", "lambda"], "qasm_def": "gate u3(theta,phi,lambda) q { U(theta,phi,lambda) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19]]}, {"name": "cx", "parameters": [], "qasm_def": "gate cx q1,q2 { CX q1,q2; }", "coupling_map": [[0, 1], [1, 0], [1, 2], [1, 6], [2, 1], [2, 3], [3, 2], [3, 4], [3, 8], [4, 3], [5, 6], [5, 10], [6, 1], [6, 5], [6, 7], [7, 6], [7, 8], [7, 12], [8, 3], [8, 7], [8, 9], [9, 8], [9, 14], [10, 5], [10, 11], [11, 10], [11, 12], [11, 16], [12, 7], [12, 11], [12, 13], [13, 12], [13, 14], [13, 18], [14, 9], [14, 13], [15, 16], [16, 11], [16, 15], [16, 17], [17, 16], [17, 18], [18, 13], [18, 17], [18, 19], [19, 18]]}], "local": false, "simulator": false, "conditional": false, "open_pulse": true, "memory": true, "max_shots": 8192, "coupling_map": [[0, 1], [1, 0], [1, 2], [1, 6], [2, 1], [2, 3], [3, 2], [3, 4], [3, 8], [4, 3], [5, 6], [5, 10], [6, 1], [6, 5], [6, 7], [7, 6], [7, 8], [7, 12], [8, 3], [8, 7], [8, 9], [9, 8], [9, 14], [10, 5], [10, 11], [11, 10], [11, 12], [11, 16], [12, 7], [12, 11], [12, 13], [13, 12], [13, 14], [13, 18], [14, 9], [14, 13], [15, 16], [16, 11], [16, 15], [16, 17], [17, 16], [17, 18], [18, 13], [18, 17], [18, 19], [19, 18]], "max_experiments": 900, "sample_name": "HexV2", "n_registers": 1, "credits_required": true, "online_date": "2019-09-13T04:00:00+00:00", "description": "20 qubit device Singapore", "allow_q_object": true, "parametric_pulses": [], "quantum_volume": 16, "qubit_channel_mapping": [["u1", "d0", "u0", "m0"], ["u4", "u2", "m1", "u12", "u1", "d1", "u0", "u3"], ["u4", "u2", "u5", "m2", "u6", "d2"], ["d3", "u9", "u5", "m3", "u7", "u8", "u6", "u18"], ["u7", "u9", "d4", "m4"], ["m5", "u11", "u23", "d5", "u10", "u13"], ["m6", "u15", "u12", "u10", "u3", "d6", "u13", "u14"], ["m7", "u17", "u15", "u16", "u19", "u14", "d7", "u28"], ["u21", "m8", "u16", "u19", "u20", "u8", "d8", "u18"], ["u21", "u22", "u34", "u20", "d9", "m9"], ["u25", "m10", "d10", "u11", "u23", "u24"], ["u25", "u37", "m11", "u27", "u29", "u24", "d11", "u26"], ["d12", "u17", "u29", "u30", "u31", "m12", "u26", "u28"], ["m13", "u33", "u42", "d13", "u30", "u31", "u32", "u35"], ["d14", "u22", "u34", "m14", "u32", "u35"], ["m15", "d15", "u38", "u36"], ["u37", "u40", "m16", "u27", "u39", "u38", "d16", "u36"], ["u40", "d17", "u43", "m17", "u39", "u41"], ["u44", "d18", "u33", "u42", "u45", "u43", "m18", "u41"], ["m19", "u45", "d19", "u44"]], "uchannels_enabled": true, "url": "None", "allow_object_storage": true, "n_uchannels": 46, "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": 6, "scale": [1.0, 0.0]}], [{"q": 1, "scale": [1.0, 0.0]}], [{"q": 3, "scale": [1.0, 0.0]}], [{"q": 2, "scale": [1.0, 0.0]}], [{"q": 4, "scale": [1.0, 0.0]}], [{"q": 8, "scale": [1.0, 0.0]}], [{"q": 3, "scale": [1.0, 0.0]}], [{"q": 6, "scale": [1.0, 0.0]}], [{"q": 10, "scale": [1.0, 0.0]}], [{"q": 1, "scale": [1.0, 0.0]}], [{"q": 5, "scale": [1.0, 0.0]}], [{"q": 7, "scale": [1.0, 0.0]}], [{"q": 6, "scale": [1.0, 0.0]}], [{"q": 8, "scale": [1.0, 0.0]}], [{"q": 12, "scale": [1.0, 0.0]}], [{"q": 3, "scale": [1.0, 0.0]}], [{"q": 7, "scale": [1.0, 0.0]}], [{"q": 9, "scale": [1.0, 0.0]}], [{"q": 8, "scale": [1.0, 0.0]}], [{"q": 14, "scale": [1.0, 0.0]}], [{"q": 5, "scale": [1.0, 0.0]}], [{"q": 11, "scale": [1.0, 0.0]}], [{"q": 10, "scale": [1.0, 0.0]}], [{"q": 12, "scale": [1.0, 0.0]}], [{"q": 16, "scale": [1.0, 0.0]}], [{"q": 7, "scale": [1.0, 0.0]}], [{"q": 11, "scale": [1.0, 0.0]}], [{"q": 13, "scale": [1.0, 0.0]}], [{"q": 12, "scale": [1.0, 0.0]}], [{"q": 14, "scale": [1.0, 0.0]}], [{"q": 18, "scale": [1.0, 0.0]}], [{"q": 9, "scale": [1.0, 0.0]}], [{"q": 13, "scale": [1.0, 0.0]}], [{"q": 16, "scale": [1.0, 0.0]}], [{"q": 11, "scale": [1.0, 0.0]}], [{"q": 15, "scale": [1.0, 0.0]}], [{"q": 17, "scale": [1.0, 0.0]}], [{"q": 16, "scale": [1.0, 0.0]}], [{"q": 18, "scale": [1.0, 0.0]}], [{"q": 13, "scale": [1.0, 0.0]}], [{"q": 17, "scale": [1.0, 0.0]}], [{"q": 19, "scale": [1.0, 0.0]}], [{"q": 18, "scale": [1.0, 0.0]}]], "meas_levels": [1, 2], "qubit_lo_range": [[4.176321350062806, 5.176321350062806], [4.282790529176784, 5.282790529176784], [4.185502719873838, 5.185502719873838], [4.21767569718313, 5.21767569718313], [4.064147093422013, 5.064147093422013], [3.808846173810418, 4.808846173810418], [4.162686808975333, 5.162686808975334], [4.331134269144208, 5.331134269144208], [4.123097496697334, 5.123097496697334], [4.197980034429182, 5.197980034429182], [3.9243193490113266, 4.924319349011326], [4.021508270412113, 5.021508270412114], [4.10416601470807, 5.1041660147080705], [4.125160645713068, 5.125160645713068], [4.257535595961577, 5.257535595961577], [3.9883207852468425, 4.9883207852468425], [4.238359118088121, 5.238359118088121], [4.383190383079356, 5.383190383079356], [4.028968332514318, 5.028968332514319], [4.19779891351244, 5.19779891351244]], "meas_lo_range": [[6.785777689000001, 7.785777689000001], [6.555576728, 7.555576728], [6.720664312, 7.720664312], [6.618610929000001, 7.618610929000001], [6.693309034, 7.693309034], [6.500534077, 7.500534077], [6.637857804, 7.637857804], [6.521968581, 7.521968581], [6.7839043850000005, 7.7839043850000005], [6.591852045, 7.591852045], [6.795858600000001, 7.795858600000001], [6.564261930000001, 7.564261930000001], [6.7226899300000005, 7.7226899300000005], [6.648983726, 7.648983726000001], [6.681472156000001, 7.681472156000001], [6.513838988000001, 7.513838988000001], [6.667396121, 7.667396121], [6.5362908310000005, 7.5362908310000005], [6.807096121000001, 7.807096121000001], [6.60740465, 7.60740465]], "meas_kernels": ["boxcar"], "discriminators": ["linear_discriminator", "quadratic_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}^{19}\\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_{11,16}(\\sigma_{11}^{+}\\sigma_{16}^{-}+\\sigma_{11}^{-}\\sigma_{16}^{+}) + J_{10,11}(\\sigma_{10}^{+}\\sigma_{11}^{-}+\\sigma_{10}^{-}\\sigma_{11}^{+}) + J_{7,12}(\\sigma_{7}^{+}\\sigma_{12}^{-}+\\sigma_{7}^{-}\\sigma_{12}^{+}) + J_{5,6}(\\sigma_{5}^{+}\\sigma_{6}^{-}+\\sigma_{5}^{-}\\sigma_{6}^{+}) \\\\ & + J_{8,9}(\\sigma_{8}^{+}\\sigma_{9}^{-}+\\sigma_{8}^{-}\\sigma_{9}^{+}) + J_{15,16}(\\sigma_{15}^{+}\\sigma_{16}^{-}+\\sigma_{15}^{-}\\sigma_{16}^{+}) + J_{1,6}(\\sigma_{1}^{+}\\sigma_{6}^{-}+\\sigma_{1}^{-}\\sigma_{6}^{+}) + J_{18,19}(\\sigma_{18}^{+}\\sigma_{19}^{-}+\\sigma_{18}^{-}\\sigma_{19}^{+}) \\\\ & + J_{1,2}(\\sigma_{1}^{+}\\sigma_{2}^{-}+\\sigma_{1}^{-}\\sigma_{2}^{+}) + J_{16,17}(\\sigma_{16}^{+}\\sigma_{17}^{-}+\\sigma_{16}^{-}\\sigma_{17}^{+}) + J_{6,7}(\\sigma_{6}^{+}\\sigma_{7}^{-}+\\sigma_{6}^{-}\\sigma_{7}^{+}) + J_{12,13}(\\sigma_{12}^{+}\\sigma_{13}^{-}+\\sigma_{12}^{-}\\sigma_{13}^{+}) \\\\ & + J_{3,4}(\\sigma_{3}^{+}\\sigma_{4}^{-}+\\sigma_{3}^{-}\\sigma_{4}^{+}) + J_{9,14}(\\sigma_{9}^{+}\\sigma_{14}^{-}+\\sigma_{9}^{-}\\sigma_{14}^{+}) + J_{2,3}(\\sigma_{2}^{+}\\sigma_{3}^{-}+\\sigma_{2}^{-}\\sigma_{3}^{+}) + J_{11,12}(\\sigma_{11}^{+}\\sigma_{12}^{-}+\\sigma_{11}^{-}\\sigma_{12}^{+}) \\\\ & + J_{17,18}(\\sigma_{17}^{+}\\sigma_{18}^{-}+\\sigma_{17}^{-}\\sigma_{18}^{+}) + J_{0,1}(\\sigma_{0}^{+}\\sigma_{1}^{-}+\\sigma_{0}^{-}\\sigma_{1}^{+}) + J_{5,10}(\\sigma_{5}^{+}\\sigma_{10}^{-}+\\sigma_{5}^{-}\\sigma_{10}^{+}) + J_{13,14}(\\sigma_{13}^{+}\\sigma_{14}^{-}+\\sigma_{13}^{-}\\sigma_{14}^{+}) \\\\ & + J_{3,8}(\\sigma_{3}^{+}\\sigma_{8}^{-}+\\sigma_{3}^{-}\\sigma_{8}^{+}) + J_{13,18}(\\sigma_{13}^{+}\\sigma_{18}^{-}+\\sigma_{13}^{-}\\sigma_{18}^{+}) + J_{7,8}(\\sigma_{7}^{+}\\sigma_{8}^{-}+\\sigma_{7}^{-}\\sigma_{8}^{+}) \\\\ & + \\Omega_{d,0}(U_{0}^{(0,1)}(t))\\sigma_{0}^{X} + \\Omega_{d,1}(U_{1}^{(1,0)}(t)+U_{3}^{(1,6)}(t)+U_{2}^{(1,2)}(t))\\sigma_{1}^{X} \\\\ & + \\Omega_{d,2}(U_{4}^{(2,1)}(t)+U_{5}^{(2,3)}(t))\\sigma_{2}^{X} + \\Omega_{d,3}(U_{7}^{(3,4)}(t)+U_{6}^{(3,2)}(t)+U_{8}^{(3,8)}(t))\\sigma_{3}^{X} \\\\ & + \\Omega_{d,4}(U_{9}^{(4,3)}(t))\\sigma_{4}^{X} + \\Omega_{d,5}(U_{11}^{(5,10)}(t)+U_{10}^{(5,6)}(t))\\sigma_{5}^{X} \\\\ & + \\Omega_{d,6}(U_{14}^{(6,7)}(t)+U_{12}^{(6,1)}(t)+U_{13}^{(6,5)}(t))\\sigma_{6}^{X} + \\Omega_{d,7}(U_{15}^{(7,6)}(t)+U_{16}^{(7,8)}(t)+U_{17}^{(7,12)}(t))\\sigma_{7}^{X} \\\\ & + \\Omega_{d,8}(U_{19}^{(8,7)}(t)+U_{18}^{(8,3)}(t)+U_{20}^{(8,9)}(t))\\sigma_{8}^{X} + \\Omega_{d,9}(U_{21}^{(9,8)}(t)+U_{22}^{(9,14)}(t))\\sigma_{9}^{X} \\\\ & + \\Omega_{d,10}(U_{24}^{(10,11)}(t)+U_{23}^{(10,5)}(t))\\sigma_{10}^{X} + \\Omega_{d,11}(U_{25}^{(11,10)}(t)+U_{26}^{(11,12)}(t)+U_{27}^{(11,16)}(t))\\sigma_{11}^{X} \\\\ & + \\Omega_{d,12}(U_{28}^{(12,7)}(t)+U_{30}^{(12,13)}(t)+U_{29}^{(12,11)}(t))\\sigma_{12}^{X} + \\Omega_{d,13}(U_{31}^{(13,12)}(t)+U_{32}^{(13,14)}(t)+U_{33}^{(13,18)}(t))\\sigma_{13}^{X} \\\\ & + \\Omega_{d,14}(U_{34}^{(14,9)}(t)+U_{35}^{(14,13)}(t))\\sigma_{14}^{X} + \\Omega_{d,15}(U_{36}^{(15,16)}(t))\\sigma_{15}^{X} \\\\ & + \\Omega_{d,16}(U_{38}^{(16,15)}(t)+U_{39}^{(16,17)}(t)+U_{37}^{(16,11)}(t))\\sigma_{16}^{X} + \\Omega_{d,17}(U_{41}^{(17,18)}(t)+U_{40}^{(17,16)}(t))\\sigma_{17}^{X} \\\\ & + \\Omega_{d,18}(U_{42}^{(18,13)}(t)+U_{43}^{(18,17)}(t)+U_{44}^{(18,19)}(t))\\sigma_{18}^{X} + \\Omega_{d,19}(U_{45}^{(19,18)}(t))\\sigma_{19}^{X} \\\\ \\end{align}", "h_str": ["_SUM[i,0,19,wq{i}/2*(I{i}-Z{i})]", "_SUM[i,0,19,delta{i}/2*O{i}*O{i}]", "_SUM[i,0,19,-delta{i}/2*O{i}]", "_SUM[i,0,19,omegad{i}*X{i}||D{i}]", "jq11q16*Sp11*Sm16", "jq11q16*Sm11*Sp16", "jq10q11*Sp10*Sm11", "jq10q11*Sm10*Sp11", "jq7q12*Sp7*Sm12", "jq7q12*Sm7*Sp12", "jq5q6*Sp5*Sm6", "jq5q6*Sm5*Sp6", "jq8q9*Sp8*Sm9", "jq8q9*Sm8*Sp9", "jq15q16*Sp15*Sm16", "jq15q16*Sm15*Sp16", "jq1q6*Sp1*Sm6", "jq1q6*Sm1*Sp6", "jq18q19*Sp18*Sm19", "jq18q19*Sm18*Sp19", "jq1q2*Sp1*Sm2", "jq1q2*Sm1*Sp2", "jq16q17*Sp16*Sm17", "jq16q17*Sm16*Sp17", "jq6q7*Sp6*Sm7", "jq6q7*Sm6*Sp7", "jq12q13*Sp12*Sm13", "jq12q13*Sm12*Sp13", "jq3q4*Sp3*Sm4", "jq3q4*Sm3*Sp4", "jq9q14*Sp9*Sm14", "jq9q14*Sm9*Sp14", "jq2q3*Sp2*Sm3", "jq2q3*Sm2*Sp3", "jq11q12*Sp11*Sm12", "jq11q12*Sm11*Sp12", "jq17q18*Sp17*Sm18", "jq17q18*Sm17*Sp18", "jq0q1*Sp0*Sm1", "jq0q1*Sm0*Sp1", "jq5q10*Sp5*Sm10", "jq5q10*Sm5*Sp10", "jq13q14*Sp13*Sm14", "jq13q14*Sm13*Sp14", "jq3q8*Sp3*Sm8", "jq3q8*Sm3*Sp8", "jq13q18*Sp13*Sm18", "jq13q18*Sm13*Sp18", "jq7q8*Sp7*Sm8", "jq7q8*Sm7*Sp8", "omegad1*X0||U0", "omegad0*X1||U1", "omegad6*X1||U3", "omegad2*X1||U2", "omegad1*X2||U4", "omegad3*X2||U5", "omegad4*X3||U7", "omegad2*X3||U6", "omegad8*X3||U8", "omegad3*X4||U9", "omegad10*X5||U11", "omegad6*X5||U10", "omegad7*X6||U14", "omegad1*X6||U12", "omegad5*X6||U13", "omegad6*X7||U15", "omegad8*X7||U16", "omegad12*X7||U17", "omegad7*X8||U19", "omegad3*X8||U18", "omegad9*X8||U20", "omegad8*X9||U21", "omegad14*X9||U22", "omegad11*X10||U24", "omegad5*X10||U23", "omegad10*X11||U25", "omegad12*X11||U26", "omegad16*X11||U27", "omegad7*X12||U28", "omegad13*X12||U30", "omegad11*X12||U29", "omegad12*X13||U31", "omegad14*X13||U32", "omegad18*X13||U33", "omegad9*X14||U34", "omegad13*X14||U35", "omegad16*X15||U36", "omegad15*X16||U38", "omegad17*X16||U39", "omegad11*X16||U37", "omegad18*X17||U41", "omegad16*X17||U40", "omegad13*X18||U42", "omegad17*X18||U43", "omegad19*X18||U44", "omegad18*X19||U45"], "osc": {}, "qub": {"0": 3, "1": 3, "2": 3, "3": 3, "4": 3, "5": 3, "6": 3, "7": 3, "8": 3, "9": 3, "10": 3, "11": 3, "12": 3, "13": 3, "14": 3, "15": 3, "16": 3, "17": 3, "18": 3, "19": 3}, "vars": {"delta0": 0, "delta1": 0, "delta10": 0, "delta11": 0, "delta12": 0, "delta13": 0, "delta14": 0, "delta15": 0, "delta16": 0, "delta17": 0, "delta18": 0, "delta19": 0, "delta2": 0, "delta3": 0, "delta4": 0, "delta5": 0, "delta6": 0, "delta7": 0, "delta8": 0, "delta9": 0, "jq0q1": 0.01433892239814213, "jq10q11": 0.010525409616727677, "jq11q12": 0.015112292332169557, "jq11q16": 0.007383931535627764, "jq12q13": 0.00954723740103017, "jq13q14": 0.011743925884500983, "jq13q18": 0.008449187811309803, "jq15q16": 0.01268272946810536, "jq16q17": 0.014027838431486793, "jq17q18": 0.009991545329492273, "jq18q19": 0.005039913180091045, "jq1q2": 0.01783155649165556, "jq1q6": 0.007455172260903687, "jq2q3": 0.010483442612952266, "jq3q4": 0.010965763703036821, "jq3q8": 0.00778913964520363, "jq5q10": 0, "jq5q6": 0.014034790830320562, "jq6q7": 0.013132052583182657, "jq7q12": 0.00920812439711768, "jq7q8": 0.011895087847184233, "jq8q9": 0.013211093140145862, "jq9q14": 0.007991177432644736, "omegad0": 0.47949242926005, "omegad1": 0.46118734073033163, "omegad10": 0.3943799172798586, "omegad11": 0.43262586054427343, "omegad12": 0.40091693264351463, "omegad13": 0.37874281938149945, "omegad14": 0.4306310161386568, "omegad15": 0.36146990854842387, "omegad16": 0.6212952725431784, "omegad17": 0.4861452519032759, "omegad18": 0.28078096538595176, "omegad19": 2.1407654262304083, "omegad2": 0.5104562308366655, "omegad3": 0.36262688270569465, "omegad4": 0.5194338453827934, "omegad5": 0.34447607292812266, "omegad6": 0.4290526887210772, "omegad7": 0.48299294736914783, "omegad8": 0.40155938463476015, "omegad9": 0.6251285757697845, "wq0": 29.382193598364832, "wq1": 30.051159180241246, "wq10": 27.798818327978314, "wq11": 28.409474330944377, "wq12": 28.928828255429337, "wq13": 29.060741412489598, "wq14": 29.892477754929654, "wq15": 28.200951211771702, "wq16": 29.7719883909117, "wq17": 30.68199006712486, "wq18": 28.456347283535596, "wq19": 29.517141109465587, "wq2": 29.439881846261294, "wq3": 29.642030624579252, "wq4": 28.67738195719561, "wq5": 27.073278970182592, "wq6": 29.296525250133886, "wq7": 30.35491185689868, "wq8": 29.047778264907418, "wq9": 29.518279125748485}}, "rep_times": [1000.0], "dt": 0.2222222222222222, "dtm": 0.2222222222222222, "dynamic_reprate_enabled": false, "meas_map": [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]], "acquisition_latency": [], "conditional_latency": []}
|
@@ -1,43 +0,0 @@
|
|
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 20 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 Fake20QV1(fake_qasm_backend.FakeQasmBackend):
|
22
|
-
"""A fake backend with the following characteristics:
|
23
|
-
|
24
|
-
* num_qubits: 20
|
25
|
-
* coupling_map:
|
26
|
-
|
27
|
-
.. code-block:: text
|
28
|
-
|
29
|
-
00 ↔ 01 ↔ 02 ↔ 03 ↔ 04
|
30
|
-
↕ ↕
|
31
|
-
05 ↔ 06 ↔ 07 ↔ 08 ↔ 09
|
32
|
-
↕ ↕ ↕
|
33
|
-
10 ↔ 11 ↔ 12 ↔ 13 ↔ 14
|
34
|
-
↕ ↕
|
35
|
-
15 ↔ 16 ↔ 17 ↔ 18 ↔ 19
|
36
|
-
|
37
|
-
* basis_gates: ``["id", "u1", "u2", "u3", "cx"]``
|
38
|
-
"""
|
39
|
-
|
40
|
-
dirname = os.path.dirname(__file__)
|
41
|
-
conf_filename = "conf_singapore.json"
|
42
|
-
props_filename = "props_singapore.json"
|
43
|
-
backend_name = "fake_20q_v1"
|
@@ -1 +0,0 @@
|
|
1
|
-
{"backend_name": "ibmq_singapore", "backend_version": "1.1.13", "last_update_date": "2020-08-07T15:58:39-04:00", "qubits": [[{"date": "2020-08-07T00:13:59-04:00", "name": "T1", "unit": "\u00b5s", "value": 80.76647215797854}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 103.1850742657474}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.676321350062806}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.03700000000000003}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.042}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.03200000000000003}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 85.21632715068766}, {"date": "2020-08-07T13:00:24-04:00", "name": "T2", "unit": "\u00b5s", "value": 120.83538782206891}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.782790529176784}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.026499999999999968}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.03600000000000003}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.017}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 96.0030940276451}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 95.42642548068407}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.685502719873838}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.062000000000000055}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.08299999999999996}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.041}], [{"date": "2020-08-06T00:33:51-04:00", "name": "T1", "unit": "\u00b5s", "value": 102.53352497912229}, {"date": "2020-08-07T13:00:24-04:00", "name": "T2", "unit": "\u00b5s", "value": 72.51786841735041}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.71767569718313}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.04849999999999999}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.07099999999999995}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.026}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 77.80506565072605}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 67.41922735559389}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.564147093422013}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.027000000000000024}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.03700000000000003}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.017}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 126.05315632770711}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 100.44060100062184}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.308846173810418}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.046499999999999986}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.04600000000000004}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.047}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 93.79875233000948}, {"date": "2020-08-07T13:01:28-04:00", "name": "T2", "unit": "\u00b5s", "value": 81.8652755125058}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.662686808975334}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.03950000000000009}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.051000000000000045}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.028}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 77.38936119677233}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 88.64077054583497}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.831134269144208}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.033500000000000085}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.041000000000000036}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.026}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 100.97632877289676}, {"date": "2020-08-07T13:01:28-04:00", "name": "T2", "unit": "\u00b5s", "value": 150.56104950875826}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.623097496697334}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.04200000000000004}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.061000000000000054}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.023}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 71.80174924722972}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 103.99005502756981}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.697980034429182}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.04150000000000009}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.05400000000000005}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.029}], [{"date": "2020-08-05T06:22:12-04:00", "name": "T1", "unit": "\u00b5s", "value": 95.62539747119419}, {"date": "2020-08-07T00:16:18-04:00", "name": "T2", "unit": "\u00b5s", "value": 111.8983488576345}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.424319349011326}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.031000000000000028}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.050000000000000044}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.012}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 77.61172441253042}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 139.2376089418993}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.521508270412114}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.08800000000000008}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.153}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.02300000000000002}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 76.01914769020868}, {"date": "2020-08-07T13:00:24-04:00", "name": "T2", "unit": "\u00b5s", "value": 116.45663812256316}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.6041660147080705}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.03500000000000003}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.041000000000000036}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.029}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 84.3252920201103}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 124.27283162468451}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.625160645713068}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.05349999999999999}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.07999999999999996}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.027}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 52.27506783642015}, {"date": "2020-08-07T13:00:24-04:00", "name": "T2", "unit": "\u00b5s", "value": 84.99368071739273}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.757535595961577}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.03500000000000003}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.04400000000000004}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.026}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 79.83577685903552}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 140.56928254056706}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.4883207852468425}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.0675}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.09599999999999997}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.039}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 103.58869793956289}, {"date": "2020-08-07T13:00:24-04:00", "name": "T2", "unit": "\u00b5s", "value": 100.13589168230422}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.738359118088121}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.08250000000000002}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.03600000000000003}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.129}], [{"date": "2020-08-07T12:58:10-04:00", "name": "T1", "unit": "\u00b5s", "value": 88.44932561291988}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 135.41411802104795}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.883190383079356}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.017000000000000015}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.029000000000000026}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.005}], [{"date": "2020-08-05T06:22:12-04:00", "name": "T1", "unit": "\u00b5s", "value": 104.95615443376836}, {"date": "2020-08-07T13:00:24-04:00", "name": "T2", "unit": "\u00b5s", "value": 78.98824661664469}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.528968332514319}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.08699999999999997}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.11}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.06399999999999995}], [{"date": "2020-07-23T05:18:28-04:00", "name": "T1", "unit": "\u00b5s", "value": 97.62533424057203}, {"date": "2020-08-07T12:59:20-04:00", "name": "T2", "unit": "\u00b5s", "value": 107.48189650268917}, {"date": "2020-08-07T15:58:39-04:00", "name": "frequency", "unit": "GHz", "value": 4.69779891351244}, {"date": "2020-08-07T15:58:39-04:00", "name": "readout_error", "unit": "", "value": 0.027000000000000024}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.04500000000000004}, {"date": "2020-08-07T15:58:39-04:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.009}]], "gates": [{"qubits": [0], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0005160852020009473}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_0"}, {"qubits": [0], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_0"}, {"qubits": [0], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0005160852020009473}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_0"}, {"qubits": [0], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0010319040600662577}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_0"}, {"qubits": [1], "gate": "id", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0006025973411985286}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_1"}, {"qubits": [1], "gate": "u1", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_1"}, {"qubits": [1], "gate": "u2", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0006025973411985286}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_1"}, {"qubits": [1], "gate": "u3", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0012048315588413239}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_1"}, {"qubits": [2], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0008835373184889258}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_2"}, {"qubits": [2], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_2"}, {"qubits": [2], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0008835373184889258}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_2"}, {"qubits": [2], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.001766293998784585}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_2"}, {"qubits": [3], "gate": "id", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0011119765202945485}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_3"}, {"qubits": [3], "gate": "u1", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_3"}, {"qubits": [3], "gate": "u2", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0011119765202945485}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_3"}, {"qubits": [3], "gate": "u3", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0022227165488075684}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_3"}, {"qubits": [4], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.00034948828727556365}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_4"}, {"qubits": [4], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_4"}, {"qubits": [4], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.00034948828727556365}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_4"}, {"qubits": [4], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0006988544324881829}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_4"}, {"qubits": [5], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0004226571606376794}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_5"}, {"qubits": [5], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_5"}, {"qubits": [5], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0004226571606376794}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_5"}, {"qubits": [5], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0008451356822000156}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_5"}, {"qubits": [6], "gate": "id", "parameters": [{"date": "2020-08-07T13:05:57-04:00", "name": "gate_error", "unit": "", "value": 0.0004497328946631434}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_6"}, {"qubits": [6], "gate": "u1", "parameters": [{"date": "2020-08-07T13:05:57-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_6"}, {"qubits": [6], "gate": "u2", "parameters": [{"date": "2020-08-07T13:05:57-04:00", "name": "gate_error", "unit": "", "value": 0.0004497328946631434}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_6"}, {"qubits": [6], "gate": "u3", "parameters": [{"date": "2020-08-07T13:05:57-04:00", "name": "gate_error", "unit": "", "value": 0.000899263529649641}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_6"}, {"qubits": [7], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.00042151986134583415}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_7"}, {"qubits": [7], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_7"}, {"qubits": [7], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.00042151986134583415}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_7"}, {"qubits": [7], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0008428620436982115}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_7"}, {"qubits": [8], "gate": "id", "parameters": [{"date": "2020-08-07T13:05:57-04:00", "name": "gate_error", "unit": "", "value": 0.0006902956808651572}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_8"}, {"qubits": [8], "gate": "u1", "parameters": [{"date": "2020-08-07T13:05:57-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_8"}, {"qubits": [8], "gate": "u2", "parameters": [{"date": "2020-08-07T13:05:57-04:00", "name": "gate_error", "unit": "", "value": 0.0006902956808651572}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_8"}, {"qubits": [8], "gate": "u3", "parameters": [{"date": "2020-08-07T13:05:57-04:00", "name": "gate_error", "unit": "", "value": 0.0013801148536033425}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_8"}, {"qubits": [9], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.00034168739608509275}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_9"}, {"qubits": [9], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_9"}, {"qubits": [9], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.00034168739608509275}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_9"}, {"qubits": [9], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0006832580418935086}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_9"}, {"qubits": [10], "gate": "id", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0005414343349337161}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_10"}, {"qubits": [10], "gate": "u1", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_10"}, {"qubits": [10], "gate": "u2", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0005414343349337161}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_10"}, {"qubits": [10], "gate": "u3", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.001082575518728368}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_10"}, {"qubits": [11], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0004412666934877997}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_11"}, {"qubits": [11], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_11"}, {"qubits": [11], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0004412666934877997}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_11"}, {"qubits": [11], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0008823386706807712}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_11"}, {"qubits": [12], "gate": "id", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.002418470751455315}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_12"}, {"qubits": [12], "gate": "u1", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_12"}, {"qubits": [12], "gate": "u2", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.002418470751455315}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_12"}, {"qubits": [12], "gate": "u3", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0048310925021349815}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_12"}, {"qubits": [13], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0034540229553000575}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_13"}, {"qubits": [13], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_13"}, {"qubits": [13], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0034540229553000575}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_13"}, {"qubits": [13], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.006896115636024436}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_13"}, {"qubits": [14], "gate": "id", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0004650159214016284}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_14"}, {"qubits": [14], "gate": "u1", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_14"}, {"qubits": [14], "gate": "u2", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0004650159214016284}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_14"}, {"qubits": [14], "gate": "u3", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.000929815602995987}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_14"}, {"qubits": [15], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0002991509355199688}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_15"}, {"qubits": [15], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_15"}, {"qubits": [15], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0002991509355199688}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_15"}, {"qubits": [15], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0005982123797577676}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_15"}, {"qubits": [16], "gate": "id", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.00026857819972321746}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_16"}, {"qubits": [16], "gate": "u1", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_16"}, {"qubits": [16], "gate": "u2", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.00026857819972321746}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_16"}, {"qubits": [16], "gate": "u3", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.000537084265197163}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_16"}, {"qubits": [17], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0003320220331980694}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_17"}, {"qubits": [17], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_17"}, {"qubits": [17], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0003320220331980694}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_17"}, {"qubits": [17], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0006639338277655282}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_17"}, {"qubits": [18], "gate": "id", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0005087548183899764}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_18"}, {"qubits": [18], "gate": "u1", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_18"}, {"qubits": [18], "gate": "u2", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0005087548183899764}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_18"}, {"qubits": [18], "gate": "u3", "parameters": [{"date": "2020-08-07T13:04:21-04:00", "name": "gate_error", "unit": "", "value": 0.0010172508053146734}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_18"}, {"qubits": [19], "gate": "id", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0007915072651845985}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id_19"}, {"qubits": [19], "gate": "u1", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "u1_19"}, {"qubits": [19], "gate": "u2", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.0007915072651845985}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "u2_19"}, {"qubits": [19], "gate": "u3", "parameters": [{"date": "2020-08-07T13:02:30-04:00", "name": "gate_error", "unit": "", "value": 0.001582388046618366}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 71.11111111111111}], "name": "u3_19"}, {"qubits": [0, 1], "gate": "cx", "parameters": [{"date": "2020-08-07T13:10:33-04:00", "name": "gate_error", "unit": "", "value": 0.017053816287762147}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 504.88888888888886}], "name": "cx0_1"}, {"qubits": [1, 0], "gate": "cx", "parameters": [{"date": "2020-08-07T13:10:33-04:00", "name": "gate_error", "unit": "", "value": 0.017053816287762147}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 540.4444444444445}], "name": "cx1_0"}, {"qubits": [1, 2], "gate": "cx", "parameters": [{"date": "2020-08-07T13:15:33-04:00", "name": "gate_error", "unit": "", "value": 0.01759912513960274}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 704}], "name": "cx1_2"}, {"qubits": [1, 6], "gate": "cx", "parameters": [{"date": "2020-08-07T13:20:43-04:00", "name": "gate_error", "unit": "", "value": 0.020077457516567282}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 704}], "name": "cx1_6"}, {"qubits": [2, 1], "gate": "cx", "parameters": [{"date": "2020-08-07T13:15:33-04:00", "name": "gate_error", "unit": "", "value": 0.01759912513960274}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 739.5555555555555}], "name": "cx2_1"}, {"qubits": [2, 3], "gate": "cx", "parameters": [{"date": "2020-08-07T13:26:26-04:00", "name": "gate_error", "unit": "", "value": 0.021126469225575095}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 640}], "name": "cx2_3"}, {"qubits": [3, 2], "gate": "cx", "parameters": [{"date": "2020-08-07T13:26:26-04:00", "name": "gate_error", "unit": "", "value": 0.021126469225575095}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 675.5555555555555}], "name": "cx3_2"}, {"qubits": [3, 4], "gate": "cx", "parameters": [{"date": "2020-08-07T13:31:31-04:00", "name": "gate_error", "unit": "", "value": 0.012155580132117899}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 547.5555555555555}], "name": "cx3_4"}, {"qubits": [3, 8], "gate": "cx", "parameters": [{"date": "2020-08-07T13:36:35-04:00", "name": "gate_error", "unit": "", "value": 0.02088286756739946}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 497.77777777777777}], "name": "cx3_8"}, {"qubits": [4, 3], "gate": "cx", "parameters": [{"date": "2020-08-07T13:31:31-04:00", "name": "gate_error", "unit": "", "value": 0.012155580132117899}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 512}], "name": "cx4_3"}, {"qubits": [5, 6], "gate": "cx", "parameters": [{"date": "2020-08-07T13:41:32-04:00", "name": "gate_error", "unit": "", "value": 0.02790217171387821}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 1031.111111111111}], "name": "cx5_6"}, {"qubits": [5, 10], "gate": "cx", "parameters": [{"date": "2020-08-07T14:11:49-04:00", "name": "gate_error", "unit": "", "value": 0.013957233864205748}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 746.6666666666666}], "name": "cx5_10"}, {"qubits": [6, 1], "gate": "cx", "parameters": [{"date": "2020-08-07T13:20:43-04:00", "name": "gate_error", "unit": "", "value": 0.020077457516567282}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 739.5555555555555}], "name": "cx6_1"}, {"qubits": [6, 5], "gate": "cx", "parameters": [{"date": "2020-08-07T13:41:32-04:00", "name": "gate_error", "unit": "", "value": 0.02790217171387821}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 995.5555555555555}], "name": "cx6_5"}, {"qubits": [6, 7], "gate": "cx", "parameters": [{"date": "2020-08-07T13:46:56-04:00", "name": "gate_error", "unit": "", "value": 0.012710982927153086}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 540.4444444444445}], "name": "cx6_7"}, {"qubits": [7, 6], "gate": "cx", "parameters": [{"date": "2020-08-07T13:46:56-04:00", "name": "gate_error", "unit": "", "value": 0.012710982927153086}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 576}], "name": "cx7_6"}, {"qubits": [7, 8], "gate": "cx", "parameters": [{"date": "2020-08-07T13:52:07-04:00", "name": "gate_error", "unit": "", "value": 0.014913038682319107}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 618.6666666666666}], "name": "cx7_8"}, {"qubits": [7, 12], "gate": "cx", "parameters": [{"date": "2020-08-07T13:57:11-04:00", "name": "gate_error", "unit": "", "value": 0.013580196483768542}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 547.5555555555555}], "name": "cx7_12"}, {"qubits": [8, 3], "gate": "cx", "parameters": [{"date": "2020-08-07T13:36:35-04:00", "name": "gate_error", "unit": "", "value": 0.02088286756739946}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 533.3333333333333}], "name": "cx8_3"}, {"qubits": [8, 7], "gate": "cx", "parameters": [{"date": "2020-08-07T13:52:07-04:00", "name": "gate_error", "unit": "", "value": 0.014913038682319107}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 654.2222222222222}], "name": "cx8_7"}, {"qubits": [8, 9], "gate": "cx", "parameters": [{"date": "2020-08-07T14:02:11-04:00", "name": "gate_error", "unit": "", "value": 0.012066630040035331}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 284.44444444444446}], "name": "cx8_9"}, {"qubits": [9, 8], "gate": "cx", "parameters": [{"date": "2020-08-07T14:02:11-04:00", "name": "gate_error", "unit": "", "value": 0.012066630040035331}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 248.88888888888889}], "name": "cx9_8"}, {"qubits": [9, 14], "gate": "cx", "parameters": [{"date": "2020-08-07T14:06:59-04:00", "name": "gate_error", "unit": "", "value": 0.012265570501715645}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 348.4444444444444}], "name": "cx9_14"}, {"qubits": [10, 5], "gate": "cx", "parameters": [{"date": "2020-08-07T14:11:49-04:00", "name": "gate_error", "unit": "", "value": 0.013957233864205748}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 711.1111111111111}], "name": "cx10_5"}, {"qubits": [10, 11], "gate": "cx", "parameters": [{"date": "2020-08-07T14:16:58-04:00", "name": "gate_error", "unit": "", "value": 0.01393043596427826}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 462.2222222222222}], "name": "cx10_11"}, {"qubits": [11, 10], "gate": "cx", "parameters": [{"date": "2020-08-07T14:16:58-04:00", "name": "gate_error", "unit": "", "value": 0.01393043596427826}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 426.66666666666663}], "name": "cx11_10"}, {"qubits": [11, 12], "gate": "cx", "parameters": [{"date": "2020-08-07T14:21:59-04:00", "name": "gate_error", "unit": "", "value": 0.013317906154926507}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 440.88888888888886}], "name": "cx11_12"}, {"qubits": [11, 16], "gate": "cx", "parameters": [{"date": "2020-08-07T14:41:59-04:00", "name": "gate_error", "unit": "", "value": 0.01087761711917909}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 568.8888888888889}], "name": "cx11_16"}, {"qubits": [12, 7], "gate": "cx", "parameters": [{"date": "2020-08-07T13:57:11-04:00", "name": "gate_error", "unit": "", "value": 0.013580196483768542}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 583.1111111111111}], "name": "cx12_7"}, {"qubits": [12, 11], "gate": "cx", "parameters": [{"date": "2020-08-07T14:21:59-04:00", "name": "gate_error", "unit": "", "value": 0.013317906154926507}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 476.4444444444444}], "name": "cx12_11"}, {"qubits": [12, 13], "gate": "cx", "parameters": [{"date": "2020-08-07T14:26:56-04:00", "name": "gate_error", "unit": "", "value": 0.024657200887183345}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 483.55555555555554}], "name": "cx12_13"}, {"qubits": [13, 12], "gate": "cx", "parameters": [{"date": "2020-08-07T14:26:56-04:00", "name": "gate_error", "unit": "", "value": 0.024657200887183345}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 448}], "name": "cx13_12"}, {"qubits": [13, 14], "gate": "cx", "parameters": [{"date": "2020-08-07T14:37:05-04:00", "name": "gate_error", "unit": "", "value": 0.0185936715562022}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 405.3333333333333}], "name": "cx13_14"}, {"qubits": [13, 18], "gate": "cx", "parameters": [{"date": "2020-08-07T14:31:58-04:00", "name": "gate_error", "unit": "", "value": 0.024211777231952503}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 647.1111111111111}], "name": "cx13_18"}, {"qubits": [14, 9], "gate": "cx", "parameters": [{"date": "2020-08-07T14:06:59-04:00", "name": "gate_error", "unit": "", "value": 0.012265570501715645}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 384}], "name": "cx14_9"}, {"qubits": [14, 13], "gate": "cx", "parameters": [{"date": "2020-08-07T14:37:05-04:00", "name": "gate_error", "unit": "", "value": 0.0185936715562022}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 369.77777777777777}], "name": "cx14_13"}, {"qubits": [15, 16], "gate": "cx", "parameters": [{"date": "2020-08-07T14:46:58-04:00", "name": "gate_error", "unit": "", "value": 0.007691147840443252}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 426.66666666666663}], "name": "cx15_16"}, {"qubits": [16, 11], "gate": "cx", "parameters": [{"date": "2020-08-07T14:41:59-04:00", "name": "gate_error", "unit": "", "value": 0.01087761711917909}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 533.3333333333333}], "name": "cx16_11"}, {"qubits": [16, 15], "gate": "cx", "parameters": [{"date": "2020-08-07T14:46:58-04:00", "name": "gate_error", "unit": "", "value": 0.007691147840443252}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 391.1111111111111}], "name": "cx16_15"}, {"qubits": [16, 17], "gate": "cx", "parameters": [{"date": "2020-08-07T14:51:54-04:00", "name": "gate_error", "unit": "", "value": 0.013279740930025902}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 590.2222222222222}], "name": "cx16_17"}, {"qubits": [17, 16], "gate": "cx", "parameters": [{"date": "2020-08-07T14:51:54-04:00", "name": "gate_error", "unit": "", "value": 0.013279740930025902}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 554.6666666666666}], "name": "cx17_16"}, {"qubits": [17, 18], "gate": "cx", "parameters": [{"date": "2020-08-07T14:56:58-04:00", "name": "gate_error", "unit": "", "value": 0.020744579269272284}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 760.8888888888888}], "name": "cx17_18"}, {"qubits": [18, 13], "gate": "cx", "parameters": [{"date": "2020-08-07T14:31:58-04:00", "name": "gate_error", "unit": "", "value": 0.024211777231952503}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 682.6666666666666}], "name": "cx18_13"}, {"qubits": [18, 17], "gate": "cx", "parameters": [{"date": "2020-08-07T14:56:58-04:00", "name": "gate_error", "unit": "", "value": 0.020744579269272284}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 796.4444444444443}], "name": "cx18_17"}, {"qubits": [18, 19], "gate": "cx", "parameters": [{"date": "2020-08-07T15:02:18-04:00", "name": "gate_error", "unit": "", "value": 0.014414191888841382}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 647.1111111111111}], "name": "cx18_19"}, {"qubits": [19, 18], "gate": "cx", "parameters": [{"date": "2020-08-07T15:02:18-04:00", "name": "gate_error", "unit": "", "value": 0.014414191888841382}, {"date": "2020-08-07T15:58:39-04:00", "name": "gate_length", "unit": "ns", "value": 611.5555555555555}], "name": "cx19_18"}], "general": []}
|
@@ -1,18 +0,0 @@
|
|
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 27 qubit fake :class:`.BackendV1` with pulse capabilities.
|
16
|
-
"""
|
17
|
-
|
18
|
-
from .fake_27q_pulse_v1 import Fake27QPulseV1
|
@@ -1 +0,0 @@
|
|
1
|
-
{"backend_name": "ibm_hanoi", "backend_version": "1.0.18", "n_qubits": 27, "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], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19], [20], [21], [22], [23], [24], [25], [26]]}, {"name": "rz", "parameters": ["theta"], "qasm_def": "gate rz(theta) q { U(0, 0, theta) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19], [20], [21], [22], [23], [24], [25], [26]]}, {"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], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19], [20], [21], [22], [23], [24], [25], [26]]}, {"name": "x", "parameters": [], "qasm_def": "gate x q { U(pi, 0, pi) q; }", "coupling_map": [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16], [17], [18], [19], [20], [21], [22], [23], [24], [25], [26]]}, {"name": "cx", "parameters": [], "qasm_def": "gate cx q0, q1 { CX q0, q1; }", "coupling_map": [[0, 1], [1, 0], [1, 2], [1, 4], [2, 1], [2, 3], [3, 2], [3, 5], [4, 1], [4, 7], [5, 3], [5, 8], [6, 7], [7, 4], [7, 6], [7, 10], [8, 5], [8, 9], [8, 11], [9, 8], [10, 7], [10, 12], [11, 8], [11, 14], [12, 10], [12, 13], [12, 15], [13, 12], [13, 14], [14, 11], [14, 13], [14, 16], [15, 12], [15, 18], [16, 14], [16, 19], [17, 18], [18, 15], [18, 17], [18, 21], [19, 16], [19, 20], [19, 22], [20, 19], [21, 18], [21, 23], [22, 19], [22, 25], [23, 21], [23, 24], [24, 23], [24, 25], [25, 22], [25, 24], [25, 26], [26, 25]]}, {"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, 4], [2, 1], [2, 3], [3, 2], [3, 5], [4, 1], [4, 7], [5, 3], [5, 8], [6, 7], [7, 4], [7, 6], [7, 10], [8, 5], [8, 9], [8, 11], [9, 8], [10, 7], [10, 12], [11, 8], [11, 14], [12, 10], [12, 13], [12, 15], [13, 12], [13, 14], [14, 11], [14, 13], [14, 16], [15, 12], [15, 18], [16, 14], [16, 19], [17, 18], [18, 15], [18, 17], [18, 21], [19, 16], [19, 20], [19, 22], [20, 19], [21, 18], [21, 23], [22, 19], [22, 25], [23, 21], [23, 24], [24, 23], [24, 25], [25, 22], [25, 24], [25, 26], [26, 25]], "dynamic_reprate_enabled": true, "supported_instructions": ["rz", "play", "measure", "delay", "acquire", "sx", "cx", "reset", "x", "shiftf", "u1", "u3", "u2", "setf", "id"], "rep_delay_range": [0.0, 500.0], "default_rep_delay": 250.0, "max_experiments": 300, "sample_name": "family: Falcon, revision: 5.11", "n_registers": 1, "credits_required": true, "online_date": "2021-04-24T04:00:00+00:00", "description": "27 qubit device", "dt": 0.2222222222222222, "dtm": 0.2222222222222222, "processor_type": {"family": "Falcon", "revision": "5.11"}, "parametric_pulses": ["gaussian", "gaussian_square", "drag", "constant"], "allow_q_object": true, "clops": 2341, "measure_esp_enabled": true, "multi_meas_enabled": true, "quantum_volume": 64, "qubit_channel_mapping": [["d0", "m0", "u1", "u0"], ["d1", "m1", "u1", "u3", "u2", "u0", "u4", "u8"], ["m2", "u6", "d2", "u2", "u4", "u5"], ["u7", "u6", "m3", "u10", "u5", "d3"], ["u9", "u13", "d4", "u3", "m4", "u8"], ["m5", "d5", "u7", "u11", "u16", "u10"], ["u12", "u14", "m6", "d6"], ["u12", "u9", "m7", "d7", "u13", "u15", "u14", "u20"], ["u19", "u18", "u22", "d8", "u11", "m8", "u16", "u17"], ["u19", "u17", "m9", "d9"], ["u21", "m10", "u15", "u20", "u24", "d10"], ["u18", "u29", "u22", "m11", "u23", "d11"], ["u21", "m12", "u32", "u27", "u26", "u24", "u25", "d12"], ["m13", "u30", "u27", "d13", "u25", "u28"], ["u34", "m14", "u30", "u29", "d14", "u23", "u31", "u28"], ["u32", "u33", "u26", "u37", "d15", "m15"], ["u40", "u34", "u35", "m16", "d16", "u31"], ["d17", "m17", "u36", "u38"], ["u33", "u37", "u38", "d18", "m18", "u36", "u44", "u39"], ["u43", "u40", "u41", "d19", "u46", "u42", "u35", "m19"], ["u43", "d20", "u41", "m20"], ["d21", "u48", "u44", "m21", "u45", "u39"], ["u47", "d22", "u52", "u46", "u42", "m22"], ["u49", "m23", "u50", "d23", "u48", "u45"], ["u49", "m24", "u53", "u51", "d24", "u50"], ["u47", "d25", "u53", "u52", "u54", "u51", "m25", "u55"], ["u54", "d26", "m26", "u55"]], "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": 56, "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": 4, "scale": [1.0, 0.0]}], [{"q": 1, "scale": [1.0, 0.0]}], [{"q": 3, "scale": [1.0, 0.0]}], [{"q": 2, "scale": [1.0, 0.0]}], [{"q": 5, "scale": [1.0, 0.0]}], [{"q": 1, "scale": [1.0, 0.0]}], [{"q": 7, "scale": [1.0, 0.0]}], [{"q": 3, "scale": [1.0, 0.0]}], [{"q": 8, "scale": [1.0, 0.0]}], [{"q": 7, "scale": [1.0, 0.0]}], [{"q": 4, "scale": [1.0, 0.0]}], [{"q": 6, "scale": [1.0, 0.0]}], [{"q": 10, "scale": [1.0, 0.0]}], [{"q": 5, "scale": [1.0, 0.0]}], [{"q": 9, "scale": [1.0, 0.0]}], [{"q": 11, "scale": [1.0, 0.0]}], [{"q": 8, "scale": [1.0, 0.0]}], [{"q": 7, "scale": [1.0, 0.0]}], [{"q": 12, "scale": [1.0, 0.0]}], [{"q": 8, "scale": [1.0, 0.0]}], [{"q": 14, "scale": [1.0, 0.0]}], [{"q": 10, "scale": [1.0, 0.0]}], [{"q": 13, "scale": [1.0, 0.0]}], [{"q": 15, "scale": [1.0, 0.0]}], [{"q": 12, "scale": [1.0, 0.0]}], [{"q": 14, "scale": [1.0, 0.0]}], [{"q": 11, "scale": [1.0, 0.0]}], [{"q": 13, "scale": [1.0, 0.0]}], [{"q": 16, "scale": [1.0, 0.0]}], [{"q": 12, "scale": [1.0, 0.0]}], [{"q": 18, "scale": [1.0, 0.0]}], [{"q": 14, "scale": [1.0, 0.0]}], [{"q": 19, "scale": [1.0, 0.0]}], [{"q": 18, "scale": [1.0, 0.0]}], [{"q": 15, "scale": [1.0, 0.0]}], [{"q": 17, "scale": [1.0, 0.0]}], [{"q": 21, "scale": [1.0, 0.0]}], [{"q": 16, "scale": [1.0, 0.0]}], [{"q": 20, "scale": [1.0, 0.0]}], [{"q": 22, "scale": [1.0, 0.0]}], [{"q": 19, "scale": [1.0, 0.0]}], [{"q": 18, "scale": [1.0, 0.0]}], [{"q": 23, "scale": [1.0, 0.0]}], [{"q": 19, "scale": [1.0, 0.0]}], [{"q": 25, "scale": [1.0, 0.0]}], [{"q": 21, "scale": [1.0, 0.0]}], [{"q": 24, "scale": [1.0, 0.0]}], [{"q": 23, "scale": [1.0, 0.0]}], [{"q": 25, "scale": [1.0, 0.0]}], [{"q": 22, "scale": [1.0, 0.0]}], [{"q": 24, "scale": [1.0, 0.0]}], [{"q": 26, "scale": [1.0, 0.0]}], [{"q": 25, "scale": [1.0, 0.0]}]], "meas_levels": [1, 2], "qubit_lo_range": [[4.535257503599211, 5.535257503599211], [4.655565118090405, 5.655565118090405], [4.755995040248669, 5.755995040248669], [4.597246059676533, 5.597246059676533], [4.573268319137003, 5.573268319137003], [4.707464807502693, 5.707464807502694], [4.5210015516417, 5.5210015516417], [4.4191505084130815, 5.4191505084130815], [4.530713370275684, 5.530713370275684], [4.3740868671878745, 5.3740868671878745], [4.320985528731567, 5.320985528731567], [4.661695558780752, 5.661695558780752], [4.218894123006918, 5.218894123006918], [4.46239280214447, 5.46239280214447], [4.546578733357967, 5.546578733357967], [4.4233696440290196, 5.4233696440290196], [4.383763459999275, 5.383763459999275], [4.723019531456885, 5.723019531456885], [4.468043966959381, 5.468043966959381], [4.503050223752749, 5.503050223752749], [4.594892970591303, 5.594892970591303], [4.339318141468997, 5.339318141468997], [4.418673448292978, 5.418673448292978], [4.4076099256247945, 5.4076099256247945], [4.491553956799851, 5.491553956799851], [4.312437397584483, 5.312437397584483], [4.5198818619488375, 5.5198818619488375]], "meas_lo_range": [[6.665371582000001, 7.665371582000001], [6.785782665, 7.785782665], [6.673691701, 7.673691701], [6.798730620000001, 7.798730620000001], [6.724593267, 7.724593267], [6.735959639000001, 7.735959639000001], [6.844801469, 7.844801469], [6.60075502, 7.60075502], [6.6045704050000005, 7.6045704050000005], [6.833083734000001, 7.833083734000001], [6.6631827690000005, 7.6631827690000005], [6.720441798, 7.720441798], [6.832567197, 7.832567197], [6.720599967, 7.720599967], [6.775398235000001, 7.775398235000001], [6.774109033, 7.774109033], [6.672388137, 7.672388137], [6.845100488000001, 7.845100488000001], [6.611022672000001, 7.611022672000001], [6.6065729090000005, 7.6065729090000005], [6.843041951, 7.843041951000001], [6.728027087, 7.728027087], [6.730878403, 7.730878403], [6.780402175000001, 7.780402175000001], [6.668562946000001, 7.668562946000001], [6.769199002000001, 7.769199002000001], [6.659368961, 7.659368961]], "meas_kernels": ["hw_qmfk"], "discriminators": ["hw_qmfk", "linear_discriminator", "quadratic_discriminator"], "rep_times": [1000.0], "meas_map": [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26]], "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}^{26}\\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_{12,13}(\\sigma_{12}^{+}\\sigma_{13}^{-}+\\sigma_{12}^{-}\\sigma_{13}^{+}) + J_{14,16}(\\sigma_{14}^{+}\\sigma_{16}^{-}+\\sigma_{14}^{-}\\sigma_{16}^{+}) + J_{8,9}(\\sigma_{8}^{+}\\sigma_{9}^{-}+\\sigma_{8}^{-}\\sigma_{9}^{+}) + J_{17,18}(\\sigma_{17}^{+}\\sigma_{18}^{-}+\\sigma_{17}^{-}\\sigma_{18}^{+}) \\\\ & + J_{11,14}(\\sigma_{11}^{+}\\sigma_{14}^{-}+\\sigma_{11}^{-}\\sigma_{14}^{+}) + J_{10,12}(\\sigma_{10}^{+}\\sigma_{12}^{-}+\\sigma_{10}^{-}\\sigma_{12}^{+}) + J_{13,14}(\\sigma_{13}^{+}\\sigma_{14}^{-}+\\sigma_{13}^{-}\\sigma_{14}^{+}) + J_{7,10}(\\sigma_{7}^{+}\\sigma_{10}^{-}+\\sigma_{7}^{-}\\sigma_{10}^{+}) \\\\ & + J_{16,19}(\\sigma_{16}^{+}\\sigma_{19}^{-}+\\sigma_{16}^{-}\\sigma_{19}^{+}) + J_{12,15}(\\sigma_{12}^{+}\\sigma_{15}^{-}+\\sigma_{12}^{-}\\sigma_{15}^{+}) + J_{22,25}(\\sigma_{22}^{+}\\sigma_{25}^{-}+\\sigma_{22}^{-}\\sigma_{25}^{+}) + J_{23,24}(\\sigma_{23}^{+}\\sigma_{24}^{-}+\\sigma_{23}^{-}\\sigma_{24}^{+}) \\\\ & + J_{8,11}(\\sigma_{8}^{+}\\sigma_{11}^{-}+\\sigma_{8}^{-}\\sigma_{11}^{+}) + J_{0,1}(\\sigma_{0}^{+}\\sigma_{1}^{-}+\\sigma_{0}^{-}\\sigma_{1}^{+}) + J_{1,2}(\\sigma_{1}^{+}\\sigma_{2}^{-}+\\sigma_{1}^{-}\\sigma_{2}^{+}) + J_{19,20}(\\sigma_{19}^{+}\\sigma_{20}^{-}+\\sigma_{19}^{-}\\sigma_{20}^{+}) \\\\ & + J_{6,7}(\\sigma_{6}^{+}\\sigma_{7}^{-}+\\sigma_{6}^{-}\\sigma_{7}^{+}) + J_{24,25}(\\sigma_{24}^{+}\\sigma_{25}^{-}+\\sigma_{24}^{-}\\sigma_{25}^{+}) + J_{18,21}(\\sigma_{18}^{+}\\sigma_{21}^{-}+\\sigma_{18}^{-}\\sigma_{21}^{+}) + J_{4,7}(\\sigma_{4}^{+}\\sigma_{7}^{-}+\\sigma_{4}^{-}\\sigma_{7}^{+}) \\\\ & + J_{21,23}(\\sigma_{21}^{+}\\sigma_{23}^{-}+\\sigma_{21}^{-}\\sigma_{23}^{+}) + J_{3,5}(\\sigma_{3}^{+}\\sigma_{5}^{-}+\\sigma_{3}^{-}\\sigma_{5}^{+}) + J_{5,8}(\\sigma_{5}^{+}\\sigma_{8}^{-}+\\sigma_{5}^{-}\\sigma_{8}^{+}) + J_{1,4}(\\sigma_{1}^{+}\\sigma_{4}^{-}+\\sigma_{1}^{-}\\sigma_{4}^{+}) \\\\ & + J_{2,3}(\\sigma_{2}^{+}\\sigma_{3}^{-}+\\sigma_{2}^{-}\\sigma_{3}^{+}) + J_{19,22}(\\sigma_{19}^{+}\\sigma_{22}^{-}+\\sigma_{19}^{-}\\sigma_{22}^{+}) + J_{15,18}(\\sigma_{15}^{+}\\sigma_{18}^{-}+\\sigma_{15}^{-}\\sigma_{18}^{+}) + J_{25,26}(\\sigma_{25}^{+}\\sigma_{26}^{-}+\\sigma_{25}^{-}\\sigma_{26}^{+}) \\\\ & + \\Omega_{d,0}(U_{0}^{(0,1)}(t))\\sigma_{0}^{X} + \\Omega_{d,1}(U_{1}^{(1,0)}(t)+U_{3}^{(1,4)}(t)+U_{2}^{(1,2)}(t))\\sigma_{1}^{X} \\\\ & + \\Omega_{d,2}(U_{5}^{(2,3)}(t)+U_{4}^{(2,1)}(t))\\sigma_{2}^{X} + \\Omega_{d,3}(U_{6}^{(3,2)}(t)+U_{7}^{(3,5)}(t))\\sigma_{3}^{X} \\\\ & + \\Omega_{d,4}(U_{9}^{(4,7)}(t)+U_{8}^{(4,1)}(t))\\sigma_{4}^{X} + \\Omega_{d,5}(U_{11}^{(5,8)}(t)+U_{10}^{(5,3)}(t))\\sigma_{5}^{X} \\\\ & + \\Omega_{d,6}(U_{12}^{(6,7)}(t))\\sigma_{6}^{X} + \\Omega_{d,7}(U_{14}^{(7,6)}(t)+U_{13}^{(7,4)}(t)+U_{15}^{(7,10)}(t))\\sigma_{7}^{X} \\\\ & + \\Omega_{d,8}(U_{18}^{(8,11)}(t)+U_{16}^{(8,5)}(t)+U_{17}^{(8,9)}(t))\\sigma_{8}^{X} + \\Omega_{d,9}(U_{19}^{(9,8)}(t))\\sigma_{9}^{X} \\\\ & + \\Omega_{d,10}(U_{20}^{(10,7)}(t)+U_{21}^{(10,12)}(t))\\sigma_{10}^{X} + \\Omega_{d,11}(U_{22}^{(11,8)}(t)+U_{23}^{(11,14)}(t))\\sigma_{11}^{X} \\\\ & + \\Omega_{d,12}(U_{24}^{(12,10)}(t)+U_{25}^{(12,13)}(t)+U_{26}^{(12,15)}(t))\\sigma_{12}^{X} + \\Omega_{d,13}(U_{28}^{(13,14)}(t)+U_{27}^{(13,12)}(t))\\sigma_{13}^{X} \\\\ & + \\Omega_{d,14}(U_{31}^{(14,16)}(t)+U_{30}^{(14,13)}(t)+U_{29}^{(14,11)}(t))\\sigma_{14}^{X} + \\Omega_{d,15}(U_{33}^{(15,18)}(t)+U_{32}^{(15,12)}(t))\\sigma_{15}^{X} \\\\ & + \\Omega_{d,16}(U_{35}^{(16,19)}(t)+U_{34}^{(16,14)}(t))\\sigma_{16}^{X} + \\Omega_{d,17}(U_{36}^{(17,18)}(t))\\sigma_{17}^{X} \\\\ & + \\Omega_{d,18}(U_{37}^{(18,15)}(t)+U_{39}^{(18,21)}(t)+U_{38}^{(18,17)}(t))\\sigma_{18}^{X} + \\Omega_{d,19}(U_{42}^{(19,22)}(t)+U_{40}^{(19,16)}(t)+U_{41}^{(19,20)}(t))\\sigma_{19}^{X} \\\\ & + \\Omega_{d,20}(U_{43}^{(20,19)}(t))\\sigma_{20}^{X} + \\Omega_{d,21}(U_{44}^{(21,18)}(t)+U_{45}^{(21,23)}(t))\\sigma_{21}^{X} \\\\ & + \\Omega_{d,22}(U_{46}^{(22,19)}(t)+U_{47}^{(22,25)}(t))\\sigma_{22}^{X} + \\Omega_{d,23}(U_{49}^{(23,24)}(t)+U_{48}^{(23,21)}(t))\\sigma_{23}^{X} \\\\ & + \\Omega_{d,24}(U_{50}^{(24,23)}(t)+U_{51}^{(24,25)}(t))\\sigma_{24}^{X} + \\Omega_{d,25}(U_{54}^{(25,26)}(t)+U_{53}^{(25,24)}(t)+U_{52}^{(25,22)}(t))\\sigma_{25}^{X} \\\\ & + \\Omega_{d,26}(U_{55}^{(26,25)}(t))\\sigma_{26}^{X} \\\\ \\end{align}", "h_str": ["_SUM[i,0,26,wq{i}/2*(I{i}-Z{i})]", "_SUM[i,0,26,delta{i}/2*O{i}*O{i}]", "_SUM[i,0,26,-delta{i}/2*O{i}]", "_SUM[i,0,26,omegad{i}*X{i}||D{i}]", "jq12q13*Sp12*Sm13", "jq12q13*Sm12*Sp13", "jq14q16*Sp14*Sm16", "jq14q16*Sm14*Sp16", "jq8q9*Sp8*Sm9", "jq8q9*Sm8*Sp9", "jq17q18*Sp17*Sm18", "jq17q18*Sm17*Sp18", "jq11q14*Sp11*Sm14", "jq11q14*Sm11*Sp14", "jq10q12*Sp10*Sm12", "jq10q12*Sm10*Sp12", "jq13q14*Sp13*Sm14", "jq13q14*Sm13*Sp14", "jq7q10*Sp7*Sm10", "jq7q10*Sm7*Sp10", "jq16q19*Sp16*Sm19", "jq16q19*Sm16*Sp19", "jq12q15*Sp12*Sm15", "jq12q15*Sm12*Sp15", "jq22q25*Sp22*Sm25", "jq22q25*Sm22*Sp25", "jq23q24*Sp23*Sm24", "jq23q24*Sm23*Sp24", "jq8q11*Sp8*Sm11", "jq8q11*Sm8*Sp11", "jq0q1*Sp0*Sm1", "jq0q1*Sm0*Sp1", "jq1q2*Sp1*Sm2", "jq1q2*Sm1*Sp2", "jq19q20*Sp19*Sm20", "jq19q20*Sm19*Sp20", "jq6q7*Sp6*Sm7", "jq6q7*Sm6*Sp7", "jq24q25*Sp24*Sm25", "jq24q25*Sm24*Sp25", "jq18q21*Sp18*Sm21", "jq18q21*Sm18*Sp21", "jq4q7*Sp4*Sm7", "jq4q7*Sm4*Sp7", "jq21q23*Sp21*Sm23", "jq21q23*Sm21*Sp23", "jq3q5*Sp3*Sm5", "jq3q5*Sm3*Sp5", "jq5q8*Sp5*Sm8", "jq5q8*Sm5*Sp8", "jq1q4*Sp1*Sm4", "jq1q4*Sm1*Sp4", "jq2q3*Sp2*Sm3", "jq2q3*Sm2*Sp3", "jq19q22*Sp19*Sm22", "jq19q22*Sm19*Sp22", "jq15q18*Sp15*Sm18", "jq15q18*Sm15*Sp18", "jq25q26*Sp25*Sm26", "jq25q26*Sm25*Sp26", "omegad1*X0||U0", "omegad0*X1||U1", "omegad4*X1||U3", "omegad2*X1||U2", "omegad3*X2||U5", "omegad1*X2||U4", "omegad2*X3||U6", "omegad5*X3||U7", "omegad7*X4||U9", "omegad1*X4||U8", "omegad8*X5||U11", "omegad3*X5||U10", "omegad7*X6||U12", "omegad6*X7||U14", "omegad4*X7||U13", "omegad10*X7||U15", "omegad11*X8||U18", "omegad5*X8||U16", "omegad9*X8||U17", "omegad8*X9||U19", "omegad7*X10||U20", "omegad12*X10||U21", "omegad8*X11||U22", "omegad14*X11||U23", "omegad10*X12||U24", "omegad13*X12||U25", "omegad15*X12||U26", "omegad14*X13||U28", "omegad12*X13||U27", "omegad16*X14||U31", "omegad13*X14||U30", "omegad11*X14||U29", "omegad18*X15||U33", "omegad12*X15||U32", "omegad19*X16||U35", "omegad14*X16||U34", "omegad18*X17||U36", "omegad15*X18||U37", "omegad21*X18||U39", "omegad17*X18||U38", "omegad22*X19||U42", "omegad16*X19||U40", "omegad20*X19||U41", "omegad19*X20||U43", "omegad18*X21||U44", "omegad23*X21||U45", "omegad19*X22||U46", "omegad25*X22||U47", "omegad24*X23||U49", "omegad21*X23||U48", "omegad23*X24||U50", "omegad25*X24||U51", "omegad26*X25||U54", "omegad24*X25||U53", "omegad22*X25||U52", "omegad25*X26||U55"], "osc": {}, "qub": {"0": 3, "1": 3, "2": 3, "3": 3, "4": 3, "5": 3, "6": 3, "7": 3, "8": 3, "9": 3, "10": 3, "11": 3, "12": 3, "13": 3, "14": 3, "15": 3, "16": 3, "17": 3, "18": 3, "19": 3, "20": 3, "21": 3, "22": 3, "23": 3, "24": 3, "25": 3, "26": 3}, "vars": {"delta0": -2.157041224831975, "delta1": -2.1470913136177914, "delta10": -2.179199229249938, "delta11": -2.1482764555390363, "delta12": -2.187697799628999, "delta13": -2.1679159669239545, "delta14": -2.1649606104048758, "delta15": -2.0114163698303624, "delta16": -2.164629324132, "delta17": -2.1359730614841914, "delta18": -2.161407668573702, "delta19": -2.1562516591097447, "delta2": -2.1343153266481414, "delta20": -2.142745736595441, "delta21": -2.1735320987023714, "delta22": -2.1743400308895575, "delta23": -2.072324818858016, "delta24": -2.158058851091839, "delta25": -2.1782214560405238, "delta26": -2.1531473733722675, "delta3": -2.149540471581805, "delta4": -2.159775522557533, "delta5": -2.138682604866169, "delta6": -2.153042807969977, "delta7": -2.1679141566754763, "delta8": -2.1658067810285995, "delta9": -2.169425156462459, "jq0q1": 0.012734759123798622, "jq10q12": 0.011417499915545304, "jq11q14": 0.012343343710023616, "jq12q13": 0.011867200824785817, "jq12q15": 0.011131027697740188, "jq13q14": 0.012625154781837646, "jq14q16": 0.011855608098151636, "jq15q18": 0.010584498185378198, "jq16q19": 0.01185355420634407, "jq17q18": 0.012647800286754489, "jq18q21": 0.012373611789185456, "jq19q20": 0.012319066126225995, "jq19q22": 0.0123138011595904, "jq1q2": 0.01332937951447704, "jq1q4": 0.012525685683923577, "jq21q23": 0.012224510732381764, "jq22q25": 0.011718172884156514, "jq23q24": 0.01769090656977687, "jq24q25": 0.012218247216343124, "jq25q26": 0.012064894658263593, "jq2q3": 0.013163538112303514, "jq3q5": 0.013027238817800504, "jq4q7": 0.011732650524787553, "jq5q8": 0.01301824712246644, "jq6q7": 0.011211966882748878, "jq7q10": 0.01050583767507357, "jq8q11": 0.012229863026407928, "jq8q9": 0.01226639878700912, "omegad0": 0.9919264188274367, "omegad1": 1.0012306743832295, "omegad10": 1.0475979921710548, "omegad11": 0.9935749585742212, "omegad12": 0.863512243652439, "omegad13": 0.9479167655144832, "omegad14": 0.9616999454263536, "omegad15": 0.7809192810311522, "omegad16": 1.004892715715388, "omegad17": 1.0220345695108837, "omegad18": 0.910686082068096, "omegad19": 0.9881582783370325, "omegad2": 0.9908471618340624, "omegad20": 0.9992675285941648, "omegad21": 1.0073607694654676, "omegad22": 0.9953296228763869, "omegad23": 0.9529724262480962, "omegad24": 1.1202197685659256, "omegad25": 0.9937472020485103, "omegad26": 0.9924737070241095, "omegad3": 1.0108884017652464, "omegad4": 0.9599078861612315, "omegad5": 0.9498666218869168, "omegad6": 1.0086290631554073, "omegad7": 1.1142346724354806, "omegad8": 1.0062285587741442, "omegad9": 0.9791331625664339, "wq0": 31.637455964480324, "wq1": 32.39337100019322, "wq10": 30.2911454402516, "wq11": 32.43188969506535, "wq12": 29.64968621981317, "wq13": 31.179633542887878, "wq14": 31.70858934895974, "wq15": 30.934443809177125, "wq16": 30.685590815607988, "wq17": 32.81719957916191, "wq18": 31.21514085862137, "wq19": 31.435091656964815, "wq2": 33.02439081149922, "wq20": 32.01215665447184, "wq21": 30.40633264324563, "wq22": 30.904936741128786, "wq23": 30.835422578054416, "wq24": 31.36285848135895, "wq25": 30.23743594822439, "wq26": 31.54084795877424, "wq3": 32.026941549238636, "wq4": 31.876284962181288, "wq5": 32.71946636615569, "wq6": 31.547883176601033, "wq7": 30.90793419826607, "wq8": 31.60890433274808, "wq9": 30.62479098983183}}, "channels": {"acquire0": {"operates": {"qubits": [0]}, "purpose": "acquire", "type": "acquire"}, "acquire1": {"operates": {"qubits": [1]}, "purpose": "acquire", "type": "acquire"}, "acquire10": {"operates": {"qubits": [10]}, "purpose": "acquire", "type": "acquire"}, "acquire11": {"operates": {"qubits": [11]}, "purpose": "acquire", "type": "acquire"}, "acquire12": {"operates": {"qubits": [12]}, "purpose": "acquire", "type": "acquire"}, "acquire13": {"operates": {"qubits": [13]}, "purpose": "acquire", "type": "acquire"}, "acquire14": {"operates": {"qubits": [14]}, "purpose": "acquire", "type": "acquire"}, "acquire15": {"operates": {"qubits": [15]}, "purpose": "acquire", "type": "acquire"}, "acquire16": {"operates": {"qubits": [16]}, "purpose": "acquire", "type": "acquire"}, "acquire17": {"operates": {"qubits": [17]}, "purpose": "acquire", "type": "acquire"}, "acquire18": {"operates": {"qubits": [18]}, "purpose": "acquire", "type": "acquire"}, "acquire19": {"operates": {"qubits": [19]}, "purpose": "acquire", "type": "acquire"}, "acquire2": {"operates": {"qubits": [2]}, "purpose": "acquire", "type": "acquire"}, "acquire20": {"operates": {"qubits": [20]}, "purpose": "acquire", "type": "acquire"}, "acquire21": {"operates": {"qubits": [21]}, "purpose": "acquire", "type": "acquire"}, "acquire22": {"operates": {"qubits": [22]}, "purpose": "acquire", "type": "acquire"}, "acquire23": {"operates": {"qubits": [23]}, "purpose": "acquire", "type": "acquire"}, "acquire24": {"operates": {"qubits": [24]}, "purpose": "acquire", "type": "acquire"}, "acquire25": {"operates": {"qubits": [25]}, "purpose": "acquire", "type": "acquire"}, "acquire26": {"operates": {"qubits": [26]}, "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"}, "acquire7": {"operates": {"qubits": [7]}, "purpose": "acquire", "type": "acquire"}, "acquire8": {"operates": {"qubits": [8]}, "purpose": "acquire", "type": "acquire"}, "acquire9": {"operates": {"qubits": [9]}, "purpose": "acquire", "type": "acquire"}, "d0": {"operates": {"qubits": [0]}, "purpose": "drive", "type": "drive"}, "d1": {"operates": {"qubits": [1]}, "purpose": "drive", "type": "drive"}, "d10": {"operates": {"qubits": [10]}, "purpose": "drive", "type": "drive"}, "d11": {"operates": {"qubits": [11]}, "purpose": "drive", "type": "drive"}, "d12": {"operates": {"qubits": [12]}, "purpose": "drive", "type": "drive"}, "d13": {"operates": {"qubits": [13]}, "purpose": "drive", "type": "drive"}, "d14": {"operates": {"qubits": [14]}, "purpose": "drive", "type": "drive"}, "d15": {"operates": {"qubits": [15]}, "purpose": "drive", "type": "drive"}, "d16": {"operates": {"qubits": [16]}, "purpose": "drive", "type": "drive"}, "d17": {"operates": {"qubits": [17]}, "purpose": "drive", "type": "drive"}, "d18": {"operates": {"qubits": [18]}, "purpose": "drive", "type": "drive"}, "d19": {"operates": {"qubits": [19]}, "purpose": "drive", "type": "drive"}, "d2": {"operates": {"qubits": [2]}, "purpose": "drive", "type": "drive"}, "d20": {"operates": {"qubits": [20]}, "purpose": "drive", "type": "drive"}, "d21": {"operates": {"qubits": [21]}, "purpose": "drive", "type": "drive"}, "d22": {"operates": {"qubits": [22]}, "purpose": "drive", "type": "drive"}, "d23": {"operates": {"qubits": [23]}, "purpose": "drive", "type": "drive"}, "d24": {"operates": {"qubits": [24]}, "purpose": "drive", "type": "drive"}, "d25": {"operates": {"qubits": [25]}, "purpose": "drive", "type": "drive"}, "d26": {"operates": {"qubits": [26]}, "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"}, "d7": {"operates": {"qubits": [7]}, "purpose": "drive", "type": "drive"}, "d8": {"operates": {"qubits": [8]}, "purpose": "drive", "type": "drive"}, "d9": {"operates": {"qubits": [9]}, "purpose": "drive", "type": "drive"}, "m0": {"operates": {"qubits": [0]}, "purpose": "measure", "type": "measure"}, "m1": {"operates": {"qubits": [1]}, "purpose": "measure", "type": "measure"}, "m10": {"operates": {"qubits": [10]}, "purpose": "measure", "type": "measure"}, "m11": {"operates": {"qubits": [11]}, "purpose": "measure", "type": "measure"}, "m12": {"operates": {"qubits": [12]}, "purpose": "measure", "type": "measure"}, "m13": {"operates": {"qubits": [13]}, "purpose": "measure", "type": "measure"}, "m14": {"operates": {"qubits": [14]}, "purpose": "measure", "type": "measure"}, "m15": {"operates": {"qubits": [15]}, "purpose": "measure", "type": "measure"}, "m16": {"operates": {"qubits": [16]}, "purpose": "measure", "type": "measure"}, "m17": {"operates": {"qubits": [17]}, "purpose": "measure", "type": "measure"}, "m18": {"operates": {"qubits": [18]}, "purpose": "measure", "type": "measure"}, "m19": {"operates": {"qubits": [19]}, "purpose": "measure", "type": "measure"}, "m2": {"operates": {"qubits": [2]}, "purpose": "measure", "type": "measure"}, "m20": {"operates": {"qubits": [20]}, "purpose": "measure", "type": "measure"}, "m21": {"operates": {"qubits": [21]}, "purpose": "measure", "type": "measure"}, "m22": {"operates": {"qubits": [22]}, "purpose": "measure", "type": "measure"}, "m23": {"operates": {"qubits": [23]}, "purpose": "measure", "type": "measure"}, "m24": {"operates": {"qubits": [24]}, "purpose": "measure", "type": "measure"}, "m25": {"operates": {"qubits": [25]}, "purpose": "measure", "type": "measure"}, "m26": {"operates": {"qubits": [26]}, "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"}, "m7": {"operates": {"qubits": [7]}, "purpose": "measure", "type": "measure"}, "m8": {"operates": {"qubits": [8]}, "purpose": "measure", "type": "measure"}, "m9": {"operates": {"qubits": [9]}, "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, 3]}, "purpose": "cross-resonance", "type": "control"}, "u11": {"operates": {"qubits": [5, 8]}, "purpose": "cross-resonance", "type": "control"}, "u12": {"operates": {"qubits": [6, 7]}, "purpose": "cross-resonance", "type": "control"}, "u13": {"operates": {"qubits": [7, 4]}, "purpose": "cross-resonance", "type": "control"}, "u14": {"operates": {"qubits": [7, 6]}, "purpose": "cross-resonance", "type": "control"}, "u15": {"operates": {"qubits": [7, 10]}, "purpose": "cross-resonance", "type": "control"}, "u16": {"operates": {"qubits": [8, 5]}, "purpose": "cross-resonance", "type": "control"}, "u17": {"operates": {"qubits": [8, 9]}, "purpose": "cross-resonance", "type": "control"}, "u18": {"operates": {"qubits": [8, 11]}, "purpose": "cross-resonance", "type": "control"}, "u19": {"operates": {"qubits": [9, 8]}, "purpose": "cross-resonance", "type": "control"}, "u2": {"operates": {"qubits": [1, 2]}, "purpose": "cross-resonance", "type": "control"}, "u20": {"operates": {"qubits": [10, 7]}, "purpose": "cross-resonance", "type": "control"}, "u21": {"operates": {"qubits": [10, 12]}, "purpose": "cross-resonance", "type": "control"}, "u22": {"operates": {"qubits": [11, 8]}, "purpose": "cross-resonance", "type": "control"}, "u23": {"operates": {"qubits": [11, 14]}, "purpose": "cross-resonance", "type": "control"}, "u24": {"operates": {"qubits": [12, 10]}, "purpose": "cross-resonance", "type": "control"}, "u25": {"operates": {"qubits": [12, 13]}, "purpose": "cross-resonance", "type": "control"}, "u26": {"operates": {"qubits": [12, 15]}, "purpose": "cross-resonance", "type": "control"}, "u27": {"operates": {"qubits": [13, 12]}, "purpose": "cross-resonance", "type": "control"}, "u28": {"operates": {"qubits": [13, 14]}, "purpose": "cross-resonance", "type": "control"}, "u29": {"operates": {"qubits": [14, 11]}, "purpose": "cross-resonance", "type": "control"}, "u3": {"operates": {"qubits": [1, 4]}, "purpose": "cross-resonance", "type": "control"}, "u30": {"operates": {"qubits": [14, 13]}, "purpose": "cross-resonance", "type": "control"}, "u31": {"operates": {"qubits": [14, 16]}, "purpose": "cross-resonance", "type": "control"}, "u32": {"operates": {"qubits": [15, 12]}, "purpose": "cross-resonance", "type": "control"}, "u33": {"operates": {"qubits": [15, 18]}, "purpose": "cross-resonance", "type": "control"}, "u34": {"operates": {"qubits": [16, 14]}, "purpose": "cross-resonance", "type": "control"}, "u35": {"operates": {"qubits": [16, 19]}, "purpose": "cross-resonance", "type": "control"}, "u36": {"operates": {"qubits": [17, 18]}, "purpose": "cross-resonance", "type": "control"}, "u37": {"operates": {"qubits": [18, 15]}, "purpose": "cross-resonance", "type": "control"}, "u38": {"operates": {"qubits": [18, 17]}, "purpose": "cross-resonance", "type": "control"}, "u39": {"operates": {"qubits": [18, 21]}, "purpose": "cross-resonance", "type": "control"}, "u4": {"operates": {"qubits": [2, 1]}, "purpose": "cross-resonance", "type": "control"}, "u40": {"operates": {"qubits": [19, 16]}, "purpose": "cross-resonance", "type": "control"}, "u41": {"operates": {"qubits": [19, 20]}, "purpose": "cross-resonance", "type": "control"}, "u42": {"operates": {"qubits": [19, 22]}, "purpose": "cross-resonance", "type": "control"}, "u43": {"operates": {"qubits": [20, 19]}, "purpose": "cross-resonance", "type": "control"}, "u44": {"operates": {"qubits": [21, 18]}, "purpose": "cross-resonance", "type": "control"}, "u45": {"operates": {"qubits": [21, 23]}, "purpose": "cross-resonance", "type": "control"}, "u46": {"operates": {"qubits": [22, 19]}, "purpose": "cross-resonance", "type": "control"}, "u47": {"operates": {"qubits": [22, 25]}, "purpose": "cross-resonance", "type": "control"}, "u48": {"operates": {"qubits": [23, 21]}, "purpose": "cross-resonance", "type": "control"}, "u49": {"operates": {"qubits": [23, 24]}, "purpose": "cross-resonance", "type": "control"}, "u5": {"operates": {"qubits": [2, 3]}, "purpose": "cross-resonance", "type": "control"}, "u50": {"operates": {"qubits": [24, 23]}, "purpose": "cross-resonance", "type": "control"}, "u51": {"operates": {"qubits": [24, 25]}, "purpose": "cross-resonance", "type": "control"}, "u52": {"operates": {"qubits": [25, 22]}, "purpose": "cross-resonance", "type": "control"}, "u53": {"operates": {"qubits": [25, 24]}, "purpose": "cross-resonance", "type": "control"}, "u54": {"operates": {"qubits": [25, 26]}, "purpose": "cross-resonance", "type": "control"}, "u55": {"operates": {"qubits": [26, 25]}, "purpose": "cross-resonance", "type": "control"}, "u6": {"operates": {"qubits": [3, 2]}, "purpose": "cross-resonance", "type": "control"}, "u7": {"operates": {"qubits": [3, 5]}, "purpose": "cross-resonance", "type": "control"}, "u8": {"operates": {"qubits": [4, 1]}, "purpose": "cross-resonance", "type": "control"}, "u9": {"operates": {"qubits": [4, 7]}, "purpose": "cross-resonance", "type": "control"}}}
|