Skip to content

photon3710/ising

 
 

Repository files navigation

Ising

K. Jałowiecki, M. Rams and B. Gardas, "Brute-forcing spin-glass problems with CUDA", in preparation.

Documentation: https://ising.readthedocs.io/en/latest/

Ising is an open source package to solve small but otherwise abritrary spin-glass Ising models using exhaustive (brute force) search. It can serve as an excellent tool for benchmarking other solvers or generating low energy spectra (desirable e.g. for machine learning related tasks). The package is compatible with *NIX systems (and in principle should work on Windows too). Ising supports parallel computation via OpenMP or GPU, provided it has been build with CUDA support.

Build status

Build Status Documentation Status

Installation

If you are running Linux and are interested in CPU-only implementation, you can install Ising from Python Package Index.

pip install ising

For other installation options, including building with CUDA support, please visit the official documentation.

Usage example

The below example finds 4 lowest energy states of the Ising model defined by


H(s0, s1, s2) =  − 2s0s1 + 3s1s2 + 2.5s2s3 − s0

import ising

graph = {(0, 1): 2, (1, 2): -3, (2, 3): 2.5, (0, 0): 1}

result = ising.search(graph, num_states=4)
print(result.energies)

For advanced usage, including GPU support and tweaking execution parameters see documentation.

About

Ising: a Python package for exactly solving abritrary Ising model instances using exhaustive search.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Cuda 34.2%
  • Python 29.9%
  • Fortran 20.2%
  • C++ 14.8%
  • Shell 0.9%