English
Languages
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.assembler.RunConfig

class RunConfig(shots=None, max_credits=None, seed_simulator=None, memory=None, parameter_binds=None, **kwargs)[source]

Class for Run Configuration.

shots

the number of shots

Type

int

max_credits

the max_credits to use on the IBM Q public devices

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) – 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

__init__(shots=None, max_credits=None, seed_simulator=None, memory=None, parameter_binds=None, **kwargs)[source]

Initialize a RunConfig object

Parameters
  • shots (int) – the number of shots

  • max_credits (int) – 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

__init__([shots, max_credits, …])

Initialize a RunConfig object

from_dict(data)

Create a new RunConfig object from a dictionary.

to_dict()

Return a dictionary format representation of the RunConfig

classmethod from_dict(data)[source]

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

RunConfig

to_dict()[source]

Return a dictionary format representation of the RunConfig

Returns

The dictionary form of the RunConfig.

Return type

dict