RunConfig#

class qiskit.assembler.RunConfig(shots=None, seed_simulator=None, memory=None, parameter_binds=None, **kwargs)[소스]#

기반 클래스: SimpleNamespace

Class for Run Configuration.

shots#

the number of shots

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

매개변수:
  • shots (int) – the number of shots

  • 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

classmethod from_dict(data)[소스]#

Create a new RunConfig object from a dictionary.

매개변수:

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

반환:

The RunConfig from the input dictionary.

반환 형식:

RunConfig

to_dict()[소스]#

Return a dictionary format representation of the RunConfig

반환:

The dictionary form of the RunConfig.

반환 형식:

dict