Alexander Condello
Alexander Condello
With https://github.com/dwavesystems/dwave-cloud-client/pull/530, we are pretty close to being able to implement this. Both for large `num_reads` and for too long runtimes. IMO, there is a pretty big switch between single...
Yes this is being considered. No timeline yet, though we have gotten this request in a few places so we will prioritise it as a feature. The feature added in...
#191 gets us part of the way there. However, at the moment we cannot use the `ScaleComposite` as an intermediate composite between the `VirtualGraphComposite` and a `DWaveSampler` without also explicitly...
One issue is that there is no way (at the moment) to tell whether a bqm can be used with a FileView other than to try. An obvious solution would...
You can also do `SpinReversalTransfromComposite(DWaveCliqueSampler())`, is SRTs on the logical problem good enough or do you need them on the embedded problem?
I don't love the switching behavior of not using the extended J range based on a seemingly unrelated parameter - we know the relation but the user probably wouldn't intuit...
Hi @kumagaimasahito, I think it would be better to implement this as a `close` method. The reason is that it is allowed (though poor practice) to do ``` sampler =...
One thing we could do is only keep the thread pool open if inside a context. So ``` sampler = DWaveSampler() sampler.sample_ising(...) sampler.sample_ising(...) ``` would be equivalent (from a cloud-client...
Thanks, good catch! Do you want to make a pr with the change?
If you change `ss.done()` to `ss._future.done()` does the behaviour stay the same? Or do you get an `AttributeError`?