Skip to main content

No project description provided

Project description

https://img.shields.io/pypi/v/dwave-qbsolv.svg https://codecov.io/gh/dwavesystems/qbsolv/branch/master/graph/badge.svg https://travis-ci.org/dwavesystems/qbsolv.svg?branch=master https://ci.appveyor.com/api/projects/status/y2f7rqxvepn4ak4b/branch/master?svg=true https://readthedocs.com/projects/d-wave-systems-qbsolv/badge/?version=latest https://circleci.com/gh/dwavesystems/qbsolv.svg?style=svg

Qbsolv

NOTICE: This repository is deprecated as of the end of 2021. Support will be discontinued after March 2022. Please update your code to use Ocean’s dwave-hybrid or Leap’s quantum-classical hybrid solvers instead.

A decomposing solver that finds a minimum value of a large quadratic unconstrained binary optimization (QUBO) problem by splitting it into pieces. The pieces are solved using a classical solver running the tabu algorithm. qbsolv also enables configuring a D-Wave system as the solver.

Installation or Building

Python

A wheel might be available for your system on PyPI. Source distributions are provided as well.

pip install dwave-qbsolv

Alternatively, you can build the library with setuptools.

pip install -r python/requirements.txt
python setup.py install

C

To build the C library use cmake to generate a build command for your system. On Linux the commands would be something like this:

mkdir build; cd build
cmake ..
make

To build the command line interface turn the cmake option QBSOLV_BUILD_CMD on. The command line option for cmake to do this would be -DQBSOLV_BUILD_CMD=ON. To build the tests turn the cmake option QBSOLV_BUILD_TESTS on. The command line option for cmake to do this would be -DQBSOLV_BUILD_TESTS=ON.

Command Line Usage

qbsolv -i infile [-o outfile] [-m] [-T] [-n] [-S SubMatrix] [-w]
    [-h] [-a algorithm] [-v verbosityLevel] [-V] [-q] [-t seconds]

Description

qbsolv executes a quadratic unconstrained binary optimization (QUBO) problem represented in a file. It returns bit-vector results that minimizes—or optionally, maximizes—the value of the objective function represented by the QUBO. The problem is represented in QUBO(5) file format.

The QUBO input problem is not limited to the graph size or connectivity of a sampler, for example the D-Wave system.

Options are as follows:

-i infile
    Name of the file for the input QUBO. This option is mandatory.
-o outfile
    Optional output filename.
    Default is the standard output.
-a algorithm
    Optional selection for the outer loop algorithm.  Default is o.
    'o' for original qbsolv method. Submatrix based upon change in energy.
    'p' for path relinking.  Submatrix based upon differences of solutions
-m
    Optional selection of finding the maximum instead of the minimum.
-T target
    Optional argument target value of the objective function. Stops execution when found.
-t timeout
    Optional timeout value. Stops execution when the elapsed CPU time equals or
    exceeds it. Timeout is only checked after completion of the main
    loop. Other halt values such as 'target' and 'repeats' halt before 'timeout'.
    Default value is 2592000.0.
-n repeats
    Optional number of times the main loop of the algorithm is repeated with
    no change in optimal value found before stopping.
    Default value is 50.
-S subproblemSize
    Optional size of the sub-problems into which the QUBO is decomposed.
    If no "-S 0" or "-S" argument is present, uses the size specified in the
    embedding file found in the workspace set up by DW. If no DW environment is
    established, value defaults to 47 and uses the tabu solver on subproblems.
    If a value is specified, subproblems based on that size are solved with the
    tabu solver.
-w
    If present, the QUBO matrix and result are printed in .csv format.
-h
    If present, prints the help or usage message for qbsolv and exits without execution.
-v verbosityLevel
    Optional setting of the verbosity of output. The default verbosityLevel of
    0 outputs the number of bits in the solution, the solution,
    and the energy of the solution.  A verbosityLevel of 1 outputs the same
    information for multiple solutions, if found. A verbosityLevel of 2
    also outputs more detailed information at each step of the algorithm. The
    information increases for verbosity levels of up to 4.
-V
    If present, prints the version number of the qbsolv program and exits without execution.
-q
    If present, prints the format of the QUBO file.
-r seed
    Used to reset the seed for the random number generation.

qbsolv QUBO Input File Format

A .qubo file contains data that describes an unconstrained quadratic binary optimization problem. It is an ASCII file comprising four types of lines:

  1. Comments defined by a “c” in column 1. Comments may appear anywhere in the file, and are ignored.

  2. Program line defined by a “p” in the first column. A single program line must be the first non-comment line in the file. The program line has six required fields separated by space(s), as in this example:

    p   qubo  topology   maxNodes   nNodes   nCouplers

    where:

    p          Problem line sentinel.
    qubo       File type identifier.
    topology   String that identifies the topology of the problem and the specific
               problem type. For an unconstrained problem, target is "0" or
               "unconstrained." In future implementations, valid strings
               might include "chimera128" or "chimera512" (among others).
    maxNodes   Number of nodes in the topology.
    nNodes     Number of nodes in the problem (nNodes <= maxNodes).
               Each node has a unique number and must take a value in the range
               {0 - (maxNodes-1)}. A duplicate node number is an error. Node
               numbers need not be in order, and need not be contiguous.
    nCouplers  Number of couplers in the problem. Each coupler is a unique connection
               between two different nodes. The maximum number of couplers is (nNodes)^2.
               A duplicate coupler is an error.
  3. nNodes clauses. Each clause is made up of three numbers, separated by one or more blanks. The first two numbers must be integers and are the number for this node (repeated). The node number must be in range {0 , (maxNodes-1)}. The third value is the weight associated with the node. Weight may be an integer or float, and can take on any positive or negative value, or be set to zero.

  4. nCouplers clauses. Each clause is made up of three numbers, separated by one or more blanks. The first two numbers, (i and j), are the node numbers for this coupler and must be different integers, where (i < j).Each number must be one of the nNodes valid node numbers (and thus in range {0, (maxNodes-1)}). The third value is the strength associated with the coupler. Strength may be an integer or float, and can take on any positive or negative value, but not zero. Every node must connect with at least one other node (thus must have at least one coupler connected to it).

Here is a simple QUBO file example for an unconstrained QUBO with 4 nodes and 6 couplers. This example is provided to illustrate the elements of a QUBO benchmark file, not to represent a real problem.

| <--- column 1
c
c  This is a sample .qubo file
c  with 4 nodes and 6 couplers
c
p  qubo  0  4  4  6
c ------------------
0  0   3.4
1  1   4.5
2  2   2.1
3  3   -2.4
c ------------------
0  1   2.2
0  2   3.4
1  2   4.5
0  3   -2
1  3   4.5678
2  3   -3.22

Library usage

TODO

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dwave-qbsolv-0.3.4.tar.gz (91.2 kB view hashes)

Uploaded Source

Built Distributions

dwave_qbsolv-0.3.4-cp310-cp310-win_amd64.whl (58.1 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

dwave_qbsolv-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.3 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dwave_qbsolv-0.3.4-cp310-cp310-macosx_10_9_x86_64.whl (68.7 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ x86-64

dwave_qbsolv-0.3.4-cp39-cp39-win_amd64.whl (58.1 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

dwave_qbsolv-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.2 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dwave_qbsolv-0.3.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (206.7 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

dwave_qbsolv-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl (68.6 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

dwave_qbsolv-0.3.4-cp38-cp38-win_amd64.whl (58.5 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

dwave_qbsolv-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.4 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dwave_qbsolv-0.3.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (217.6 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

dwave_qbsolv-0.3.4-cp38-cp38-macosx_10_9_x86_64.whl (68.1 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

dwave_qbsolv-0.3.4-cp37-cp37m-win_amd64.whl (57.5 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

dwave_qbsolv-0.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (271.1 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

dwave_qbsolv-0.3.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (204.1 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.5+ x86-64

dwave_qbsolv-0.3.4-cp37-cp37m-macosx_10_9_x86_64.whl (67.6 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

dwave_qbsolv-0.3.4-cp36-cp36m-win_amd64.whl (57.5 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

dwave_qbsolv-0.3.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272.5 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

dwave_qbsolv-0.3.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (205.8 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.5+ x86-64

dwave_qbsolv-0.3.4-cp36-cp36m-macosx_10_9_x86_64.whl (67.6 kB view hashes)

Uploaded CPython 3.6m macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page