-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Time limit error for Rigetti Backend #416
Comments
Interestingly there seem to have been some changes in the last few days. Without any changes to the code, the received error message is now:
The time limit has increased from 0 seconds to 10 seconds. Additionally I am now able to consistently run circuits succesfully, which previously failed, but further increasing the size of the circuit still leads to the error message above... It definitly makes the impression as if this time limit mentioned in the error message is what is preventing me from executing larger quantum circuits on the Aspen M3 or M2. And while it apparently can be changed, I am not sure if or how this limit could be increased further. |
Hi, can you share the circuit you used to help us reproduce the issue? |
Hi, thanks for getting back to this. The following circuit is what I used for testing (not the complete circuit I would like to run): circuit = QuantumCircuit.from_qasm_str("""OPENQASM 2.0;
include "qelib1.inc";
qreg q1[12];
creg c0[3];
h q1[0];
h q1[1];
h q1[2];
barrier q1[0],q1[1],q1[2],q1[3],q1[4],q1[5],q1[6],q1[7],q1[8],q1[9],q1[10],q1[11];
ccx q1[0],q1[11],q1[3];
ccx q1[1],q1[2],q1[11];
ccx q1[0],q1[11],q1[3];
ccx q1[1],q1[2],q1[11];
measure q1[0] -> c0[2];
measure q1[1] -> c0[1];
measure q1[2] -> c0[0];""") In most cases this leads to the error message above after around 20 seconds. I hope that helps, let me know if you need more information! |
Hi,
when playing around with the Hello World: Qiskit (with Rigetti) Jupyter notebook from the sample gallery, I am running into following problem:
When using the Aspen M3 (or M2) instead of the simulator and increasing the size of the circuit, the execution fails with the message:
Code snippet used to produce the error (circuit and provider definition not shown):
The problem does not seem to occur for the inital circuit given in the example, but with increasing size of the circuit this error occurs more often until it basically happens always.
Looking at the Job Management Overview it seems like the Job is already failing before it is actually running, so my thought was that the time limit in the error message could not refer to the actual execution time but to a compile time limit?
But I have seen no option to increase this limit... any ideas how to do this or what else could cause this?
Thank you!
The text was updated successfully, but these errors were encountered: