Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.
Important

IBM Quantum Platform is moving and this version will be sunset on July 1. To get started on the new platform, read the migration guide.

QasmQobjConfig

class QasmQobjConfig(shots=None, max_credits=None, seed_simulator=None, memory=None, parameter_binds=None, memory_slots=None, n_qubits=None, **kwargs)

GitHub

A configuration for a QASM Qobj.

Model for RunConfig.

Parameters

  • shots (int) – the number of shots.
  • max_credits (int) – the max_credits to use on the IBMQ public devices.
  • seed_simulator (int) – the seed to use in the simulator
  • memory (bool) – whether to request memory from backend (per-shot readouts)
  • parameter_binds (list[dict]) – List of parameter bindings
  • memory_slots (int) – The number of memory slots on the device
  • n_qubits (int) – The number of qubits on the device
  • kwargs – Additional free form key value fields to add to the configuration.

Methods

from_dict

classmethod QasmQobjConfig.from_dict(data)

Create a new QasmQobjConfig object from a dictionary.

Parameters

data (dict) – A dictionary for the config

Returns

The object from the input dictionary.

Return type

QasmQobjConfig

to_dict

QasmQobjConfig.to_dict()

Return a dictionary format representation of the QASM Qobj config.

Returns

The dictionary form of the QasmQobjConfig.

Return type

dict

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