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
If no TNQVM plugins are installed, python api defaults to vqe-dummy accelerator even when the user has specified xacc.setOption('accelerator','blah'). Reported by @eugescu
Easy fix:
if (!xacc::optionExists("accelerator")) {
xacc::setAccelerator("vqe-dummy");
// Set the default Accelerator to TNQVMif (xacc::hasAccelerator("tnqvm")) {
xacc::setAccelerator("tnqvm");
}
}
The text was updated successfully, but these errors were encountered:
If no TNQVM plugins are installed, python api defaults to vqe-dummy accelerator even when the user has specified xacc.setOption('accelerator','blah'). Reported by @eugescu
Easy fix:
The text was updated successfully, but these errors were encountered: