Saketh Chandra (@Saketh-Chandra) tried to submit a job to the Honeywell API validator and was not able to run the below code:
backend.run(circuit, memory=True)
This threw an error saying that JobDetails has no parameter memory.
We need to add memory as an input argument to HoneywellBackend.run, or pop these configuration parameters from the kwargs.
A potential workaround would be to override backend.configuration:
backend._configuration.memory = True
Saketh Chandra (@Saketh-Chandra), could you verify if the above workaround works for you?
Saketh Chandra (@Saketh-Chandra) tried to submit a job to the Honeywell API validator and was not able to run the below code:
This threw an error saying that
JobDetailshas no parametermemory.We need to add
memoryas an input argument toHoneywellBackend.run, or pop these configuration parameters from thekwargs.A potential workaround would be to override
backend.configuration:Saketh Chandra (@Saketh-Chandra), could you verify if the above workaround works for you?