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

dwave-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.

The example below 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

Requires Python 3.5+:

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

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.8.1.tar.gz (70.5 kB view details)

Uploaded Source

Built Distribution

dwave_cloud_client-0.8.1-py3-none-any.whl (85.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dwave-cloud-client-0.8.1.tar.gz
  • Upload date:
  • Size: 70.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.1

File hashes

Hashes for dwave-cloud-client-0.8.1.tar.gz
Algorithm Hash digest
SHA256 26086664157f47b925f1b500f757a9337918c758975c9bc4b8cd730e95212f50
MD5 5837d729fea42384f4ce38a60d249307
BLAKE2b-256 4ac8ef0d2f7badfb2585f928b5e1042268312e2e35c21ee6d685fcde4b20072d

See more details on using hashes here.

Provenance

File details

Details for the file dwave_cloud_client-0.8.1-py3-none-any.whl.

File metadata

  • Download URL: dwave_cloud_client-0.8.1-py3-none-any.whl
  • Upload date:
  • Size: 85.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.1

File hashes

Hashes for dwave_cloud_client-0.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f5e6c4bdcfa7d1f7f5236067f5459457863be1e2f93bc85e5db54fd3173c28bd
MD5 69ffb3d8b2c036357676001a2d05c45f
BLAKE2b-256 2e391d11501f3cacffa868ba0a0991bdba82ee4a999e22e71f6fea046796fcfd

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