qiskit 1.4.1__cp39-abi3-win_amd64.whl → 2.0.0rc1__cp39-abi3-win_amd64.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 +2 -5
- qiskit/_accelerate.pyd +0 -0
- qiskit/circuit/__init__.py +24 -5
- 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 +248 -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 +34 -5
- 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/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 +2 -6
- 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 +13 -60
- 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 +4 -0
- qiskit/circuit/quantumcircuit.py +881 -555
- 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/compiler/__init__.py +1 -7
- qiskit/compiler/transpiler.py +38 -196
- qiskit/converters/circuit_to_dag.py +4 -2
- 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 +5 -5
- 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 +2 -80
- 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 +141 -19
- qiskit/qpy/binary_io/__init__.py +0 -1
- qiskit/qpy/binary_io/circuits.py +91 -116
- qiskit/qpy/binary_io/schedules.py +61 -388
- qiskit/qpy/binary_io/value.py +154 -28
- 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 -10
- qiskit/result/result.py +28 -126
- 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 +2 -40
- qiskit/transpiler/passes/basis/basis_translator.py +4 -3
- 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 +4 -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 +1 -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 +1 -0
- 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 +30 -2
- qiskit/transpiler/passes/scheduling/padding/dynamical_decoupling.py +20 -58
- qiskit/transpiler/passes/scheduling/padding/pad_delay.py +11 -3
- 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 +127 -59
- 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 +101 -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 +67 -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/dag_visualization.py +2 -1
- qiskit/visualization/gate_map.py +39 -154
- qiskit/visualization/pass_manager_visualization.py +6 -2
- qiskit/visualization/state_visualization.py +6 -0
- qiskit/visualization/timeline/core.py +18 -12
- qiskit/visualization/timeline/interface.py +19 -18
- {qiskit-1.4.1.dist-info → qiskit-2.0.0rc1.dist-info}/METADATA +2 -2
- {qiskit-1.4.1.dist-info → qiskit-2.0.0rc1.dist-info}/RECORD +297 -444
- {qiskit-1.4.1.dist-info → qiskit-2.0.0rc1.dist-info}/WHEEL +1 -1
- {qiskit-1.4.1.dist-info → qiskit-2.0.0rc1.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.0rc1.dist-info}/LICENSE.txt +0 -0
- {qiskit-1.4.1.dist-info → qiskit-2.0.0rc1.dist-info}/top_level.txt +0 -0
@@ -1 +0,0 @@
|
|
1
|
-
{"qubit_freq_est": [5.260483791030155, 5.170333454748703, 5.274436548447222, 5.026646125967889, 5.177223413479857, 5.29284383826766, 5.1286976963519475], "meas_freq_est": [7.192252553, 7.128685982, 7.375559376000001, 7.250891115000001, 7.191408487, 7.294383799, 7.192597760000001], "buffer": 0, "pulse_library": [{"name": "QId_d0", "samples": [[0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0]]}, {"name": "QId_d1", "samples": [[0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0]]}, {"name": "QId_d2", "samples": [[0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0]]}, {"name": "QId_d3", "samples": [[0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0]]}, {"name": "QId_d4", "samples": [[0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0]]}, {"name": "QId_d5", "samples": [[0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0]]}, {"name": "QId_d6", "samples": [[0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0]]}], "cmd_def": [{"name": "cx", "qubits": [0, 1], "sequence": [{"name": "fc", "t0": 0, "ch": "d0", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d0", "label": "Ym_d0", "pulse_shape": "drag", "parameters": {"amp": [-2.5357141060492343e-17, -0.13803784665721291], "beta": -0.3021255920291164, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 560, "ch": "d0", "label": "Xp_d0", "pulse_shape": "drag", "parameters": {"amp": [0.13803784665721291, 0.0], "beta": -0.3021255920291164, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "X90p_d1", "pulse_shape": "drag", "parameters": {"amp": [0.0806155063849806, 0.0012138954378855442], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d1", "label": "CR90p_d1_u0", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.08863622524623377, 0.007269508342975345], "duration": 400, "sigma": 64, "width": 144}}, {"name": "parametric_pulse", "t0": 720, "ch": "d1", "label": "CR90m_d1_u0", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.08863622524623377, -0.007269508342975334], "duration": 400, "sigma": 64, "width": 144}}, {"name": "parametric_pulse", "t0": 160, "ch": "u0", "label": "CR90p_u0", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.08593778273963346, 0.33714981558492746], "duration": 400, "sigma": 64, "width": 144}}, {"name": "parametric_pulse", "t0": 720, "ch": "u0", "label": "CR90m_u0", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.0859377827396335, -0.33714981558492746], "duration": 400, "sigma": 64, "width": 144}}, {"name": "fc", "t0": 0, "ch": "u1", "phase": 1.5707963267948966}]}, {"name": "cx", "qubits": [1, 0], "sequence": [{"name": "fc", "t0": 0, "ch": "d0", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d0", "label": "X90p_d0", "pulse_shape": "drag", "parameters": {"amp": [0.06898810104354877, -4.232956317542851e-05], "beta": -0.3811344922255435, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 560, "ch": "d0", "label": "Xp_d0", "pulse_shape": "drag", "parameters": {"amp": [0.13803784665721291, 0.0], "beta": -0.3021255920291164, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 1120, "ch": "d0", "label": "Y90m_d0", "pulse_shape": "drag", "parameters": {"amp": [0.00010082089490069105, -0.0689880403587025], "beta": -0.3811344922255435, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "d1", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "Y90p_d1", "pulse_shape": "drag", "parameters": {"amp": [-0.0010082199830323095, 0.08061834099202726], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d1", "label": "CR90p_d1_u0", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.08863622524623377, 0.007269508342975345], "duration": 400, "sigma": 64, "width": 144}}, {"name": "parametric_pulse", "t0": 720, "ch": "d1", "label": "CR90m_d1_u0", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.08863622524623377, -0.007269508342975334], "duration": 400, "sigma": 64, "width": 144}}, {"name": "fc", "t0": 1120, "ch": "d1", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 1120, "ch": "d1", "label": "X90p_d1", "pulse_shape": "drag", "parameters": {"amp": [0.0806155063849806, 0.0012138954378855442], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u0", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 160, "ch": "u0", "label": "CR90p_u0", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.08593778273963346, 0.33714981558492746], "duration": 400, "sigma": 64, "width": 144}}, {"name": "parametric_pulse", "t0": 720, "ch": "u0", "label": "CR90m_u0", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.0859377827396335, -0.33714981558492746], "duration": 400, "sigma": 64, "width": 144}}, {"name": "fc", "t0": 1120, "ch": "u0", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u1", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u4", "phase": -3.141592653589793}, {"name": "fc", "t0": 1120, "ch": "u4", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u5", "phase": -3.141592653589793}, {"name": "fc", "t0": 1120, "ch": "u5", "phase": -1.5707963267948966}]}, {"name": "cx", "qubits": [1, 2], "sequence": [{"name": "fc", "t0": 0, "ch": "d1", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "Y90p_d1", "pulse_shape": "drag", "parameters": {"amp": [-0.0010082199830323095, 0.08061834099202726], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d1", "label": "CR90p_d1_u4", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.04813526109776704, 0.0014942671618965331], "duration": 720, "sigma": 64, "width": 464}}, {"name": "parametric_pulse", "t0": 1040, "ch": "d1", "label": "CR90m_d1_u4", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.04813526109776704, -0.0014942671618965273], "duration": 720, "sigma": 64, "width": 464}}, {"name": "fc", "t0": 1760, "ch": "d1", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 1760, "ch": "d1", "label": "X90p_d1", "pulse_shape": "drag", "parameters": {"amp": [0.0806155063849806, 0.0012138954378855442], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "d2", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d2", "label": "X90p_d2", "pulse_shape": "drag", "parameters": {"amp": [0.10371910088292566, 0.0011326190673325745], "beta": -0.6831909328371424, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 880, "ch": "d2", "label": "Xp_d2", "pulse_shape": "drag", "parameters": {"amp": [0.20737902363209756, 0.0], "beta": -0.6282018967411466, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 1760, "ch": "d2", "label": "Y90m_d2", "pulse_shape": "drag", "parameters": {"amp": [0.0009733835721556201, -0.10372071749817223], "beta": -0.6831909328371424, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u0", "phase": -3.141592653589793}, {"name": "fc", "t0": 1760, "ch": "u0", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u2", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u4", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 160, "ch": "u4", "label": "CR90p_u4", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.05337184393520376, 0.13019185069080774], "duration": 720, "sigma": 64, "width": 464}}, {"name": "parametric_pulse", "t0": 1040, "ch": "u4", "label": "CR90m_u4", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.05337184393520374, -0.13019185069080774], "duration": 720, "sigma": 64, "width": 464}}, {"name": "fc", "t0": 1760, "ch": "u4", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u5", "phase": -3.141592653589793}, {"name": "fc", "t0": 1760, "ch": "u5", "phase": -1.5707963267948966}]}, {"name": "cx", "qubits": [1, 3], "sequence": [{"name": "fc", "t0": 0, "ch": "d1", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "Ym_d1", "pulse_shape": "drag", "parameters": {"amp": [-2.955481868666583e-17, -0.1608889393374103], "beta": -1.7557151694395088, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 608, "ch": "d1", "label": "Xp_d1", "pulse_shape": "drag", "parameters": {"amp": [0.1608889393374103, 0.0], "beta": -1.7557151694395088, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 0, "ch": "d3", "label": "X90p_d3", "pulse_shape": "drag", "parameters": {"amp": [0.09807275176102961, 0.0011291345929712094], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d3", "label": "CR90p_d3_u3", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.0814293112152542, 0.004206764245458347], "duration": 448, "sigma": 64, "width": 192}}, {"name": "parametric_pulse", "t0": 768, "ch": "d3", "label": "CR90m_d3_u3", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.0814293112152542, -0.004206764245458338], "duration": 448, "sigma": 64, "width": 192}}, {"name": "fc", "t0": 0, "ch": "u0", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 160, "ch": "u3", "label": "CR90p_u3", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.19155169360505847, 0.19024318448958547], "duration": 448, "sigma": 64, "width": 192}}, {"name": "parametric_pulse", "t0": 768, "ch": "u3", "label": "CR90m_u3", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.19155169360505844, -0.1902431844895855], "duration": 448, "sigma": 64, "width": 192}}, {"name": "fc", "t0": 0, "ch": "u4", "phase": 1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u5", "phase": 1.5707963267948966}]}, {"name": "cx", "qubits": [2, 1], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "X90p_d1", "pulse_shape": "drag", "parameters": {"amp": [0.0806155063849806, 0.0012138954378855442], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d1", "label": "CR90p_d1_u4", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.04813526109776704, 0.0014942671618965331], "duration": 720, "sigma": 64, "width": 464}}, {"name": "parametric_pulse", "t0": 1040, "ch": "d1", "label": "CR90m_d1_u4", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.04813526109776704, -0.0014942671618965273], "duration": 720, "sigma": 64, "width": 464}}, {"name": "fc", "t0": 0, "ch": "d2", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d2", "label": "Ym_d2", "pulse_shape": "drag", "parameters": {"amp": [-3.809490862520274e-17, -0.20737902363209756], "beta": -0.6282018967411466, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 880, "ch": "d2", "label": "Xp_d2", "pulse_shape": "drag", "parameters": {"amp": [0.20737902363209756, 0.0], "beta": -0.6282018967411466, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u2", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 160, "ch": "u4", "label": "CR90p_u4", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.05337184393520376, 0.13019185069080774], "duration": 720, "sigma": 64, "width": 464}}, {"name": "parametric_pulse", "t0": 1040, "ch": "u4", "label": "CR90m_u4", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.05337184393520374, -0.13019185069080774], "duration": 720, "sigma": 64, "width": 464}}]}, {"name": "cx", "qubits": [3, 1], "sequence": [{"name": "fc", "t0": 0, "ch": "d1", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "X90p_d1", "pulse_shape": "drag", "parameters": {"amp": [0.0806155063849806, 0.0012138954378855442], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 608, "ch": "d1", "label": "Xp_d1", "pulse_shape": "drag", "parameters": {"amp": [0.1608889393374103, 0.0], "beta": -1.7557151694395088, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 1216, "ch": "d1", "label": "Y90m_d1", "pulse_shape": "drag", "parameters": {"amp": [0.0010082199830322995, -0.08061834099202726], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "d3", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 0, "ch": "d3", "label": "Y90p_d3", "pulse_shape": "drag", "parameters": {"amp": [-0.0013194230301066731, 0.09807037629058638], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d3", "label": "CR90p_d3_u3", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.0814293112152542, 0.004206764245458347], "duration": 448, "sigma": 64, "width": 192}}, {"name": "parametric_pulse", "t0": 768, "ch": "d3", "label": "CR90m_d3_u3", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.0814293112152542, -0.004206764245458338], "duration": 448, "sigma": 64, "width": 192}}, {"name": "fc", "t0": 1216, "ch": "d3", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 1216, "ch": "d3", "label": "X90p_d3", "pulse_shape": "drag", "parameters": {"amp": [0.09807275176102961, 0.0011291345929712094], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u0", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u3", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 160, "ch": "u3", "label": "CR90p_u3", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.19155169360505847, 0.19024318448958547], "duration": 448, "sigma": 64, "width": 192}}, {"name": "parametric_pulse", "t0": 768, "ch": "u3", "label": "CR90m_u3", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.19155169360505844, -0.1902431844895855], "duration": 448, "sigma": 64, "width": 192}}, {"name": "fc", "t0": 1216, "ch": "u3", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u4", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u5", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u8", "phase": -3.141592653589793}, {"name": "fc", "t0": 1216, "ch": "u8", "phase": -1.5707963267948966}]}, {"name": "cx", "qubits": [3, 5], "sequence": [{"name": "fc", "t0": 0, "ch": "d3", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 0, "ch": "d3", "label": "Y90p_d3", "pulse_shape": "drag", "parameters": {"amp": [-0.0013194230301066731, 0.09807037629058638], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d3", "label": "CR90p_d3_u8", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.11111466334214123, 0.0005635802966127636], "duration": 368, "sigma": 64, "width": 112}}, {"name": "parametric_pulse", "t0": 688, "ch": "d3", "label": "CR90m_d3_u8", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.11111466334214123, -0.0005635802966127499], "duration": 368, "sigma": 64, "width": 112}}, {"name": "fc", "t0": 1056, "ch": "d3", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 1056, "ch": "d3", "label": "X90p_d3", "pulse_shape": "drag", "parameters": {"amp": [0.09807275176102961, 0.0011291345929712094], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "d5", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "X90p_d5", "pulse_shape": "drag", "parameters": {"amp": [0.09894056020487856, -0.00034903572521790475], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 528, "ch": "d5", "label": "Xp_d5", "pulse_shape": "drag", "parameters": {"amp": [0.19790885510608502, 0.0], "beta": 0.6552557409875844, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 1056, "ch": "d5", "label": "Y90m_d5", "pulse_shape": "drag", "parameters": {"amp": [-0.0002671526339833292, -0.09894081518293062], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u11", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u3", "phase": -3.141592653589793}, {"name": "fc", "t0": 1056, "ch": "u3", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u6", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u7", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u8", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 160, "ch": "u8", "label": "CR90p_u8", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.5313550994725853, 0.36498968408998445], "duration": 368, "sigma": 64, "width": 112}}, {"name": "parametric_pulse", "t0": 688, "ch": "u8", "label": "CR90m_u8", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.5313550994725853, -0.3649896840899845], "duration": 368, "sigma": 64, "width": 112}}, {"name": "fc", "t0": 1056, "ch": "u8", "phase": -1.5707963267948966}]}, {"name": "cx", "qubits": [4, 5], "sequence": [{"name": "fc", "t0": 0, "ch": "d4", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 0, "ch": "d4", "label": "Y90p_d4", "pulse_shape": "drag", "parameters": {"amp": [-0.00043271179908717144, 0.10175479169852428], "beta": -1.0507173387200506, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d4", "label": "CR90p_d4_u9", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.07950574144659196, 0.002411989630329751], "duration": 464, "sigma": 64, "width": 208}}, {"name": "parametric_pulse", "t0": 784, "ch": "d4", "label": "CR90m_d4_u9", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.07950574144659196, -0.0024119896303297413], "duration": 464, "sigma": 64, "width": 208}}, {"name": "fc", "t0": 1248, "ch": "d4", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 1248, "ch": "d4", "label": "X90p_d4", "pulse_shape": "drag", "parameters": {"amp": [0.10175569289899734, 6.193348105168277e-05], "beta": -1.0507173387200506, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "d5", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "X90p_d5", "pulse_shape": "drag", "parameters": {"amp": [0.09894056020487856, -0.00034903572521790475], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 624, "ch": "d5", "label": "Xp_d5", "pulse_shape": "drag", "parameters": {"amp": [0.19790885510608502, 0.0], "beta": 0.6552557409875844, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 1248, "ch": "d5", "label": "Y90m_d5", "pulse_shape": "drag", "parameters": {"amp": [-0.0002671526339833292, -0.09894081518293062], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u11", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u6", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u7", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u9", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 160, "ch": "u9", "label": "CR90p_u9", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.22793496420829948, 0.17308618078756108], "duration": 464, "sigma": 64, "width": 208}}, {"name": "parametric_pulse", "t0": 784, "ch": "u9", "label": "CR90m_u9", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.22793496420829945, -0.1730861807875611], "duration": 464, "sigma": 64, "width": 208}}, {"name": "fc", "t0": 1248, "ch": "u9", "phase": -1.5707963267948966}]}, {"name": "cx", "qubits": [5, 3], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d3", "label": "X90p_d3", "pulse_shape": "drag", "parameters": {"amp": [0.09807275176102961, 0.0011291345929712094], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d3", "label": "CR90p_d3_u8", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.11111466334214123, 0.0005635802966127636], "duration": 368, "sigma": 64, "width": 112}}, {"name": "parametric_pulse", "t0": 688, "ch": "d3", "label": "CR90m_d3_u8", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.11111466334214123, -0.0005635802966127499], "duration": 368, "sigma": 64, "width": 112}}, {"name": "fc", "t0": 0, "ch": "d5", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "Ym_d5", "pulse_shape": "drag", "parameters": {"amp": [-3.635526688928765e-17, -0.19790885510608502], "beta": 0.6552557409875844, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 528, "ch": "d5", "label": "Xp_d5", "pulse_shape": "drag", "parameters": {"amp": [0.19790885510608502, 0.0], "beta": 0.6552557409875844, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u11", "phase": 1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u6", "phase": 1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u7", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 160, "ch": "u8", "label": "CR90p_u8", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.5313550994725853, 0.36498968408998445], "duration": 368, "sigma": 64, "width": 112}}, {"name": "parametric_pulse", "t0": 688, "ch": "u8", "label": "CR90m_u8", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.5313550994725853, -0.3649896840899845], "duration": 368, "sigma": 64, "width": 112}}]}, {"name": "cx", "qubits": [5, 4], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d4", "label": "X90p_d4", "pulse_shape": "drag", "parameters": {"amp": [0.10175569289899734, 6.193348105168277e-05], "beta": -1.0507173387200506, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d4", "label": "CR90p_d4_u9", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.07950574144659196, 0.002411989630329751], "duration": 464, "sigma": 64, "width": 208}}, {"name": "parametric_pulse", "t0": 784, "ch": "d4", "label": "CR90m_d4_u9", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.07950574144659196, -0.0024119896303297413], "duration": 464, "sigma": 64, "width": 208}}, {"name": "fc", "t0": 0, "ch": "d5", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "Ym_d5", "pulse_shape": "drag", "parameters": {"amp": [-3.635526688928765e-17, -0.19790885510608502], "beta": 0.6552557409875844, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 624, "ch": "d5", "label": "Xp_d5", "pulse_shape": "drag", "parameters": {"amp": [0.19790885510608502, 0.0], "beta": 0.6552557409875844, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u11", "phase": 1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u6", "phase": 1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u7", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 160, "ch": "u9", "label": "CR90p_u9", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.22793496420829948, 0.17308618078756108], "duration": 464, "sigma": 64, "width": 208}}, {"name": "parametric_pulse", "t0": 784, "ch": "u9", "label": "CR90m_u9", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.22793496420829945, -0.1730861807875611], "duration": 464, "sigma": 64, "width": 208}}]}, {"name": "cx", "qubits": [5, 6], "sequence": [{"name": "fc", "t0": 0, "ch": "d5", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "Y90p_d5", "pulse_shape": "drag", "parameters": {"amp": [0.00026715263398331706, 0.09894081518293062], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d5", "label": "CR90p_d5_u11", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.06470860535696249, -0.00011874259770551375], "duration": 528, "sigma": 64, "width": 272}}, {"name": "parametric_pulse", "t0": 848, "ch": "d5", "label": "CR90m_d5_u11", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.06470860535696249, 0.00011874259770552168], "duration": 528, "sigma": 64, "width": 272}}, {"name": "fc", "t0": 1376, "ch": "d5", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 1376, "ch": "d5", "label": "X90p_d5", "pulse_shape": "drag", "parameters": {"amp": [0.09894056020487856, -0.00034903572521790475], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "d6", "phase": -1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d6", "label": "X90p_d6", "pulse_shape": "drag", "parameters": {"amp": [0.09774839859617002, 0.0014181980154262224], "beta": -1.2239831108192651, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 688, "ch": "d6", "label": "Xp_d6", "pulse_shape": "drag", "parameters": {"amp": [0.19570454467079734, 0.0], "beta": -1.11157592503581, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 1376, "ch": "d6", "label": "Y90m_d6", "pulse_shape": "drag", "parameters": {"amp": [0.0013957949176611887, -0.09774872106720642], "beta": -1.2239831108192651, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u10", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u11", "phase": -3.141592653589793}, {"name": "parametric_pulse", "t0": 160, "ch": "u11", "label": "CR90p_u11", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.7282535375880578, -0.018305625179417133], "duration": 528, "sigma": 64, "width": 272}}, {"name": "parametric_pulse", "t0": 848, "ch": "u11", "label": "CR90m_u11", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.7282535375880578, 0.018305625179417223], "duration": 528, "sigma": 64, "width": 272}}, {"name": "fc", "t0": 1376, "ch": "u11", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u6", "phase": -3.141592653589793}, {"name": "fc", "t0": 1376, "ch": "u6", "phase": -1.5707963267948966}, {"name": "fc", "t0": 0, "ch": "u7", "phase": -3.141592653589793}, {"name": "fc", "t0": 1376, "ch": "u7", "phase": -1.5707963267948966}]}, {"name": "cx", "qubits": [6, 5], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "X90p_d5", "pulse_shape": "drag", "parameters": {"amp": [0.09894056020487856, -0.00034903572521790475], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 160, "ch": "d5", "label": "CR90p_d5_u11", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.06470860535696249, -0.00011874259770551375], "duration": 528, "sigma": 64, "width": 272}}, {"name": "parametric_pulse", "t0": 848, "ch": "d5", "label": "CR90m_d5_u11", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.06470860535696249, 0.00011874259770552168], "duration": 528, "sigma": 64, "width": 272}}, {"name": "fc", "t0": 0, "ch": "d6", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 0, "ch": "d6", "label": "Ym_d6", "pulse_shape": "drag", "parameters": {"amp": [-3.595034163145232e-17, -0.19570454467079734], "beta": -1.11157592503581, "duration": 160, "sigma": 40}}, {"name": "parametric_pulse", "t0": 688, "ch": "d6", "label": "Xp_d6", "pulse_shape": "drag", "parameters": {"amp": [0.19570454467079734, 0.0], "beta": -1.11157592503581, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 0, "ch": "u10", "phase": 1.5707963267948966}, {"name": "parametric_pulse", "t0": 160, "ch": "u11", "label": "CR90p_u11", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.7282535375880578, -0.018305625179417133], "duration": 528, "sigma": 64, "width": 272}}, {"name": "parametric_pulse", "t0": 848, "ch": "u11", "label": "CR90m_u11", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.7282535375880578, 0.018305625179417223], "duration": 528, "sigma": 64, "width": 272}}]}, {"name": "id", "qubits": [0], "sequence": [{"name": "QId_d0", "t0": 0, "ch": "d0"}]}, {"name": "id", "qubits": [1], "sequence": [{"name": "QId_d1", "t0": 0, "ch": "d1"}]}, {"name": "id", "qubits": [2], "sequence": [{"name": "QId_d2", "t0": 0, "ch": "d2"}]}, {"name": "id", "qubits": [3], "sequence": [{"name": "QId_d3", "t0": 0, "ch": "d3"}]}, {"name": "id", "qubits": [4], "sequence": [{"name": "QId_d4", "t0": 0, "ch": "d4"}]}, {"name": "id", "qubits": [5], "sequence": [{"name": "QId_d5", "t0": 0, "ch": "d5"}]}, {"name": "id", "qubits": [6], "sequence": [{"name": "QId_d6", "t0": 0, "ch": "d6"}]}, {"name": "measure", "qubits": [0], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "m0", "label": "M_m0", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.35504283669282355, 0.18424056044506887], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m0", "duration": 1664}, {"name": "acquire", "t0": 0, "duration": 22400, "qubits": [0, 1, 2, 3, 4, 5, 6], "memory_slot": [0, 1, 2, 3, 4, 5, 6]}]}, {"name": "measure", "qubits": [0, 1, 2, 3, 4, 5, 6], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "m0", "label": "M_m0", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.35504283669282355, 0.18424056044506887], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m0", "duration": 1664}, {"name": "parametric_pulse", "t0": 0, "ch": "m1", "label": "M_m1", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.16284250027120173, 0.3653523232517123], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m1", "duration": 1664}, {"name": "parametric_pulse", "t0": 0, "ch": "m2", "label": "M_m2", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.26715779530515044, -0.32407825043913596], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m2", "duration": 1664}, {"name": "parametric_pulse", "t0": 0, "ch": "m3", "label": "M_m3", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.07016762258754601, 0.4140972165330403], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m3", "duration": 1664}, {"name": "parametric_pulse", "t0": 0, "ch": "m4", "label": "M_m4", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.1990345002226279, 0.2878980161813011], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m4", "duration": 1664}, {"name": "parametric_pulse", "t0": 0, "ch": "m5", "label": "M_m5", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.022634129553006123, 0.3191985215808146], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m5", "duration": 1664}, {"name": "parametric_pulse", "t0": 0, "ch": "m6", "label": "M_m6", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.14677530588624732, -0.3720981182188356], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m6", "duration": 1664}, {"name": "acquire", "t0": 0, "duration": 22400, "qubits": [0, 1, 2, 3, 4, 5, 6], "memory_slot": [0, 1, 2, 3, 4, 5, 6]}]}, {"name": "measure", "qubits": [1], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "m1", "label": "M_m1", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.16284250027120173, 0.3653523232517123], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m1", "duration": 1664}, {"name": "acquire", "t0": 0, "duration": 22400, "qubits": [0, 1, 2, 3, 4, 5, 6], "memory_slot": [0, 1, 2, 3, 4, 5, 6]}]}, {"name": "measure", "qubits": [2], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "m2", "label": "M_m2", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.26715779530515044, -0.32407825043913596], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m2", "duration": 1664}, {"name": "acquire", "t0": 0, "duration": 22400, "qubits": [0, 1, 2, 3, 4, 5, 6], "memory_slot": [0, 1, 2, 3, 4, 5, 6]}]}, {"name": "measure", "qubits": [3], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "m3", "label": "M_m3", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.07016762258754601, 0.4140972165330403], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m3", "duration": 1664}, {"name": "acquire", "t0": 0, "duration": 22400, "qubits": [0, 1, 2, 3, 4, 5, 6], "memory_slot": [0, 1, 2, 3, 4, 5, 6]}]}, {"name": "measure", "qubits": [4], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "m4", "label": "M_m4", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.1990345002226279, 0.2878980161813011], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m4", "duration": 1664}, {"name": "acquire", "t0": 0, "duration": 22400, "qubits": [0, 1, 2, 3, 4, 5, 6], "memory_slot": [0, 1, 2, 3, 4, 5, 6]}]}, {"name": "measure", "qubits": [5], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "m5", "label": "M_m5", "pulse_shape": "gaussian_square", "parameters": {"amp": [-0.022634129553006123, 0.3191985215808146], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m5", "duration": 1664}, {"name": "acquire", "t0": 0, "duration": 22400, "qubits": [0, 1, 2, 3, 4, 5, 6], "memory_slot": [0, 1, 2, 3, 4, 5, 6]}]}, {"name": "measure", "qubits": [6], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "m6", "label": "M_m6", "pulse_shape": "gaussian_square", "parameters": {"amp": [0.14677530588624732, -0.3720981182188356], "duration": 22400, "sigma": 64, "width": 22144}}, {"name": "delay", "t0": 22400, "ch": "m6", "duration": 1664}, {"name": "acquire", "t0": 0, "duration": 22400, "qubits": [0, 1, 2, 3, 4, 5, 6], "memory_slot": [0, 1, 2, 3, 4, 5, 6]}]}, {"name": "rz", "qubits": [0], "sequence": [{"name": "fc", "t0": 0, "ch": "d0", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u1", "phase": "-(P0)"}]}, {"name": "rz", "qubits": [1], "sequence": [{"name": "fc", "t0": 0, "ch": "d1", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u0", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u4", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u5", "phase": "-(P0)"}]}, {"name": "rz", "qubits": [2], "sequence": [{"name": "fc", "t0": 0, "ch": "d2", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u2", "phase": "-(P0)"}]}, {"name": "rz", "qubits": [3], "sequence": [{"name": "fc", "t0": 0, "ch": "d3", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u3", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u8", "phase": "-(P0)"}]}, {"name": "rz", "qubits": [4], "sequence": [{"name": "fc", "t0": 0, "ch": "d4", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u9", "phase": "-(P0)"}]}, {"name": "rz", "qubits": [5], "sequence": [{"name": "fc", "t0": 0, "ch": "d5", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u11", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u6", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u7", "phase": "-(P0)"}]}, {"name": "rz", "qubits": [6], "sequence": [{"name": "fc", "t0": 0, "ch": "d6", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u10", "phase": "-(P0)"}]}, {"name": "sx", "qubits": [0], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d0", "label": "X90p_d0", "pulse_shape": "drag", "parameters": {"amp": [0.06898810104354877, -4.232956317542851e-05], "beta": -0.3811344922255435, "duration": 160, "sigma": 40}}]}, {"name": "sx", "qubits": [1], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "X90p_d1", "pulse_shape": "drag", "parameters": {"amp": [0.0806155063849806, 0.0012138954378855442], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}]}, {"name": "sx", "qubits": [2], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d2", "label": "X90p_d2", "pulse_shape": "drag", "parameters": {"amp": [0.10371910088292566, 0.0011326190673325745], "beta": -0.6831909328371424, "duration": 160, "sigma": 40}}]}, {"name": "sx", "qubits": [3], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d3", "label": "X90p_d3", "pulse_shape": "drag", "parameters": {"amp": [0.09807275176102961, 0.0011291345929712094], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}]}, {"name": "sx", "qubits": [4], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d4", "label": "X90p_d4", "pulse_shape": "drag", "parameters": {"amp": [0.10175569289899734, 6.193348105168277e-05], "beta": -1.0507173387200506, "duration": 160, "sigma": 40}}]}, {"name": "sx", "qubits": [5], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "X90p_d5", "pulse_shape": "drag", "parameters": {"amp": [0.09894056020487856, -0.00034903572521790475], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}]}, {"name": "sx", "qubits": [6], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d6", "label": "X90p_d6", "pulse_shape": "drag", "parameters": {"amp": [0.09774839859617002, 0.0014181980154262224], "beta": -1.2239831108192651, "duration": 160, "sigma": 40}}]}, {"name": "u1", "qubits": [0], "sequence": [{"name": "fc", "t0": 0, "ch": "d0", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u1", "phase": "-(P0)"}]}, {"name": "u1", "qubits": [1], "sequence": [{"name": "fc", "t0": 0, "ch": "d1", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u0", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u4", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u5", "phase": "-(P0)"}]}, {"name": "u1", "qubits": [2], "sequence": [{"name": "fc", "t0": 0, "ch": "d2", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u2", "phase": "-(P0)"}]}, {"name": "u1", "qubits": [3], "sequence": [{"name": "fc", "t0": 0, "ch": "d3", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u3", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u8", "phase": "-(P0)"}]}, {"name": "u1", "qubits": [4], "sequence": [{"name": "fc", "t0": 0, "ch": "d4", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u9", "phase": "-(P0)"}]}, {"name": "u1", "qubits": [5], "sequence": [{"name": "fc", "t0": 0, "ch": "d5", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u11", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u6", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u7", "phase": "-(P0)"}]}, {"name": "u1", "qubits": [6], "sequence": [{"name": "fc", "t0": 0, "ch": "d6", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u10", "phase": "-(P0)"}]}, {"name": "u2", "qubits": [0], "sequence": [{"name": "fc", "t0": 0, "ch": "d0", "phase": "-(P1)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d0", "label": "Y90p_d0", "pulse_shape": "drag", "parameters": {"amp": [-0.00010082089490068418, 0.0689880403587025], "beta": -0.3811344922255435, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d0", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u1", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u1", "phase": "-(P0)"}]}, {"name": "u2", "qubits": [1], "sequence": [{"name": "fc", "t0": 0, "ch": "d1", "phase": "-(P1)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "Y90p_d1", "pulse_shape": "drag", "parameters": {"amp": [-0.0010082199830323095, 0.08061834099202726], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d1", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u0", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u0", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u4", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u4", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u5", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u5", "phase": "-(P0)"}]}, {"name": "u2", "qubits": [2], "sequence": [{"name": "fc", "t0": 0, "ch": "d2", "phase": "-(P1)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d2", "label": "Y90p_d2", "pulse_shape": "drag", "parameters": {"amp": [-0.0009733835721556096, 0.10372071749817223], "beta": -0.6831909328371424, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d2", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u2", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u2", "phase": "-(P0)"}]}, {"name": "u2", "qubits": [3], "sequence": [{"name": "fc", "t0": 0, "ch": "d3", "phase": "-(P1)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d3", "label": "Y90p_d3", "pulse_shape": "drag", "parameters": {"amp": [-0.0013194230301066731, 0.09807037629058638], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d3", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u3", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u3", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u8", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u8", "phase": "-(P0)"}]}, {"name": "u2", "qubits": [4], "sequence": [{"name": "fc", "t0": 0, "ch": "d4", "phase": "-(P1)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d4", "label": "Y90p_d4", "pulse_shape": "drag", "parameters": {"amp": [-0.00043271179908717144, 0.10175479169852428], "beta": -1.0507173387200506, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d4", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u9", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u9", "phase": "-(P0)"}]}, {"name": "u2", "qubits": [5], "sequence": [{"name": "fc", "t0": 0, "ch": "d5", "phase": "-(P1)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "Y90p_d5", "pulse_shape": "drag", "parameters": {"amp": [0.00026715263398331706, 0.09894081518293062], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d5", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u11", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u11", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u6", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u6", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u7", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u7", "phase": "-(P0)"}]}, {"name": "u2", "qubits": [6], "sequence": [{"name": "fc", "t0": 0, "ch": "d6", "phase": "-(P1)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d6", "label": "Y90p_d6", "pulse_shape": "drag", "parameters": {"amp": [-0.0013957949176612004, 0.09774872106720642], "beta": -1.2239831108192651, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d6", "phase": "-(P0)"}, {"name": "fc", "t0": 0, "ch": "u10", "phase": "-(P1)"}, {"name": "fc", "t0": 160, "ch": "u10", "phase": "-(P0)"}]}, {"name": "u3", "qubits": [0], "sequence": [{"name": "fc", "t0": 0, "ch": "d0", "phase": "-(P2)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d0", "label": "X90p_d0", "pulse_shape": "drag", "parameters": {"amp": [0.06898810104354877, -4.232956317542851e-05], "beta": -0.3811344922255435, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d0", "phase": "-(P0)"}, {"name": "parametric_pulse", "t0": 160, "ch": "d0", "label": "X90m_d0", "pulse_shape": "drag", "parameters": {"amp": [-0.0689880403587025, -0.00010082089490069527], "beta": -0.3811344922255435, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 320, "ch": "d0", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u1", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u1", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u1", "phase": "-(P1)"}]}, {"name": "u3", "qubits": [1], "sequence": [{"name": "fc", "t0": 0, "ch": "d1", "phase": "-(P2)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "X90p_d1", "pulse_shape": "drag", "parameters": {"amp": [0.0806155063849806, 0.0012138954378855442], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d1", "phase": "-(P0)"}, {"name": "parametric_pulse", "t0": 160, "ch": "d1", "label": "X90m_d1", "pulse_shape": "drag", "parameters": {"amp": [-0.08061834099202726, -0.0010082199830323043], "beta": -0.7029520016067141, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 320, "ch": "d1", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u0", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u0", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u0", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u4", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u4", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u4", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u5", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u5", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u5", "phase": "-(P1)"}]}, {"name": "u3", "qubits": [2], "sequence": [{"name": "fc", "t0": 0, "ch": "d2", "phase": "-(P2)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d2", "label": "X90p_d2", "pulse_shape": "drag", "parameters": {"amp": [0.10371910088292566, 0.0011326190673325745], "beta": -0.6831909328371424, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d2", "phase": "-(P0)"}, {"name": "parametric_pulse", "t0": 160, "ch": "d2", "label": "X90m_d2", "pulse_shape": "drag", "parameters": {"amp": [-0.10372071749817223, -0.0009733835721556265], "beta": -0.6831909328371424, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 320, "ch": "d2", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u2", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u2", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u2", "phase": "-(P1)"}]}, {"name": "u3", "qubits": [3], "sequence": [{"name": "fc", "t0": 0, "ch": "d3", "phase": "-(P2)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d3", "label": "X90p_d3", "pulse_shape": "drag", "parameters": {"amp": [0.09807275176102961, 0.0011291345929712094], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d3", "phase": "-(P0)"}, {"name": "parametric_pulse", "t0": 160, "ch": "d3", "label": "X90m_d3", "pulse_shape": "drag", "parameters": {"amp": [-0.09807037629058638, -0.001319423030106667], "beta": -2.054907442496601, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 320, "ch": "d3", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u3", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u3", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u3", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u8", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u8", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u8", "phase": "-(P1)"}]}, {"name": "u3", "qubits": [4], "sequence": [{"name": "fc", "t0": 0, "ch": "d4", "phase": "-(P2)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d4", "label": "X90p_d4", "pulse_shape": "drag", "parameters": {"amp": [0.10175569289899734, 6.193348105168277e-05], "beta": -1.0507173387200506, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d4", "phase": "-(P0)"}, {"name": "parametric_pulse", "t0": 160, "ch": "d4", "label": "X90m_d4", "pulse_shape": "drag", "parameters": {"amp": [-0.10175479169852428, -0.00043271179908716526], "beta": -1.0507173387200506, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 320, "ch": "d4", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u9", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u9", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u9", "phase": "-(P1)"}]}, {"name": "u3", "qubits": [5], "sequence": [{"name": "fc", "t0": 0, "ch": "d5", "phase": "-(P2)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "X90p_d5", "pulse_shape": "drag", "parameters": {"amp": [0.09894056020487856, -0.00034903572521790475], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d5", "phase": "-(P0)"}, {"name": "parametric_pulse", "t0": 160, "ch": "d5", "label": "X90m_d5", "pulse_shape": "drag", "parameters": {"amp": [-0.09894081518293062, 0.00026715263398332313], "beta": 0.1282264980409688, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 320, "ch": "d5", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u11", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u11", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u11", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u6", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u6", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u6", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u7", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u7", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u7", "phase": "-(P1)"}]}, {"name": "u3", "qubits": [6], "sequence": [{"name": "fc", "t0": 0, "ch": "d6", "phase": "-(P2)"}, {"name": "parametric_pulse", "t0": 0, "ch": "d6", "label": "X90p_d6", "pulse_shape": "drag", "parameters": {"amp": [0.09774839859617002, 0.0014181980154262224], "beta": -1.2239831108192651, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 160, "ch": "d6", "phase": "-(P0)"}, {"name": "parametric_pulse", "t0": 160, "ch": "d6", "label": "X90m_d6", "pulse_shape": "drag", "parameters": {"amp": [-0.09774872106720642, -0.0013957949176611945], "beta": -1.2239831108192651, "duration": 160, "sigma": 40}}, {"name": "fc", "t0": 320, "ch": "d6", "phase": "-(P1)"}, {"name": "fc", "t0": 0, "ch": "u10", "phase": "-(P2)"}, {"name": "fc", "t0": 160, "ch": "u10", "phase": "-(P0)"}, {"name": "fc", "t0": 320, "ch": "u10", "phase": "-(P1)"}]}, {"name": "x", "qubits": [0], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d0", "label": "Xp_d0", "pulse_shape": "drag", "parameters": {"amp": [0.13803784665721291, 0.0], "beta": -0.3021255920291164, "duration": 160, "sigma": 40}}]}, {"name": "x", "qubits": [1], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d1", "label": "Xp_d1", "pulse_shape": "drag", "parameters": {"amp": [0.1608889393374103, 0.0], "beta": -1.7557151694395088, "duration": 160, "sigma": 40}}]}, {"name": "x", "qubits": [2], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d2", "label": "Xp_d2", "pulse_shape": "drag", "parameters": {"amp": [0.20737902363209756, 0.0], "beta": -0.6282018967411466, "duration": 160, "sigma": 40}}]}, {"name": "x", "qubits": [3], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d3", "label": "Xp_d3", "pulse_shape": "drag", "parameters": {"amp": [0.19627353160994626, 0.0], "beta": -1.051678430759538, "duration": 160, "sigma": 40}}]}, {"name": "x", "qubits": [4], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d4", "label": "Xp_d4", "pulse_shape": "drag", "parameters": {"amp": [0.20384266608590032, 0.0], "beta": -0.7705656921661587, "duration": 160, "sigma": 40}}]}, {"name": "x", "qubits": [5], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d5", "label": "Xp_d5", "pulse_shape": "drag", "parameters": {"amp": [0.19790885510608502, 0.0], "beta": 0.6552557409875844, "duration": 160, "sigma": 40}}]}, {"name": "x", "qubits": [6], "sequence": [{"name": "parametric_pulse", "t0": 0, "ch": "d6", "label": "Xp_d6", "pulse_shape": "drag", "parameters": {"amp": [0.19570454467079734, 0.0], "beta": -1.11157592503581, "duration": 160, "sigma": 40}}]}], "meas_kernel": {"name": "hw_qmfk", "params": {}}, "discriminator": {"name": "hw_qmfk", "params": {}}, "_data": {}}
|
@@ -1,44 +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 7 qubit fake :class:`.BackendV1` with pulse capabilities.
|
15
|
-
"""
|
16
|
-
|
17
|
-
import os
|
18
|
-
from qiskit.providers.fake_provider import fake_pulse_backend
|
19
|
-
|
20
|
-
|
21
|
-
class Fake7QPulseV1(fake_pulse_backend.FakePulseBackend):
|
22
|
-
"""A fake **pulse** backend with the following characteristics:
|
23
|
-
|
24
|
-
* num_qubits: 7
|
25
|
-
* coupling_map:
|
26
|
-
|
27
|
-
.. code-block:: text
|
28
|
-
|
29
|
-
0 ↔ 1 ↔ 3 ↔ 5 ↔ 6
|
30
|
-
↕ ↕
|
31
|
-
2 4
|
32
|
-
|
33
|
-
* basis_gates: ``["id", "rz", "sx", "x", "cx", "reset"]``
|
34
|
-
* scheduled instructions:
|
35
|
-
# ``{'u3', 'id', 'measure', 'u2', 'x', 'u1', 'sx', 'rz'}`` for all individual qubits
|
36
|
-
# ``{'cx'}`` for all edges
|
37
|
-
# ``{'measure'}`` for (0, 1, 2, 3, 4, 5, 6)
|
38
|
-
"""
|
39
|
-
|
40
|
-
dirname = os.path.dirname(__file__)
|
41
|
-
conf_filename = "conf_nairobi.json"
|
42
|
-
props_filename = "props_nairobi.json"
|
43
|
-
defs_filename = "defs_nairobi.json"
|
44
|
-
backend_name = "fake_7q_pulse_v1"
|
@@ -1 +0,0 @@
|
|
1
|
-
{"backend_name": "ibm_nairobi", "backend_version": "1.0.13", "last_update_date": "2021-12-09T14:02:06-05:00", "qubits": [[{"date": "2021-12-09T11:30:18-05:00", "name": "T1", "unit": "us", "value": 209.26307583699622}, {"date": "2021-12-09T00:35:50-05:00", "name": "T2", "unit": "us", "value": 51.356207758388386}, {"date": "2021-12-09T14:02:06-05:00", "name": "frequency", "unit": "GHz", "value": 5.260483791030155}, {"date": "2021-12-09T14:02:06-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3398345949354833}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_error", "unit": "", "value": 0.021199999999999997}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.028800000000000048}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0136}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_length", "unit": "ns", "value": 5347.555555555556}], [{"date": "2021-12-09T11:32:42-05:00", "name": "T1", "unit": "us", "value": 109.68501080336374}, {"date": "2021-12-09T00:47:58-05:00", "name": "T2", "unit": "us", "value": 135.26831435320162}, {"date": "2021-12-09T14:02:06-05:00", "name": "frequency", "unit": "GHz", "value": 5.170333454748703}, {"date": "2021-12-09T14:02:06-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3405834792685346}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_error", "unit": "", "value": 0.02740000000000009}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.042}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.012800000000000034}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_length", "unit": "ns", "value": 5347.555555555556}], [{"date": "2021-12-09T11:30:18-05:00", "name": "T1", "unit": "us", "value": 137.09323422858205}, {"date": "2021-12-09T00:35:50-05:00", "name": "T2", "unit": "us", "value": 168.29289411620812}, {"date": "2021-12-09T14:02:06-05:00", "name": "frequency", "unit": "GHz", "value": 5.274436548447222}, {"date": "2021-12-09T14:02:06-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3389036888077824}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_error", "unit": "", "value": 0.02510000000000001}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0374}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.012800000000000034}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_length", "unit": "ns", "value": 5347.555555555556}], [{"date": "2021-12-09T11:30:18-05:00", "name": "T1", "unit": "us", "value": 122.15901398132361}, {"date": "2021-12-09T00:35:50-05:00", "name": "T2", "unit": "us", "value": 56.228061592660424}, {"date": "2021-12-09T14:02:06-05:00", "name": "frequency", "unit": "GHz", "value": 5.026646125967889}, {"date": "2021-12-09T14:02:06-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34253037607049963}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_error", "unit": "", "value": 0.02939999999999998}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0446}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.01419999999999999}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_length", "unit": "ns", "value": 5347.555555555556}], [{"date": "2021-12-09T11:30:18-05:00", "name": "T1", "unit": "us", "value": 127.53250584114997}, {"date": "2021-12-09T00:35:50-05:00", "name": "T2", "unit": "us", "value": 86.48741785670725}, {"date": "2021-12-09T14:02:06-05:00", "name": "frequency", "unit": "GHz", "value": 5.177223413479857}, {"date": "2021-12-09T14:02:06-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34059039974918304}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_error", "unit": "", "value": 0.02859999999999996}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.04720000000000002}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.01}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_length", "unit": "ns", "value": 5347.555555555556}], [{"date": "2021-12-09T11:32:42-05:00", "name": "T1", "unit": "us", "value": 148.0397074053982}, {"date": "2021-12-09T00:47:58-05:00", "name": "T2", "unit": "us", "value": 39.22297388061366}, {"date": "2021-12-09T14:02:06-05:00", "name": "frequency", "unit": "GHz", "value": 5.29284383826766}, {"date": "2021-12-09T14:02:06-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.34053232043511467}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_error", "unit": "", "value": 0.028299999999999992}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.0386}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.018000000000000016}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_length", "unit": "ns", "value": 5347.555555555556}], [{"date": "2021-12-09T11:30:18-05:00", "name": "T1", "unit": "us", "value": 107.8791652204177}, {"date": "2021-12-09T00:35:50-05:00", "name": "T2", "unit": "us", "value": 178.79523310711417}, {"date": "2021-12-09T14:02:06-05:00", "name": "frequency", "unit": "GHz", "value": 5.1286976963519475}, {"date": "2021-12-09T14:02:06-05:00", "name": "anharmonicity", "unit": "GHz", "value": -0.3404356760163406}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_error", "unit": "", "value": 0.02859999999999996}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas0_prep1", "unit": "", "value": 0.04600000000000004}, {"date": "2021-12-09T00:33:50-05:00", "name": "prob_meas1_prep0", "unit": "", "value": 0.0112}, {"date": "2021-12-09T00:33:50-05:00", "name": "readout_length", "unit": "ns", "value": 5347.555555555556}]], "gates": [{"qubits": [0], "gate": "id", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.0002409827161319061}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id0"}, {"qubits": [1], "gate": "id", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.00042630736355316545}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id1"}, {"qubits": [2], "gate": "id", "parameters": [{"date": "2021-12-09T00:55:52-05:00", "name": "gate_error", "unit": "", "value": 0.0002203290287725651}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id2"}, {"qubits": [3], "gate": "id", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.00028800768161162403}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id3"}, {"qubits": [4], "gate": "id", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.0002901045509968039}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id4"}, {"qubits": [5], "gate": "id", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.00047069490539712925}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id5"}, {"qubits": [6], "gate": "id", "parameters": [{"date": "2021-12-09T00:55:52-05:00", "name": "gate_error", "unit": "", "value": 0.00020598982496566794}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "id6"}, {"qubits": [0], "gate": "rz", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz0"}, {"qubits": [1], "gate": "rz", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz1"}, {"qubits": [2], "gate": "rz", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz2"}, {"qubits": [3], "gate": "rz", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz3"}, {"qubits": [4], "gate": "rz", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz4"}, {"qubits": [5], "gate": "rz", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz5"}, {"qubits": [6], "gate": "rz", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_error", "unit": "", "value": 0}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 0}], "name": "rz6"}, {"qubits": [0], "gate": "sx", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.0002409827161319061}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx0"}, {"qubits": [1], "gate": "sx", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.00042630736355316545}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx1"}, {"qubits": [2], "gate": "sx", "parameters": [{"date": "2021-12-09T00:55:52-05:00", "name": "gate_error", "unit": "", "value": 0.0002203290287725651}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx2"}, {"qubits": [3], "gate": "sx", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.00028800768161162403}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx3"}, {"qubits": [4], "gate": "sx", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.0002901045509968039}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx4"}, {"qubits": [5], "gate": "sx", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.00047069490539712925}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx5"}, {"qubits": [6], "gate": "sx", "parameters": [{"date": "2021-12-09T00:55:52-05:00", "name": "gate_error", "unit": "", "value": 0.00020598982496566794}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "sx6"}, {"qubits": [0], "gate": "x", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.0002409827161319061}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x0"}, {"qubits": [1], "gate": "x", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.00042630736355316545}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x1"}, {"qubits": [2], "gate": "x", "parameters": [{"date": "2021-12-09T00:55:52-05:00", "name": "gate_error", "unit": "", "value": 0.0002203290287725651}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x2"}, {"qubits": [3], "gate": "x", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.00028800768161162403}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x3"}, {"qubits": [4], "gate": "x", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.0002901045509968039}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x4"}, {"qubits": [5], "gate": "x", "parameters": [{"date": "2021-12-09T00:54:17-05:00", "name": "gate_error", "unit": "", "value": 0.00047069490539712925}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x5"}, {"qubits": [6], "gate": "x", "parameters": [{"date": "2021-12-09T00:55:52-05:00", "name": "gate_error", "unit": "", "value": 0.00020598982496566794}, {"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 35.55555555555556}], "name": "x6"}, {"qubits": [6, 5], "gate": "cx", "parameters": [{"date": "2021-12-09T01:11:04-05:00", "name": "gate_error", "unit": "", "value": 0.009177135385763452}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 305.77777777777777}], "name": "cx6_5"}, {"qubits": [5, 6], "gate": "cx", "parameters": [{"date": "2021-12-09T01:11:04-05:00", "name": "gate_error", "unit": "", "value": 0.009177135385763452}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 341.3333333333333}], "name": "cx5_6"}, {"qubits": [5, 4], "gate": "cx", "parameters": [{"date": "2021-12-09T01:08:50-05:00", "name": "gate_error", "unit": "", "value": 0.006194862109557553}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 277.3333333333333}], "name": "cx5_4"}, {"qubits": [4, 5], "gate": "cx", "parameters": [{"date": "2021-12-09T01:08:50-05:00", "name": "gate_error", "unit": "", "value": 0.006194862109557553}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 312.88888888888886}], "name": "cx4_5"}, {"qubits": [5, 3], "gate": "cx", "parameters": [{"date": "2021-12-09T01:06:05-05:00", "name": "gate_error", "unit": "", "value": 0.01015514536884643}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 234.66666666666666}], "name": "cx5_3"}, {"qubits": [3, 5], "gate": "cx", "parameters": [{"date": "2021-12-09T01:06:05-05:00", "name": "gate_error", "unit": "", "value": 0.01015514536884643}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 270.22222222222223}], "name": "cx3_5"}, {"qubits": [1, 3], "gate": "cx", "parameters": [{"date": "2021-12-09T01:03:55-05:00", "name": "gate_error", "unit": "", "value": 0.007921173114945335}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 270.22222222222223}], "name": "cx1_3"}, {"qubits": [3, 1], "gate": "cx", "parameters": [{"date": "2021-12-09T01:03:55-05:00", "name": "gate_error", "unit": "", "value": 0.007921173114945335}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 305.77777777777777}], "name": "cx3_1"}, {"qubits": [2, 1], "gate": "cx", "parameters": [{"date": "2021-12-09T01:01:31-05:00", "name": "gate_error", "unit": "", "value": 0.006071005105904914}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 391.1111111111111}], "name": "cx2_1"}, {"qubits": [1, 2], "gate": "cx", "parameters": [{"date": "2021-12-09T01:01:31-05:00", "name": "gate_error", "unit": "", "value": 0.006071005105904914}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 426.66666666666663}], "name": "cx1_2"}, {"qubits": [0, 1], "gate": "cx", "parameters": [{"date": "2021-12-09T00:58:35-05:00", "name": "gate_error", "unit": "", "value": 0.007771866789264448}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 248.88888888888889}], "name": "cx0_1"}, {"qubits": [1, 0], "gate": "cx", "parameters": [{"date": "2021-12-09T00:58:35-05:00", "name": "gate_error", "unit": "", "value": 0.007771866789264448}, {"date": "2021-12-06T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 284.44444444444446}], "name": "cx1_0"}, {"qubits": [0], "gate": "reset", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 5696}], "name": "reset0"}, {"qubits": [1], "gate": "reset", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 5681.777777777777}], "name": "reset1"}, {"qubits": [2], "gate": "reset", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 5681.777777777777}], "name": "reset2"}, {"qubits": [3], "gate": "reset", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 5696}], "name": "reset3"}, {"qubits": [4], "gate": "reset", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 5696}], "name": "reset4"}, {"qubits": [5], "gate": "reset", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 5696}], "name": "reset5"}, {"qubits": [6], "gate": "reset", "parameters": [{"date": "2021-12-09T14:02:06-05:00", "name": "gate_length", "unit": "ns", "value": 5696}], "name": "reset6"}], "general": [{"date": "2021-12-09T14:02:06-05:00", "name": "jq_01", "unit": "GHz", "value": 0.002424365147211133}, {"date": "2021-12-09T14:02:06-05:00", "name": "zz_01", "unit": "GHz", "value": -7.44245306702971e-05}, {"date": "2021-12-09T14:02:06-05:00", "name": "jq_12", "unit": "GHz", "value": 0.003299484405707071}, {"date": "2021-12-09T14:02:06-05:00", "name": "zz_12", "unit": "GHz", "value": -0.00014195540167377774}, {"date": "2021-12-09T14:02:06-05:00", "name": "jq_45", "unit": "GHz", "value": 0.0033842854076643666}, {"date": "2021-12-09T14:02:06-05:00", "name": "zz_45", "unit": "GHz", "value": -0.00015121873088148923}, {"date": "2021-12-09T14:02:06-05:00", "name": "jq_56", "unit": "GHz", "value": 0.003298540438896099}, {"date": "2021-12-09T14:02:06-05:00", "name": "zz_56", "unit": "GHz", "value": -0.00016524485201342335}, {"date": "2021-12-09T14:02:06-05:00", "name": "jq_13", "unit": "GHz", "value": 0.0032526977547337834}, {"date": "2021-12-09T14:02:06-05:00", "name": "zz_13", "unit": "GHz", "value": -0.00015085979775338062}, {"date": "2021-12-09T14:02:06-05:00", "name": "jq_35", "unit": "GHz", "value": 0.0023906436500284963}, {"date": "2021-12-09T14:02:06-05:00", "name": "zz_35", "unit": "GHz", "value": -0.0001688529115642526}]}
|
@@ -1,91 +0,0 @@
|
|
1
|
-
# This code is part of Qiskit.
|
2
|
-
#
|
3
|
-
# (C) Copyright IBM 2019.
|
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
|
-
Fake 1Q device (1 qubit).
|
15
|
-
"""
|
16
|
-
import datetime
|
17
|
-
|
18
|
-
from qiskit.providers.models.backendproperties import BackendProperties, Gate, Nduv
|
19
|
-
|
20
|
-
from .fake_backend import FakeBackend
|
21
|
-
|
22
|
-
|
23
|
-
class Fake1Q(FakeBackend):
|
24
|
-
"""A fake 1Q backend."""
|
25
|
-
|
26
|
-
def __init__(self):
|
27
|
-
"""
|
28
|
-
0
|
29
|
-
"""
|
30
|
-
mock_time = datetime.datetime.now()
|
31
|
-
dt = 1.3333
|
32
|
-
configuration = BackendProperties(
|
33
|
-
backend_name="fake_1q",
|
34
|
-
backend_version="0.0.0",
|
35
|
-
num_qubits=1,
|
36
|
-
basis_gates=["u1", "u2", "u3", "cx"],
|
37
|
-
simulator=False,
|
38
|
-
local=True,
|
39
|
-
conditional=False,
|
40
|
-
memory=False,
|
41
|
-
max_shots=1024,
|
42
|
-
qubits=[
|
43
|
-
[
|
44
|
-
Nduv(date=mock_time, name="T1", unit="µs", value=71.9500421005539),
|
45
|
-
Nduv(date=mock_time, name="frequency", unit="MHz", value=4919.96800692),
|
46
|
-
]
|
47
|
-
],
|
48
|
-
gates=[
|
49
|
-
Gate(
|
50
|
-
gate="u1",
|
51
|
-
name="u1_0",
|
52
|
-
qubits=[0],
|
53
|
-
parameters=[
|
54
|
-
Nduv(date=mock_time, name="gate_error", unit="", value=1.0),
|
55
|
-
Nduv(date=mock_time, name="gate_length", unit="ns", value=0.0),
|
56
|
-
],
|
57
|
-
),
|
58
|
-
Gate(
|
59
|
-
gate="u3",
|
60
|
-
name="u3_0",
|
61
|
-
qubits=[0],
|
62
|
-
parameters=[
|
63
|
-
Nduv(date=mock_time, name="gate_error", unit="", value=1.0),
|
64
|
-
Nduv(date=mock_time, name="gate_length", unit="ns", value=2 * dt),
|
65
|
-
],
|
66
|
-
),
|
67
|
-
Gate(
|
68
|
-
gate="u3",
|
69
|
-
name="u3_1",
|
70
|
-
qubits=[1],
|
71
|
-
parameters=[
|
72
|
-
Nduv(date=mock_time, name="gate_error", unit="", value=1.0),
|
73
|
-
Nduv(date=mock_time, name="gate_length", unit="ns", value=4 * dt),
|
74
|
-
],
|
75
|
-
),
|
76
|
-
Gate(
|
77
|
-
gate="cx",
|
78
|
-
name="cx0_1",
|
79
|
-
qubits=[0, 1],
|
80
|
-
parameters=[
|
81
|
-
Nduv(date=mock_time, name="gate_error", unit="", value=1.0),
|
82
|
-
Nduv(date=mock_time, name="gate_length", unit="ns", value=22 * dt),
|
83
|
-
],
|
84
|
-
),
|
85
|
-
],
|
86
|
-
coupling_map=None,
|
87
|
-
n_registers=1,
|
88
|
-
last_update_date=mock_time,
|
89
|
-
general=[],
|
90
|
-
)
|
91
|
-
super().__init__(configuration)
|
@@ -1,165 +0,0 @@
|
|
1
|
-
# This code is part of Qiskit.
|
2
|
-
#
|
3
|
-
# (C) Copyright IBM 2019, 2024.
|
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
|
-
# pylint: disable=no-name-in-module
|
14
|
-
|
15
|
-
"""
|
16
|
-
Base class for dummy backends.
|
17
|
-
"""
|
18
|
-
|
19
|
-
import warnings
|
20
|
-
|
21
|
-
from qiskit import circuit
|
22
|
-
from qiskit.providers.models import BackendProperties
|
23
|
-
from qiskit.providers import BackendV1
|
24
|
-
from qiskit import pulse
|
25
|
-
from qiskit.exceptions import QiskitError
|
26
|
-
from qiskit.utils import optionals as _optionals, deprecate_func
|
27
|
-
from qiskit.providers import basic_provider
|
28
|
-
|
29
|
-
|
30
|
-
class _Credentials:
|
31
|
-
def __init__(self, token="123456", url="https://"):
|
32
|
-
self.token = token
|
33
|
-
self.url = url
|
34
|
-
self.hub = "hub"
|
35
|
-
self.group = "group"
|
36
|
-
self.project = "project"
|
37
|
-
|
38
|
-
|
39
|
-
class FakeBackend(BackendV1):
|
40
|
-
"""This is a dummy backend just for testing purposes."""
|
41
|
-
|
42
|
-
@deprecate_func(
|
43
|
-
since="1.2",
|
44
|
-
removal_timeline="in the 2.0 release",
|
45
|
-
additional_msg="Fake backends using BackendV1 are deprecated in favor of "
|
46
|
-
":class:`.GenericBackendV2`. You can convert BackendV1 to "
|
47
|
-
":class:`.BackendV2` with :class:`.BackendV2Converter`.",
|
48
|
-
)
|
49
|
-
def __init__(self, configuration, time_alive=10):
|
50
|
-
"""FakeBackend initializer.
|
51
|
-
|
52
|
-
Args:
|
53
|
-
configuration (BackendConfiguration): backend configuration
|
54
|
-
time_alive (int): time to wait before returning result
|
55
|
-
"""
|
56
|
-
super().__init__(configuration)
|
57
|
-
self.time_alive = time_alive
|
58
|
-
self._credentials = _Credentials()
|
59
|
-
self.sim = None
|
60
|
-
|
61
|
-
def _setup_sim(self):
|
62
|
-
if _optionals.HAS_AER:
|
63
|
-
from qiskit_aer import AerSimulator
|
64
|
-
from qiskit_aer.noise import NoiseModel
|
65
|
-
|
66
|
-
self.sim = AerSimulator()
|
67
|
-
if self.properties():
|
68
|
-
noise_model = NoiseModel.from_backend(self)
|
69
|
-
self.sim.set_options(noise_model=noise_model)
|
70
|
-
# Update fake backend default options too to avoid overwriting
|
71
|
-
# it when run() is called
|
72
|
-
self.set_options(noise_model=noise_model)
|
73
|
-
else:
|
74
|
-
self.sim = basic_provider.BasicSimulator()
|
75
|
-
|
76
|
-
def properties(self):
|
77
|
-
"""Return backend properties"""
|
78
|
-
coupling_map = self.configuration().coupling_map
|
79
|
-
if coupling_map is None:
|
80
|
-
return None
|
81
|
-
unique_qubits = list(set().union(*coupling_map))
|
82
|
-
|
83
|
-
properties = {
|
84
|
-
"backend_name": self.name(),
|
85
|
-
"backend_version": self.configuration().backend_version,
|
86
|
-
"last_update_date": "2000-01-01 00:00:00Z",
|
87
|
-
"qubits": [
|
88
|
-
[
|
89
|
-
{"date": "2000-01-01 00:00:00Z", "name": "T1", "unit": "\u00b5s", "value": 0.0},
|
90
|
-
{"date": "2000-01-01 00:00:00Z", "name": "T2", "unit": "\u00b5s", "value": 0.0},
|
91
|
-
{
|
92
|
-
"date": "2000-01-01 00:00:00Z",
|
93
|
-
"name": "frequency",
|
94
|
-
"unit": "GHz",
|
95
|
-
"value": 0.0,
|
96
|
-
},
|
97
|
-
{
|
98
|
-
"date": "2000-01-01 00:00:00Z",
|
99
|
-
"name": "readout_error",
|
100
|
-
"unit": "",
|
101
|
-
"value": 0.0,
|
102
|
-
},
|
103
|
-
{"date": "2000-01-01 00:00:00Z", "name": "operational", "unit": "", "value": 1},
|
104
|
-
]
|
105
|
-
for _ in range(len(unique_qubits))
|
106
|
-
],
|
107
|
-
"gates": [
|
108
|
-
{
|
109
|
-
"gate": "cx",
|
110
|
-
"name": "CX" + str(pair[0]) + "_" + str(pair[1]),
|
111
|
-
"parameters": [
|
112
|
-
{
|
113
|
-
"date": "2000-01-01 00:00:00Z",
|
114
|
-
"name": "gate_error",
|
115
|
-
"unit": "",
|
116
|
-
"value": 0.0,
|
117
|
-
}
|
118
|
-
],
|
119
|
-
"qubits": [pair[0], pair[1]],
|
120
|
-
}
|
121
|
-
for pair in coupling_map
|
122
|
-
],
|
123
|
-
"general": [],
|
124
|
-
}
|
125
|
-
|
126
|
-
return BackendProperties.from_dict(properties)
|
127
|
-
|
128
|
-
@classmethod
|
129
|
-
def _default_options(cls):
|
130
|
-
if _optionals.HAS_AER:
|
131
|
-
from qiskit_aer import QasmSimulator
|
132
|
-
|
133
|
-
return QasmSimulator._default_options()
|
134
|
-
else:
|
135
|
-
return basic_provider.BasicSimulator._default_options()
|
136
|
-
|
137
|
-
def run(self, run_input, **kwargs):
|
138
|
-
"""Main job in simulator"""
|
139
|
-
circuits = run_input
|
140
|
-
pulse_job = None
|
141
|
-
if isinstance(circuits, (pulse.Schedule, pulse.ScheduleBlock)):
|
142
|
-
pulse_job = True
|
143
|
-
elif isinstance(circuits, circuit.QuantumCircuit):
|
144
|
-
pulse_job = False
|
145
|
-
elif isinstance(circuits, list):
|
146
|
-
if circuits:
|
147
|
-
if all(isinstance(x, (pulse.Schedule, pulse.ScheduleBlock)) for x in circuits):
|
148
|
-
pulse_job = True
|
149
|
-
elif all(isinstance(x, circuit.QuantumCircuit) for x in circuits):
|
150
|
-
pulse_job = False
|
151
|
-
if pulse_job is None:
|
152
|
-
raise QiskitError(
|
153
|
-
f"Invalid input object {circuits}, must be either a "
|
154
|
-
"QuantumCircuit, Schedule, or a list of either"
|
155
|
-
)
|
156
|
-
if pulse_job:
|
157
|
-
raise QiskitError("Pulse simulation is currently not supported for fake backends.")
|
158
|
-
# circuit job
|
159
|
-
if not _optionals.HAS_AER:
|
160
|
-
warnings.warn("Aer not found using BasicAer and no noise", RuntimeWarning)
|
161
|
-
if self.sim is None:
|
162
|
-
self._setup_sim()
|
163
|
-
self.sim._options = self._options
|
164
|
-
job = self.sim.run(circuits, **kwargs)
|
165
|
-
return job
|