About cookies on this site Our websites require some cookies to function properly (required). In addition, other cookies may be used with your consent to analyze site usage, improve the user experience and for advertising. For more information, please review your options. By visiting our website, you agree to our processing of information as described in IBM’sprivacy statement. To provide a smooth navigation, your cookie preferences will be shared across the IBM web domains listed here.
RunConfig
class RunConfig(shots=None, max_credits=None, seed_simulator=None, memory=None, parameter_binds=None, **kwargs)
Bases: types.SimpleNamespace
Class for Run Configuration.
shots
the number of shots
Type
int
max_credits
DEPRECATED This parameter is deprecated as of Qiskit Terra 0.20.0, and will be removed in a future release. This parameter has no effect on modern IBM Quantum systems, and no alternative is necessary.
Type
int
seed_simulator
the seed to use in the simulator
Type
int
memory
whether to request memory from backend (per-shot readouts)
Type
bool
parameter_binds
List of parameter bindings
Type
list[dict]
Initialize a RunConfig object
Parameters
- shots (int) – the number of shots
- max_credits (int) – DEPRECATED the max_credits to use on the IBM Q 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
- **kwargs – optional fields
Methods
from_dict
classmethod RunConfig.from_dict(data)
Create a new RunConfig object from a dictionary.
Parameters
data (dict) – 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
to_dict
RunConfig.to_dict()
Return a dictionary format representation of the RunConfig
Returns
The dictionary form of the RunConfig.
Return type
dict
Was this page helpful?
Report a bug or request content on GitHub.