I have been evaluating the Quantum Inspired Optimizers available in Azure Quantum. I tested the Simulated Annealing solver first using the CPU version and then the FPGA hardware. Unfortunately I consumed all of my allocated FPGA time. Is it possible to get an extension to this limit?
However, my main problem is that now I get an error message when I switch back to executing on CPU hardware.
solver = SimulatedAnnealing(self.workspace, timeout=timeout, seed=22, platform=HardwarePlatform.CPU)
gives:
Solver failed with error: Cannot retrieve results as job execution failed (status: Failed. error: {'additional_properties': {}, 'code': 'NotEnoughQuota', 'message': "Not enough quota for metric 'fpga_job_hours' to process job. Current amount remaining is '0' but '-1' is required to proceed. ('-1' indicates that the amount required was not computed). Note that amount units depend on the dimension. Please contact 'Microsoft' for more information."})
even though I have not selected to execute on FPGA hardware. I get the same error even if I use the ParallelTempering solver.
Is there a way to continue to use CPU solvers when FPGA hardware quota has been exceeded?
And can I get my FPGA quota extended to I can continue to evaluate these solvers?
Thanks for your help.
