-
Notifications
You must be signed in to change notification settings - Fork 64
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
Add a default max_step to the processors #183
Conversation
Although this does solve the skipping pulse issue. On my computer, it increases the total time for the tests from 40 seconds to 3 min... |
The main slow down is actually at the computation of the full tlist, not the time evolution. |
That is quite a big slowdown. Can we make |
Having a closer look again, the main problem is actually with the This problem does not exist in |
An alternative is to use something like one-tenth of the total circuit pulse time. This does not solve the problem completely. But it will avoid those mistakes that keep popping up when people try and compile one gate and send it to the solver. When there are more gates and a non-trivial circuit, the probability of this happening will be very low. |
I'm okay with a hackier solution like |
This does not solve the problem completely. But it will avoid those mistakes that keep popping up when people try and compile one gate and send it to the solver. When there are more gates and a non-trivial circuit, the probability of this happening will be very low.
Add a default max_step based on the total circuit time. This does not solve the problem completely. But it will avoid those mistakes that keep popping up when people try and compile one gate and send it to the solver. When there are more gates and a non-trivial circuit, the probability of this happening will be very low.
Add a default max_step based on the total circuit time. This does not solve the problem completely. But it will avoid those mistakes that keep popping up when people try and compile one gate and send it to the solver. When there are more gates and a non-trivial circuit, the probability of this happening will be very low.
Similar to qutip/qutip#2040, with a separate handling of
options
for qutip-v5.