A minimal client for interacting with D-Wave cloud resources.
Project description
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.8+:
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.
Contributing
Ocean’s contributing guide has guidelines for contributing to Ocean packages.
Release Notes
D-Wave Cloud Client uses reno to manage its release notes.
When making a contribution to D-Wave Cloud Client that will affect users, create a new release note file by running
reno new your-short-descriptor-here
You can then edit the file created under releasenotes/notes/. Remove any sections not relevant to your changes. Commit the file along with your changes.
See reno’s user guide for details.
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
Built Distribution
Hashes for dwave-cloud-client-0.12.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c8dbef15bada3ae39098198772a2e1f153d69d02c4ebc4b84d5a7e2ad59f966 |
|
MD5 | d1f479bad93884b53f57a5e1da89644b |
|
BLAKE2b-256 | 4883bcb5d475864a95be66899d3782611aec02ef8cd288189daf94b70e195624 |
Hashes for dwave_cloud_client-0.12.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe42854a2531f00ef7e5bb6c1006e4cc573c897b3e4d9908f8b0d1b74443c61d |
|
MD5 | de8f3e8a9aef2cfa20ada15bb3168191 |
|
BLAKE2b-256 | 71186c5acc12b368e6648dea51d7a2ea779f914c689bda9f54e80f821527ee9b |