Skip to main content
IBM Quantum Platform
Esta página pertence a uma versão antiga do site Qiskit SDK e não existe na versão mais recente. Recomendamos que você migre para a versão mais recente. Consulte as notas sobre a liberação para obter mais informações.

RunConfig

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

GitHub

Bases: 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

Parameters

  • 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

from_dict

classmethod 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

RunConfig

to_dict

to_dict()

Return a dictionary format representation of the RunConfig

Returns

The dictionary form of the RunConfig.

Return type

dict

Esta página foi útil?
Relate um bug, erro de digitação ou solicite conteúdo no GitHub.