Alexander Condello

Results 146 issues of Alexander Condello

Reasons: * It is not (as far as I know) widely used * It requires significant QPU time to configure - we even [have a warning to that effect](https://github.com/dwavesystems/dwave-system/blob/91a5b5ccd746906b701fe22adca0bd5716f79a47/dwave/system/composites/virtual_graph.py#L78) *...

discussion

Right now the default is the minimum, which is sensible. But it would be nice to also be able to specify "two times the minimum" or similar.

feature-request/enhancement

The `dwave.system.testing` module requires [dwave-tabu](https://github.com/dwavesystems/dwave-tabu), see https://github.com/dwavesystems/dwave-system/blob/082c95b2d48c481a7dcf9d72d16a118a06735c68/dwave/system/testing.py#L20 This is probably an over-large dependency for a testing module. We should consider other options. To throw out an idea: * We could...

discussion

https://github.com/dwavesystems/dwave-system/blob/c8373d0b7cf47adf068e44dca7413979567c3463/dwave/embedding/chain_strength.py#L39 https://arxiv.org/abs/2006.04913

documentation

[minorminer 0.2.0](https://github.com/dwavesystems/minorminer/releases/tag/0.2.0) includes clique embedding support. We should deprecate the existing clique embedding code.

See https://github.com/dwavesystems/dwave-cloud-client/issues/408

This will build the cache for each sampler available to the default profile. ``` from dwave.cloud import Client from dwave.system import DWaveCliqueSampler client = Client.from_config() for solver in client.get_solvers(qpu=True): id_...

feature-request/enhancement

Right now when the embedding composite fails to embed a problem it raises a `ValueError`. It would be good to raise a more specific error class so that I can...

feature-request/enhancement

Because the `find_clique_embedding` functions take a size as input, we could fairly easily add caching. Something like ``` emb = chimera.find_clique_embedding(7, 16, 16, 4, use_cache=True) ``` We would also need...

feature-request/enhancement