diff --git a/pennylane_qiskit/runtime_devices.py b/pennylane_qiskit/runtime_devices.py index 4fdff3d73..64fdd44f1 100644 --- a/pennylane_qiskit/runtime_devices.py +++ b/pennylane_qiskit/runtime_devices.py @@ -67,11 +67,14 @@ def batch_execute(self, circuits): program_inputs[kwarg] = self.kwargs.get(kwarg) # Specify the backend. - options = {"backend": self.backend.name} + options = {"backend": self.backend.name, + "job_tags": self.kwargs.get("job_tags")} + + session_id = self.kwargs.get("session_id") # Send circuits to the cloud for execution by the circuit-runner program. job = self.runtime_service.run( - program_id="circuit-runner", options=options, inputs=program_inputs + program_id="circuit-runner", options=options, inputs=program_inputs, session_id=session_id, ) self._current_job = job.result(decoder=RunnerResult)