English
Languages
English
Bengali
French
German
Japanese
Korean
Portuguese
Spanish
Tamil

RelaxationNoisePass

class RelaxationNoisePass(t1s, t2s, dt=None, op_types=None, excited_state_populations=None)[source]

Bases: qiskit_aer.noise.passes.local_noise_pass.LocalNoisePass

Add duration dependent thermal relaxation noise after instructions.

Initialize RelaxationNoisePass.

Parameters
  • t1s (List[float]) – List of T1 times in seconds for each qubit.

  • t2s (List[float]) – List of T2 times in seconds for each qubit.

  • dt (Optional[float]) – Backend sample time (resolution) in seconds. This is required for converting dt-unit op durations to times in scheduled circuits.

  • op_types (Union[type, Sequence[type], None]) – Optional, the operation types to add relaxation to. If None relaxation will be added to all operations.

  • excited_state_populations (Optional[List[float]]) – Optional, list of excited state populations for each qubit at thermal equilibrium. If not supplied or obtained from the backend this will be set to 0 for each qubit.

Methods

name

Return the name of the pass.

run

Run the LocalNoisePass pass on dag.

Attributes

is_analysis_pass

Check if the pass is an analysis pass.

If the pass is an AnalysisPass, that means that the pass can analyze the DAG and write the results of that analysis in the property set. Modifications on the DAG are not allowed by this kind of pass.

is_transformation_pass

Check if the pass is a transformation pass.

If the pass is a TransformationPass, that means that the pass can manipulate the DAG, but cannot modify the property set (but it can be read).