Skip to main content

A minimal client for interacting with D-Wave cloud resources.

Project description

Last version on PyPI Linux/Mac build status Windows build status Coverage report Documentation status

D-Wave Cloud Client

D-Wave Cloud Client is a minimal implementation of the REST interface used to communicate with D-Wave Sampler API (SAPI) servers.

SAPI is an application layer built to provide resource discovery, permissions, and scheduling for quantum annealing resources at D-Wave Systems. This package provides a minimal Python interface to that layer without compromising the quality of interactions and workflow.

Example

This example instantiates a D-Wave Cloud Client and solver based on the local system`s auto-detected default configuration file and samples a random Ising problem tailored to fit the solver`s graph.

import random
from dwave.cloud import Client

# Connect using the default or environment connection information
with Client.from_config() as client:

    # Load the default solver
    solver = client.get_solver()

    # Build a random Ising model to exactly fit the graph the solver supports
    linear = {index: random.choice([-1, 1]) for index in solver.nodes}
    quad = {key: random.choice([-1, 1]) for key in solver.undirected_edges}

    # Send the problem for sampling, include solver-specific parameter 'num_reads'
    computation = solver.sample_ising(linear, quad, num_reads=100)

    # Print the first sample out of a hundred
    print(computation.samples[0])

Installation

Compatible with Python 2 and 3:

pip install dwave-cloud-client

To install from source (available on GitHub in dwavesystems/dwave-cloud-client repo):

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

License

Released under the Apache License 2.0. See LICENSE file.

Contribution

See CONTRIBUTING.rst file.

Project details


Release history Release notifications | RSS feed

This version

0.4.6

Download files

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

Source Distribution

dwave-cloud-client-0.4.6.tar.gz (40.2 kB view details)

Uploaded Source

Built Distribution

dwave_cloud_client-0.4.6-py2.py3-none-any.whl (45.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file dwave-cloud-client-0.4.6.tar.gz.

File metadata

File hashes

Hashes for dwave-cloud-client-0.4.6.tar.gz
Algorithm Hash digest
SHA256 bbc0945be5d2f05afb95a2d366cfaff338d7534bc73d808a19b8d29e77f12740
MD5 167a1ada99d3627b33c423ad1546c9bb
BLAKE2b-256 fd66e5ec4ecd674b110586b08b577846db7e9858a384185ba6a6da241f659267

See more details on using hashes here.

Provenance

File details

Details for the file dwave_cloud_client-0.4.6-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for dwave_cloud_client-0.4.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 f6acaec5832867b334912f91c3deb16f64106d535e16256d2ce03efca9eaf1e8
MD5 a20811e43dfdddbd02a9e50e3db1b5df
BLAKE2b-256 ab480928adbc72cd3bff9d0125780efb13d3c0dd5893c70f3087f26ba43c06b8

See more details on using hashes here.

Provenance

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