Are you running into problems when you try to use the hybrid solver? This article outlines some behavior that you may be seeing and offers a solution to the issue.
The Problem
If you have had the Ocean™ SDK installed and configured for a while, you may notice the following behavior.
When you try to instantiate the LeapHybridSolver you get an error that says "Solver with the requested features not available". The code and error message are shown below.
from dwave.system import LeapHybridSampler
sampler = LeapHybridSampler()
This message is telling you that the Ocean SDK cannot find the hybrid solver. Next, you may check your Leap™ dashboard to see if the solver is available. You see that it's online:
Now you know that it isn't a problem with the Leap service. The next step is to try pinging the solver to see if you can access it from your computer.
If you get the "Solver not available" error message, you need to dig a little further.
The Explanation
You are unable to access the hybrid solver because of a default setting in your configuration file. This is a result of setting up the configuration file with an earlier version of the Ocean SDK (before we had dedicated hybrid solvers). The culprit is this default profile:
[defaults]
client = qpu
In order to see this profile you need to open the file, not just use the dwave config create command in the command line to edit it. The default profile will not show up in your list of profiles when you run that command.
This default profile is telling Ocean to always look for a QPU solver, so it overrides the dwave ping --solver hybrid_v1 command and prevents your computer from accessing the hybrid solver.
When you call the LeapHybridSampler in your code, the Ocean SDK looks through your configuration file and sees that your default is to use QPU solvers. Again, this prevents your code from connecting to the solver.
The Solution
The solution is to remove the [defaults] profile completely, or just remove the following line:
client = qpu
Now, as long as your API token has access to the hybrid solver, you should be able to access it.
Comments
Please sign in to leave a comment.