Skip to main content

This library provides routines for constructing and working with the intermediate representation of correlation functions. It provides:

  • on-the-fly computation of basis functions for arbitrary cutoff Λ

  • basis functions and singular values are accurate to full precision

  • routines for sparse sampling

Installation

Install via pip:

pip install sparse-ir

Install via conda:

conda install -c spm-lab sparse-ir

sparse-ir requires numpy, scipy, and pylibsparseir (a thin Python wrapper for the libsparseir C API).

To manually install the current development version, you can use the following:

# Only recommended for developers - no automatic updates!
git clone https://github.com/SpM-lab/sparse-ir
cd sparse-ir
uv sync

Note: uv is a fast Python package manager. If you don’t have it installed, you can install it with pip install uv or use pip install -e . instead.

Building documentation

To build the documentation locally, first install the development dependencies:

uv sync --group doc

Then build the documentation:

uv run sphinx-build -M html doc _build/html

The documentation will be available in _build/html/html/index.html.

Documentation and tutorial

Check out our comprehensive tutorial, where we self-contained notebooks for several many-body methods - GF(2), GW, Eliashberg equations, Lichtenstein formula, FLEX, … - are presented.

Refer to the API documentation for more details on how to work with the python library.

There is also a Julia library and (currently somewhat restricted) C library with Fortran bindings available for the IR basis and sparse sampling.

Getting started

Here is a full second-order perturbation theory solver (GF(2)) in a few lines of Python code:

# Construct the IR basis and sparse sampling for fermionic propagators
import sparse_ir, numpy as np
basis = sparse_ir.FiniteTempBasis('F', beta=10, wmax=8, eps=1e-6)
stau = sparse_ir.TauSampling(basis)
siw = sparse_ir.MatsubaraSampling(basis, positive_only=True)

# Solve the single impurity Anderson model coupled to a bath with a
# semicircular states with unit half bandwidth.
U = 1.2
def rho0w(w):
    return np.sqrt(1-w.clip(-1,1)**2) * 2/np.pi

# Compute the IR basis coefficients for the non-interacting propagator
rho0l = basis.v.overlap(rho0w)
G0l = -basis.s * rho0l

# Self-consistency loop: alternate between second-order expression for the
# self-energy and the Dyson equation until convergence.
Gl = G0l
Gl_prev = 0
while np.linalg.norm(Gl - Gl_prev) > 1e-6:
    Gl_prev = Gl
    Gtau = stau.evaluate(Gl)
    Sigmatau = U**2 * Gtau**3
    Sigmal = stau.fit(Sigmatau)
    Sigmaiw = siw.evaluate(Sigmal)
    G0iw = siw.evaluate(G0l)
    Giw = 1/(1/G0iw - Sigmaiw)
    Gl = siw.fit(Giw)

You may want to start with reading up on the intermediate representation. It is tied to the analytic continuation of bosonic/fermionic spectral functions from (real) frequencies to imaginary time, a transformation mediated by a kernel K. The kernel depends on a cutoff, which you should choose to be lambda_ >= beta * W, where beta is the inverse temperature and W is the bandwidth.

One can now perform a singular value expansion on this kernel, which generates two sets of orthonormal basis functions, one set v[l](w) for real frequency side w, and one set u[l](tau) for the same obejct in imaginary (Euclidean) time tau, together with a “coupling” strength s[l] between the two sides.

By this construction, the imaginary time basis can be shown to be optimal in terms of compactness.

License and citation

This software is released under the MIT License. See LICENSE.txt for details.

If you find the intermediate representation, sparse sampling, or this software useful in your research, please consider citing the following papers:

If you are discussing sparse sampling in your research specifically, please also consider citing an independently discovered, closely related approach, the MINIMAX isometry method (Merzuk Kaltak and Georg Kresse, Phys. Rev. B 101, 205145, 2020).

Development

Updating pylibsparseir Dependency

When updating the pylibsparseir dependency version, you must update it in both pyproject.toml and .conda/meta.yaml to maintain consistency:

  1. Update pyproject.toml:

    # Edit dependencies in pyproject.toml
    dependencies = [
        "pylibsparseir>=0.8.0,<0.9.0",  # Update version range
    ]
  2. Update .conda/meta.yaml:

    # Edit both host and run requirements in .conda/meta.yaml
    requirements:
      host:
        - spm-lab::pylibsparseir >=0.8.0,<0.9.0
      run:
        - spm-lab::pylibsparseir >=0.8.0,<0.9.0
  3. Verify consistency:

    python check_libsparseir_version_consistency.py

    This should output ✅ Version specifications are consistent!

  4. Commit changes:

    git add pyproject.toml .conda/meta.yaml
    git commit -m "chore: update pylibsparseir dependency to >=0.8.0,<0.9.0"

Version Consistency Check

This repository includes a tool to ensure consistency between different package managers:

  • Version Consistency Check: Ensures that pylibsparseir version specifications in pyproject.toml and .conda/meta.yaml are consistent.

    Run the check manually:

    python check_libsparseir_version_consistency.py

    Or install as a pre-commit hook:

    pip install pre-commit
    pre-commit install

Release Process

To release a new version (e.g., 2.0.0a10):

  1. Create a working branch for version bump:

    git checkout mainline
    git pull origin mainline
    git checkout -b bump-to-2.0.0a10
  2. Update version in pyproject.toml:

    # Edit pyproject.toml: version = "2.0.0a10"
  3. Commit and push:

    git add pyproject.toml
    git commit -m "Bump to v2.0.0a10"
    git push --set-upstream origin bump-to-2.0.0a10
  4. Create Pull Request and merge to mainline

  5. Create and push tag:

    git checkout mainline
    git pull origin mainline
    git tag v2.0.0a10
    git push origin v2.0.0a10
  6. Automated builds (triggered by tag push):

    • PyPI: wheel.yml workflow builds and uploads to PyPI

    • conda: conda.yml workflow builds and uploads to SpM-lab channel

Both workflows are automatically triggered when a tag starting with v is pushed.

Download files

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

Source Distribution

sparse_ir-2.1.3.tar.gz (47.3 kB view details)

Uploaded Source

Built Distribution

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

sparse_ir-2.1.3-py3-none-any.whl (36.4 kB view details)

Uploaded Python 3

File details

Details for the file sparse_ir-2.1.3.tar.gz.

File metadata

  • Download URL: sparse_ir-2.1.3.tar.gz
  • Upload date:
  • Size: 47.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for sparse_ir-2.1.3.tar.gz
Algorithm Hash digest
SHA256 44ba89e460f9fe7c54e8a2cdb1f619d8f83dd255c2720e3a36570a100405f889
MD5 14ee8de4611a0c3e8f2c93af764a19fd
BLAKE2b-256 1cc768179e1049a294cfeef81cf000fcd8dad992d4c75856aeec8e7e0eb304bb

See more details on using hashes here.

File details

Details for the file sparse_ir-2.1.3-py3-none-any.whl.

File metadata

  • Download URL: sparse_ir-2.1.3-py3-none-any.whl
  • Upload date:
  • Size: 36.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for sparse_ir-2.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8d17df4a3be2cd64c7558148b104490899db858773e27f26c06ab625f2590271
MD5 14edc819a44bdbd752b21ffb2b716cdb
BLAKE2b-256 2d01ebe952c5d7d72e7fd29e25adc0690a3cea18e581983d7143ec7afa142976

See more details on using hashes here.

Release history Release notifications | RSS feed

2.1.4

2 files

This release

2.1.3 This release

2 files

2.1.2

2 files

2.1.1

2 files

2.1.0

2 files

2.0.0

2 files

1.1.7

2 files

1.1.6

2 files

1.1.5

2 files

1.1.4

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.0

2 files

0.97.0

2 files

0.96.0

2 files

0.95.0

2 files

0.94.0

2 files

0.92.1

2 files

0.92.0

2 files

0.90.0

2 files

0.13.0

2 files

0.12.0

2 files

0.11.2

2 files

0.11.1

2 files

0.11.0

2 files

0.10.0

2 files

0.9.2

2 files

0.9.1

2 files

0.9.0

2 files

0.8.0

2 files

0.7.4

2 files

0.7.3

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.6

2 files

0.4.5

2 files

0.4.4

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

1 file

0.3.2

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page