Skip to content

measurement

tergite_autocalibration.lib.nodes.characterization.t2.measurement

Classes:

Name Description
T2EchoMeasurement
T2Measurement

T2EchoMeasurement

T2EchoMeasurement(transmons: dict[str, ExtendedTransmon], qubit_state: int = 0)

Bases: BaseMeasurement

Methods:

Name Description
schedule_function

Generate a schedule for performing a T2 Echo experiment measurement to find the coherence time T_2 for multiple qubits.

schedule_function

schedule_function(delays: dict[str, ndarray], multiplexing: str = 'parallel', repetitions: int = 1024) -> Schedule

Generate a schedule for performing a T2 Echo experiment measurement to find the coherence time T_2 for multiple qubits.

Schedule sequence Reset -> pi/2 pulse -> Idle(tau/2) -> pi pulse -> Idle(tau/2) -> pi/2 pulse -> Measure

Parameters

delays Array of the sweeping delay times tau between the pi/2-pulse and the other pi/2-pulse for each qubit. multiplexing The multiplexing mode for the schedule. Options are 'parallel' and 'one_by_one'. repetitions The amount of times the Schedule will be repeated.

Returns

: An experiment schedule.

T2Measurement

T2Measurement(transmons: dict[str, ExtendedTransmon], qubit_state: int = 0)

Bases: BaseMeasurement

Methods:

Name Description
schedule_function

Generate a schedule for performing a T2 experiment measurement to find the coherence time T_2 for multiple qubits.

schedule_function

schedule_function(delays: dict[str, ndarray], multiplexing: str = 'parallel', repetitions: int = 1024) -> Schedule

Generate a schedule for performing a T2 experiment measurement to find the coherence time T_2 for multiple qubits.

Schedule sequence Reset -> pi/2 pulse -> Idle(tau) -> pi/2 pulse -> Measure

Parameters

delays Array of the sweeping delay times tau between the pi/2-pulse and the other pi/2-pulse for each qubit. multiplexing The multiplexing mode for the schedule. Options are 'parallel' and 'one_by_one'. repetitions The amount of times the Schedule will be repeated.

Returns

: An experiment schedule.