qiskit.providers.BackendV2.run¶
- abstract BackendV2.run(run_input, **options)[código fonte]¶
Run on the backend.
This method returns a
Job
object that runs circuits. Depending on the backend this may be either an async or sync call. It is at the discretion of the provider to decide whether running should block until the execution is finished or not: the Job class can handle either situation.- Parâmetros
run_input (QuantumCircuit or Schedule or ScheduleBlock or list) – An individual or a list of
ScheduleBlock
, orSchedule
objects to run on the backend.options – Any kwarg options to pass to the backend for running the config. If a key is also present in the options attribute/object then the expectation is that the value specified will be used instead of what’s set in the options object.
- Retorno
The job object for the run
- Tipo de retorno