Skip to main content

Quantum annealing sampler using QuTiP sesolve

Project description

qutip-sampler

Tests codecov PyPI Python License: MIT

A dimod-compatible quantum annealing sampler backed by QuTiP sesolve.

It maps an Ising / QUBO problem onto a transverse-field Ising Hamiltonian, evolves the ground state via a linear annealing schedule, and draws bitstring samples from the final quantum state.

Installation

pip install qutip-sampler

Quick start

import dimod
from qutip_sampler import QuTipSampler

# SPIN (Ising) problem
bqm = dimod.BinaryQuadraticModel({'a': -1.0, 'b': -1.0}, {('a', 'b'): 0.5}, 0.0, 'SPIN')
result = QuTipSampler().sample(bqm, num_reads=100, seed=42)
print(result.first.sample)   # e.g. {'a': 1, 'b': 1}

# Ising directly
result = QuTipSampler().sample_ising({'a': -1.0}, {('a', 'b'): 0.5}, num_reads=50)

# QUBO
Q = {('x', 'x'): -1.0, ('y', 'y'): -1.0, ('x', 'y'): 0.5}
result = QuTipSampler().sample_qubo(Q, num_reads=50, seed=0)
print(result.first.sample)   # e.g. {'x': 1, 'y': 1}

Parameters

Parameter Default Description
anneal_time 10.0 Total annealing time T passed to sesolve
n_steps 200 Number of time steps in the annealing schedule
num_reads 100 Number of bitstring samples drawn from the final state
seed None RNG seed for reproducible sampling

anneal_time and n_steps can be set at construction time or overridden per call.

How it works

  1. Collect all variables from the problem and sort them.
  2. Build the Ising Hamiltonian H_ising = Σ hᵢ σᵢᶻ + Σ Jᵢⱼ σᵢᶻ σⱼᶻ.
  3. Build the transverse-field Hamiltonian H_T = −Σ σᵢˣ, whose ground state is |+⟩⊗ⁿ.
  4. Evolve H(t) = (1 − t/T) H_T + (t/T) H_ising from t=0 to t=T using QuTiP sesolve.
  5. Sample bitstrings from the probability distribution |ψ(T)|².

Release flow

Releases are fully automated via GitHub Actions:

  1. Every push / PR — the Tests workflow runs the test suite and uploads coverage to Codecov.
  2. On a version tag — the Publish workflow runs tests first, then builds and publishes to PyPI if they pass.

To cut a release:

uvx bump-my-version bump patch   # or minor / major
git push && git push --tags

bump-my-version updates the version in pyproject.toml, commits, and creates the tag. Pushing the tag triggers the publish workflow.

License

MIT

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

qutip_sampler-0.1.3.tar.gz (41.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qutip_sampler-0.1.3-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file qutip_sampler-0.1.3.tar.gz.

File metadata

  • Download URL: qutip_sampler-0.1.3.tar.gz
  • Upload date:
  • Size: 41.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for qutip_sampler-0.1.3.tar.gz
Algorithm Hash digest
SHA256 3b9922cd11e8d4aff77238a099b01b1c53458cd20288e7cb8ae835a583a0905c
MD5 5b446aa161e2051d4c3fd51ba3f6c328
BLAKE2b-256 8fcf569e70102a1cf3795d93cde930bcc05be7a3365450017565159d47c301eb

See more details on using hashes here.

File details

Details for the file qutip_sampler-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: qutip_sampler-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for qutip_sampler-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3875e5707b8a6112ddc9e569d5243831ef8d486044fa0b3b65917ecc4ba6da4e
MD5 fdf1c11e286a8c520f6d80fdea129d13
BLAKE2b-256 4345669f57064e9310bb5e243486e386a6c9fbae22e9aa13b9ed06d373f3fa76

See more details on using hashes here.

Supported by

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