Open
Description
@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, could you verify if the above workaround works for you?