Skip to main contentIBM Quantum Documentation

RunConfig

qiskit.assembler.RunConfig(shots=None, seed_simulator=None, memory=None, parameter_binds=None, **kwargs)

Bases: SimpleNamespace (opens in a new tab)

Class for Run Configuration.

shots

the number of shots

Type

int (opens in a new tab)

seed_simulator

the seed to use in the simulator

Type

int (opens in a new tab)

memory

whether to request memory from backend (per-shot readouts)

Type

bool (opens in a new tab)

parameter_binds

List of parameter bindings

Type

list (opens in a new tab)[dict (opens in a new tab)]

Initialize a RunConfig object

Parameters


Methods

from_dict

classmethod from_dict(data)

Create a new RunConfig object from a dictionary.

Parameters

data (dict (opens in a new tab)) – A dictionary representing the RunConfig to create. It will be in the same format as output by to_dict().

Returns

The RunConfig from the input dictionary.

Return type

RunConfig

to_dict

to_dict()

Return a dictionary format representation of the RunConfig

Returns

The dictionary form of the RunConfig.

Return type

dict (opens in a new tab)

Was this page helpful?