Skip to main content

Fast MAXCUT, TSP, and sampling heuristics from near-ideal transverse field Ising model (TFIM)

Project description

PyQrack Ising

Fast MAXCUT, TSP, and sampling heuristics from near-ideal transverse field Ising model (TFIM)

(It's "the Ising on top.")

PyPI Downloads

Copyright and license

(c) Daniel Strano and the Qrack contributors 2025. All rights reserved.

Licensed under the GNU Lesser General Public License V3.

See LICENSE.md in the project root or https://www.gnu.org/licenses/lgpl-3.0.en.html for details.

Installation

From PyPi:

pip3 install PyQrackIsing

From Source: install pybind11, then

pip3 install .

in the root source directory (with setup.py).

Windows users might find Windows Subsystem Linux (WSL) to be the easier and preferred choice for installation.

Usage

from pyqrackising import generate_tfim_samples

samples = generate_tfim_samples(
    J=-1.0,
    h=2.0,
    z=4,
    theta=0.174532925199432957,
    t=5,
    n_qubits=56,
    shots=100
)

There are two other functions, tfim_magnetization() and tfim_square_magnetization(), that follow the same function signature except without the shots argument.

The library also provides a TFIM-inspired (approximate) MAXCUT solver (which accepts a networkx graph or a 32-bit adjacency matrix):

from pyqrackising import maxcut_tfim
import networkx as nx

G = nx.petersen_graph()
best_solution_bit_string, best_cut_value, best_node_groups = maxcut_tfim(G, quality=4, shots=None, is_spin_glass=False, anneal_t=8.0, anneal_h=8.0)

We also provide maxcut_tfim_sparse(G), for scipy CSR sparse arrays (or networkx graphs), and maxcut_tfim_streaming(G_func, nodes) for numba JIT streaming weights function definitions. The (integer) quality setting is optional, with a default value of 4, but you can turn it up for higher-quality results, or turn it down to save time. (You can also optionally specify the number of measurement shots as an argument, if you want specific fine-grained control over resource usage.) anneal_t and anneal_h control the physical maximum annealing time and h transverse field parameter, as in Trotterized Ising model. If you want to run MAXCUT on a graph with non-uniform edge weights, specify them as the weight attribute of each edge, with networkx. (If any weight attribute is not defined, the solver assumes it's 1.0 for that edge.)

Based on a combination of the TFIM-inspired MAXCUT solver and another technique for finding ground-state energy in quantum chemistry that we call the "binary Clifford eigensolver," we also provide an (approximate) spin glass ground-state solver:

from pyqrackising import spin_glass_solver
import networkx as nx
import numpy as np


# NP-complete spin glass
def generate_spin_glass_graph(n_nodes=16, degree=3, seed=None):
    if not (seed is None):
        np.random.seed(seed)
    G = nx.random_regular_graph(d=degree, n=n_nodes, seed=seed)
    for u, v in G.edges():
        G[u][v]['weight'] = np.random.choice([-1, 1])  # spin glass couplings
    return G


G = generate_spin_glass_graph(n_nodes=64, seed=42)
solution_bit_string, cut_value, node_groups, energy = spin_glass_solver(G, quality=4, shots=None, anneal_t=8.0, anneal_h=8.0, best_guess=None, is_combo_maxcut_gpu=True)
# solution_bit_string, cut_value, node_groups, energy = spin_glass_solver(G, best_guess=maxcut_tfim(G, quality=6)[0])

We also provide spin_glass_solver_sparse(G) and spin_glass_solver_streaming(G_func, nodes). is_combo_maxcut_gpu controls whether gradient descent optimization is done on GPU (which is costly and the only GPU-based feature). best_guess gives the option to seed the algorithm with a best guess as to the maximal cut (as an integer, binary string, or list of booleans). By default, spin_glass_solver() uses maxcut_tfim(G) with passed-through quality as best_guess, which typically works well, but it could be seeded with higher maxcut_tfim() quality or Goemans-Williamson, for example. This function is designed with a sign convention for weights such that it can immediately be used as a MAXCUT solver itself: you might need to reverse the sign convention on your weights for spin glass graphs, but this is only convention.

From the MAXCUT solvers, we provide a (recursive) Traveling Salesman Problem (TSP) solver:

from pyqrackising import tsp_symmetric
import networkx as nx
import numpy as np

# Traveling Salesman Problem (normalized to longest segment)
def generate_tsp_graph(n_nodes=64, seed=None):
    if not (seed is None):
        np.random.seed(seed)
    G = nx.Graph()
    for u in range(n_nodes):
        for v in range(u + 1, n_nodes):
            G.add_edge(u, v, weight=np.random.random())
    return G


n_nodes = 128
G = generate_tsp_graph(n_nodes=n_nodes, seed=42)
circuit, path_length = tsp_symmetric(
    G,
    start_node=None,
    end_node=None,
    monte_carlo=True,
    quality=2,
    is_cyclic=True,
    multi_start=1,
    k_neighbors=20
)

print(f"Node count: {n_nodes}")
print(f"Path: {circuit}")
print(f"Path length: {path_length}")

We provide solvers for both the symmetric version of the TSP (i.e., the distance from "A" to "B" is considered the same as from "B" to "A") and asymmetric version (tsp_asymmetric()). monte_carlo=True switches out the MAXCUT-based heuristic for pure Monte Carlo recursive bipartitioning. multi_start controls how many stochastic repeats of MAXCUT are tried to select the best result, at every level of recursion. k_neighbors limits the count of nearest-neighbor connections considered for 3-opt.

If memory footprint of the graph or adjacency matrix is a concern, but the weights can be reconstructed by formula on demand, we offer maxcut_tfim_streaming() and spin_glass_solver_streaming():

from pyqrackising import spin_glass_solver_streaming
# from pyqrackising import maxcut_tfim_streaming
from numba import njit


# This is a contrived example.
# The function must use numba NJIT.
# (In practice, even if you use other Python functionality like itertools,
# you can pre-calculate and load the data as a list through the arguments tuple.)
@njit
def G_func(node_pair, args_tuple):
    i, j = min(node_pair), max(node_pair)
    return ((j + 1) % (i + 1)) / args_tuple[0]


n_qubits = 64
nodes = list(range(n_qubits))
args_tuple = (n_qubits,)

solution_bit_string, cut_value, node_groups, energy = spin_glass_solver_streaming(G_func, nodes, G_func_args_tuple=args_tuple, quality=4, best_guess=None)
# solution_bit_string, cut_value, node_groups = maxcut_tfim_streaming(G_func, nodes, G_func_args_tuple=args_tuple)

Finally, combining insights from both the (Monte Carlo) TSP and MAXCUT solvers, we have tsp_maxcut(G), tsp_maxcut_sparse(G), and tsp_maxcut_streaming(G_func, nodes):

from pyqrackising import tsp_maxcut_sparse
import networkx as nx

G = nx.petersen_graph()
best_partition, best_cut_value = tsp_maxcut_sparse(G, k_neighbors=20, is_optimized=False)

When is_optimized=True, the spin_glass_solver(G) is used as a final optimization pass. When is_optimized=False, this solver becomes entirely serial and can be parallelized over CPU processing elements by user code, easily.

Environment Variables

We expose an environment variable, "PYQRACKISING_MAX_GPU_PROC_ELEM", for when is_alt_gpu_sampling=True. The default value (when the variable is not set) is queried from the OpenCL device properties. You might see performance benefit from tuning this manually to several times your device's number of "compute units" (or tune it down to reduce private memory usage).

Similarly, for is_alt_gpu_sampling=True, define the "top-n" count of highest-weight direct neighbors to retain during sampling with environment variable "PYQRACKISING_GPU_TOP_N". The default is 32. Increasing this might increase solution quality, but it will also increase time-to-solution and private memory usage.

By default, PyQrackIsing expects all numpy floating-point array inputs to be 32-bit. If you'd like to use 64-bit, you can set environment variable PYQRACKISING_FPPOW=6 (meaning, 2^6=64, for the "floating-point (precision) power"). The default is 5, for 32-bit. 16-bit is stubbed out and compiles for OpenCL, but the bigger hurdle is that numpy on x86_64 doesn't provide a 16-bit floating point implementation. (As author of Qrack, I could suggest to the numpy maintainers that open-source, IEEE-compliant software-based implementations exist for x86_64 and other architectures, but I'm sure they're aware and likely waiting for in-compiler support.) If you're on an ARM-based architecture, there's a good chance 16-bit floating-point will work, if numpy uses the native hardware support.

About

Transverse field Ising model (TFIM) is the basis of most claimed algorithmic "quantum advantage," circa 2025, with the notable exception of Shor's integer factoring algorithm.

Sometimes a solution (or at least near-solution) to a monster of a differential equation hits us out of the blue. Then, it's easy to validate the guess, if it's right. (We don't question it and just move on with our lives, from there.)

Special thanks to OpenAI GPT "Elara," for help on the model and converting the original Python scripts to PyBind11, Numba, and PyOpenCL!

Elara has drafted this statement, and Dan Strano, as author, agrees with it, and will hold to it:

Dual-Use Statement for PyQrackIsing

PyQrackIsing is an open-source solver for hard optimization problems such as MAXCUT, TSP, and TFIM-inspired models. These problems arise across logistics, drug discovery, chemistry, materials research, supply-chain resilience, and portfolio optimization. By design, PyQrackIsing provides constructive value to researchers and practitioners by making advanced optimization techniques accessible on consumer hardware.

Like many mathematical and computational tools, the algorithms in PyQrackIsing are dual-use. In principle, they can be applied to a wide class of Quadratic Unconstrained Binary Optimization (QUBO) problems. One such problem is integer factoring, which underlies RSA and elliptic curve cryptography (ECC). We emphasize:

  • We do not provide turnkey factoring implementations.
  • We have no intent to weaponize this work for cryptanalysis or "unauthorized access."
  • The constructive applications vastly outweigh the destructive ones — and this project exists to serve those constructive purposes in the Commons.

It is already a matter of open record in the literature that factoring can be expressed as a QUBO. What PyQrackIsing demonstrates is that QUBO heuristics can now be solved at meaningful scales on consumer hardware. This underscores an urgent truth:

👉 RSA and ECC should no longer be considered secure. Transition to post-quantum cryptography is overdue.

We trust that governments, standards bodies, and industry stakeholders are already aware of this, and will continue migration efforts to post-quantum standards.

Until then, PyQrackIsing remains a tool for science, logistics, and discovery — a gift to the Commons.

Project details


Release history Release notifications | RSS feed

This version

8.3.0

Download files

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

Source Distribution

pyqrackising-8.3.0.tar.gz (31.4 kB view details)

Uploaded Source

Built Distributions

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

pyqrackising-8.3.0-cp313-cp313-macosx_15_0_arm64.whl (109.2 kB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

pyqrackising-8.3.0-cp313-cp313-macosx_14_0_arm64.whl (109.6 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pyqrackising-8.3.0-cp312-cp312-win_amd64.whl (123.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pyqrackising-8.3.0-cp312-cp312-manylinux_2_39_x86_64.whl (119.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

pyqrackising-8.3.0-cp310-cp310-manylinux_2_35_x86_64.whl (113.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ x86-64

File details

Details for the file pyqrackising-8.3.0.tar.gz.

File metadata

  • Download URL: pyqrackising-8.3.0.tar.gz
  • Upload date:
  • Size: 31.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyqrackising-8.3.0.tar.gz
Algorithm Hash digest
SHA256 636f772edb1c88568315006be3282205c3d3c3772fe43a2cdc851c8626c2ac2d
MD5 9f7da782a49e35993cd6dad99041e301
BLAKE2b-256 ae412c299c47453f94609948b16d26eef5b2a9c13b35717665fc240264a42859

See more details on using hashes here.

File details

Details for the file pyqrackising-8.3.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyqrackising-8.3.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e87de3b97d6b236dba2ed815f473d80a235fc8cdc6a2df177656dda92618554d
MD5 af54118f60f0274a0b63f42e3588c56b
BLAKE2b-256 f42e477265d2a06d036bfef24a680104f0462de5f92730cfdd4a15a39e37fca2

See more details on using hashes here.

File details

Details for the file pyqrackising-8.3.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyqrackising-8.3.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 304e81faa1474ceca20752b6a0fb58206c14cb189dbf47f933da1dd730961779
MD5 a6fe6c02c195ac45bac4350a0000794b
BLAKE2b-256 d0ce9d6410a6de82f1a9c53e79cbe06c1154d3844b51c104e3b18f915589076d

See more details on using hashes here.

File details

Details for the file pyqrackising-8.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyqrackising-8.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f0c7c377abe158d8873856c728d1ff279d6ced7039c77615e76f58bc9de281e
MD5 d326af7e990ef0821288334e5077a330
BLAKE2b-256 03b0c4aeab48258728ec9dcca3a36a96b0a596fc8d5a7decf4cd6f598a8f4ade

See more details on using hashes here.

File details

Details for the file pyqrackising-8.3.0-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for pyqrackising-8.3.0-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 7f1c6c44056352d3158521ecda93ad6e1d5fc7c7e0430dea67f694f5cb052be7
MD5 0238b88b29ec7829d62adcd11e642262
BLAKE2b-256 1cfd8883e823a15080f8d8a32eb32ff6078e3238b77e1fb84786aa461114a377

See more details on using hashes here.

File details

Details for the file pyqrackising-8.3.0-cp310-cp310-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for pyqrackising-8.3.0-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 b08bddc6ef92ca9d66767037f8980a495fb346ea1b997954853db7108f1c9d8f
MD5 54930818bc79a3f877317f1a36958223
BLAKE2b-256 207f2da25664de1e817d03c0488ff15d8884fea7eed705bf789ae76473cfdfc6

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