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=2, is_base_maxcut_gpu=True, is_alt_gpu_sampling=True)

We also provide maxcut_tfim_sparse(G), for scipy CSR sparse arrays (or networkx graphs). The (integer) quality setting is optional, with a default value of 2, 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.) is_base_maxcut_gpu enables or disables GPU execution. is_alt_gpu_sampling is False by default and, if set to True, will dispatch almost the entire algorithm on GPU, instead of just the TFIM-heuristic component (although solution quality is often lower). 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=2, best_guess=None, is_base_maxcut_gpu=True, is_alt_gpu_sampling=True, 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), for scipy (32-bit) upper-triangular CSR sparse arrays (or networkx graphs). The (integer) default quality setting is 2. is_combo_maxcut_gpu controls whether gradient descent optimization is done on GPU (which is the most costly GPU-based feature), while is_base_maxcut_gpu is passed through the underlying maxcut_tfim(G) solver. 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 spin_glass_solver(), 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=6, best_guess=None)
# solution_bit_string, cut_value, node_groups = maxcut_tfim_streaming(G_func, nodes, G_func_args_tuple=args_tuple)

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.

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

Download files

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

Source Distribution

pyqrackising-6.0.0.tar.gz (28.5 kB view details)

Uploaded Source

Built Distributions

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

pyqrackising-6.0.0-cp313-cp313-macosx_15_0_arm64.whl (107.4 kB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

pyqrackising-6.0.0-cp313-cp313-macosx_14_0_arm64.whl (107.8 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pyqrackising-6.0.0-cp312-cp312-win_amd64.whl (121.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pyqrackising-6.0.0-cp312-cp312-manylinux_2_39_x86_64.whl (117.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

pyqrackising-6.0.0-cp310-cp310-manylinux_2_35_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyqrackising-6.0.0.tar.gz
Algorithm Hash digest
SHA256 7c28f9aaa3e57849ae62f8064a62ce1ab48f7d1f873364d07c87507fc7b1e1b0
MD5 4dc1dd0ef9bc0982437b8ec12bbffdc9
BLAKE2b-256 bf1c99864c9c3a590f434a8bd58466ef80f7a38606d9422e1097db74eb169644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyqrackising-6.0.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 bcb42406cdb3425021ed33706cb38d9dfdc73d34db653540f63050149d275dbf
MD5 d11592b7726acc2e9dcb31f8530a504a
BLAKE2b-256 7b7b9bdbd03031464f4a93907911574121be2b3234711a76feab1d7e92cca191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyqrackising-6.0.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ef76cebc6239a7e98a2dea814549927bf473647f5c8fa90fd8aafff9b4978cbd
MD5 526fb646542a9a702f009c8503879e8d
BLAKE2b-256 d2b7c32f6b9d1fe48112ba714dde6e05c5cd564f80b51e99fa276b789dd5fcb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyqrackising-6.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 986419235332974ca1e090675f114f4fb582d0f8f8dd1b0640d9e4cd4df839d0
MD5 552123de4b8dbad62a3f08c56be2ef75
BLAKE2b-256 f074ac821e6039af5b26a7f7084c601563dbb47179515b23f2fb0ba87e5539e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyqrackising-6.0.0-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 ad5dab46ca35e5790423b7fea3ec72b88d692646ca5dd803a9b50a7347ab775b
MD5 1b198b1e12aa656cc3222c792518353a
BLAKE2b-256 a30b8195dea6059b4c22298b240037e3e6c11050b1451b789f75968004cae9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyqrackising-6.0.0-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 db5322a7f89e63c722f47b8219ee0ef1e2839526c16d221e4aed6551fc4741c4
MD5 7dadb928d9725fbc9d796446641d88b3
BLAKE2b-256 a791aa6e0c584830bd5a678dfaf5a95b5ae95038e9f1351286a6c415eedc0673

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