Releases: dwavesystems/dwave-system
Releases · dwavesystems/dwave-system
1.32.0
New Features
- Add
ParallelEmbeddingComposite
, a generalization of theTilingComposite
that can handle bigger and non-Chimera source graphs on any structured graph supported byDWaveSampler
(including Zephyr). See #569.
Deprecation Notes
TilingComposite
is deprecated in favor ofParallelEmbeddingComposite
and it will be removed in dwave-system 2.0. See #577.
Upgrade Notes
- Switch from pkgutil to native namespace package. See #571.
1.31.0
1.30.0
1.29.1
1.29.0
New Features
-
Add support for context manager protocol to all samplers. See #91, #556.
The recommended way to use DWaveSampler is now from a runtime context:
with DWaveSampler() as sampler: sampler.sample_ising(...)
Alternatively, call the close() method to terminate the sampler resources:
sampler = DWaveSampler() ... sampler.close()
1.28.0
New Features
-
Add option to specify sampler used in
MockDWaveSampler
(new default is nowSteepestDescentSampler
). See #537. -
Add support for Python 3.13. See #541.
-
Add
LinearAncillaComposite
. See #530.
Fixes
- Fix inconsistent sampleset interface across hybrid samplers - we make sure every
SampleSet
returned now has a workingwait_id()
method. See #544.
Upgrade Notes
1.27.0
1.26.0
1.25.0
1.25.0.dev0
New Features
- Add
LeapHybridNLSampler