iqm.pulla.utils_qiskit.IQMPullaBackend#
- class iqm.pulla.utils_qiskit.IQMPullaBackend(architecture, pulla, compiler)#
Bases:
IQMBackendBaseA backend that compiles circuits locally using Pulla and submits them to Station Control for execution.
- Parameters:
Attributes
The maximum number of circuits (or Pulse schedules) that can be run in a single job.
nameName of the backend.
descriptionOptional human-readable description.
online_dateDate that the backend came online.
backend_versionVersion of the backend being provided.
Methods
_default_options()Return the default options
run(run_input, **options)Run on the backend.
- run(run_input, **options)#
Run on the backend.
This method returns a
Jobobject 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.- Parameters:
run_input (QuantumCircuit or Schedule or ScheduleBlock or list) – An individual or a list of
QuantumCircuit,ScheduleBlock, orScheduleobjects 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.
- Returns:
The job object for the run
- Return type:
Job