Skip to main contentIBM Quantum Documentation
You are viewing the API reference for an old version of Qiskit SDK. Switch to latest version

PulseDefaults

PulseDefaults(qubit_freq_est, meas_freq_est, buffer, pulse_library, cmd_def, meas_kernel=None, discriminator=None, **kwargs)

GitHub(opens in a new tab)

Description of default settings for Pulse systems. These are instructions or settings that may be good starting points for the Pulse user. The user may modify these defaults for custom scheduling.

Validate and reformat transport layer inputs to initialize.

Parameters

  • qubit_freq_est (List[float]) – Estimated qubit frequencies in GHz.
  • meas_freq_est (List[float]) – Estimated measurement cavity frequencies in GHz.
  • buffer (int) – Default buffer time (in units of dt) between pulses.
  • pulse_library (List[PulseLibraryItem]) – Pulse name and sample definitions.
  • cmd_def (List[Command]) – Operation name and definition in terms of Commands.
  • meas_kernel (Optional[MeasurementKernel]) – The measurement kernels
  • discriminator (Optional[Discriminator]) – The discriminators
  • **kwargs – Other attributes for the super class.

Attributes

circuit_instruction_map

Deprecated property, use instruction_schedule_map instead.

meas_freq_est

Measurement frequencies in Hertz.

qubit_freq_est

Qubit frequencies in Hertz.


Methods

from_dict

classmethod PulseDefaults.from_dict(data)

Create a new PulseDefaults object from a dictionary.

Parameters

data (dict) – A dictionary representing the PulseDefaults to create. It will be in the same format as output by to_dict().

Returns

The PulseDefaults from the input dictionary.

Return type

PulseDefaults

to_dict

PulseDefaults.to_dict()

Return a dictionary format representation of the PulseDefaults.

Returns

The dictionary form of the PulseDefaults.

Return type

dict

Was this page helpful?
Report a bug or request content on GitHub.