You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The VQE is most commonly used with SPSA or gradient descent, which require 2 or (up to) 2 * num_parameters circuit evaluations per iterations, respectively. Since the new execution model is shifting from using the runtime VQE program to the primitive-based VQE in Terra, we should also enable batching as many circuits per default as possible. Otherwise the standard usage of the VQE will be much slower than necessary (~2 or 2 * num_parameters to slow 😅).
This is something the runtime VQE also did, maybe we can use the same defaults?
The text was updated successfully, but these errors were encountered:
What should we add?
The VQE is most commonly used with SPSA or gradient descent, which require 2 or (up to) 2 *
num_parameters
circuit evaluations per iterations, respectively. Since the new execution model is shifting from using the runtime VQE program to the primitive-based VQE in Terra, we should also enable batching as many circuits per default as possible. Otherwise the standard usage of the VQE will be much slower than necessary (~2 or 2 *num_parameters
to slow 😅).This is something the runtime VQE also did, maybe we can use the same defaults?
The text was updated successfully, but these errors were encountered: