dwave.samplers.SteepestDescentSolver.sample#
- SteepestDescentSolver.sample(bqm: BinaryQuadraticModel, num_reads: int | None = None, initial_states: Sequence[float | floating | integer] | Mapping[Hashable, float | floating | integer] | Tuple[Sequence[float | floating | integer], Sequence[Hashable]] | Tuple[ndarray, Sequence[Hashable]] | ndarray | Sequence[Sequence[float | floating | integer]] | Tuple[Sequence[Sequence[float | floating | integer]], Sequence[Hashable]] | Sequence[Sequence[float | floating | integer] | Mapping[Hashable, float | floating | integer] | Tuple[Sequence[float | floating | integer], Sequence[Hashable]] | Tuple[ndarray, Sequence[Hashable]] | ndarray] | Iterator[Sequence[float | floating | integer] | Mapping[Hashable, float | floating | integer] | Tuple[Sequence[float | floating | integer], Sequence[Hashable]] | Tuple[ndarray, Sequence[Hashable]] | ndarray] | None = None, initial_states_generator: Literal['none', 'tile', 'random'] = 'random', seed: int | None = None, large_sparse_opt: bool = False, **kwargs) SampleSet [source]#
Find minima of a binary quadratic model.
Starts from
initial_states
, and converges to local minima using discrete steepest-descent method.- Parameters:
bqm – Binary quadratic model to be sampled.
num_reads – Number of reads. Each read is generated by one run of the steepest descent algorithm. If
num_reads
is not explicitly given, it is selected to match the number of initial states given. If initial states are not provided, only one read is performed.initial_states – One or more samples, each defining an initial state for all the problem variables. Initial states are given one per read, but if fewer than
num_reads
initial states are defined, additional values are generated as specified byinitial_states_generator
. Seeas_samples()
for a description of “samples-like”.initial_states_generator –
Defines the expansion of
initial_states
if fewer thannum_reads
are specified:- ”none”:
If the number of initial states specified is smaller than
num_reads
, raisesValueError
.
- ”tile”:
Reuses the specified initial states if fewer than
num_reads
or truncates if greater.
- ”random”:
Expands the specified initial states with randomly generated states if fewer than
num_reads
or truncates if greater.
seed – 32-bit unsigned integer seed to use for the PRNG. Specifying a particular seed with a constant set of parameters produces identical results. If not provided, a random seed is chosen.
large_sparse_opt – Use optimizations for large and sparse problems (search tree for next descent variable instead of linear array).
- Returns:
A dimod.SampleSet for the binary quadratic model.
The info field of the sample set contains three categories of timing information: preprocessing, sampling, and postprocessing time. All timings are reported in units of nanoseconds. Preprocessing time is the total time spent converting the BQM variable type (if required) and parsing input arguments. Sampling time is the total time the algorithm spent in sampling states of the binary quadratic model. Postprocessing time is the total time spent reverting variable type and creating a dimod.SampleSet.
Note
Number of descents (single variable flips) taken to reach the local minimum for each sample is stored in a data vector called
num_steps
.Examples
This example samples a simple two-variable Ising model.
>>> import dimod >>> bqm = dimod.BQM.from_ising({'a': -1}, {'ab': 1}) ... >>> from dwave.samplers import SteepestDescentSampler >>> sampler = SteepestDescentSampler() ... >>> sampleset = sampler.sample(bqm) >>> print(sampleset) a b energy num_oc. num_st. 0 +1 -1 -2.0 1 0 ['SPIN', 1 rows, 1 samples, 2 variables]
Run steepest descent one million times (takes ~150ms on an average laptop), converging to local minima, each time starting from a random state:
>>> bqm = dimod.BQM.from_ising({}, {'ab': 1}) >>> sampler = SteepestDescentSampler() ... >>> samples = sampler.sample(bqm, num_reads=10**6) >>> print(samples.aggregate()) a b energy num_oc. num_st. 0 -1 +1 -1.0 500115 1 1 +1 -1 -1.0 499885 1 ['SPIN', 2 rows, 1000000 samples, 2 variables]
Use a combination of one fixed initial state and two randomly generated ones to sample from a simple convex Ising problem with global minimum at
(-1,-1)
:>>> bqm = dimod.BQM.from_ising({'x': 2, 'y': 2}, {'xy': -1}) >>> sampler = SteepestDescentSampler() ... >>> samples = sampler.sample(bqm, initial_states=([1, 1], 'xy'), num_reads=3) >>> print(samples) x y energy num_oc. num_st. 0 -1 -1 -5.0 1 2 1 -1 -1 -5.0 1 1 2 -1 -1 -5.0 1 2 ['SPIN', 3 rows, 3 samples, 2 variables]
Notice it required 2 variable flips (
num_steps
field in the last column) to reach the minimum state,(-1, -1)
, from the initial state,(1, 1)
.