dwave-graphs#

Reference documentation for dwave-graphs:

About dwave-graphs#

dwave-graphs provides tools for working with quantum processing unit (QPU) topology graphs, such as the Pegasus used on the AdvantageTM quantum computer, and implementations of graph-theory algorithms on D-Wave quantum computers and other binary quadratic model (BQM) samplers.

This example generates a Pegasus graph of the size used by Advantage QPUs.

>>> import dwave.graphs
>>> graph = dwave.graphs.pegasus_graph(16)

Functions such as draw_pegasus() provide easy visualization for Pegasus graphs while functions such as maximum_cut() or min_vertex_cover() provide graph algorithms useful to optimization problems that fit well with D‑Wave quantum computers.

Like D‑Wave quantum computers, all other supported samplers must have sample_qubo and sample_ising methods for solving Ising and QUBO models and return an iterable of samples in order of increasing energy.

Usage Information#