Skip to main content

Tensor network library for quantum simulations

Project description

https://github.com/cmendl/pytenet/actions/workflows/ci.yml/badge.svg http://joss.theoj.org/papers/10.21105/joss.00948/status.svg

PyTeNet

PyTeNet is a Python implementation of quantum tensor network operations and simulations within the matrix product state framework, using NumPy to handle tensors.

Example usage for TDVP time evolution:

import pytenet as ptn

# number of lattice sites (1D with open boundary conditions)
nsites = 10

# construct matrix product operator representation of the
# Heisenberg XXZ Hamiltonian (arguments are nsites, J, \Delta, h)
h_mpo = ptn.heisenberg_xxz_1d_mpo(nsites, 1.0, 0.8, -0.1)
h_mpo.zero_qnumbers()

# initial wavefunction as MPS with random entries
# maximally allowed virtual bond dimensions
b = [1, 2, 4, 8, 16, 28, 16, 8, 4, 2, 1]
psi = ptn.MPS(h_mpo.qsite, [bi*[0] for bi in b], fill="random")
# effectively clamp virtual bond dimension of initial state
b_init = 8
for i in range(nsites):
    psi.a[i][:, b_init:, :] = 0
    psi.a[i][:, :, b_init:] = 0
psi.orthonormalize(mode="left")

# time step can have both real and imaginary parts;
# for real time evolution use purely imaginary dt!
dt = 0.01 - 0.05j
numsteps = 100

# run TDVP time evolution
ptn.tdvp_singlesite(h_mpo, psi, dt, numsteps, numiter_lanczos=5)
# psi now stores the (approximated) time-evolved state exp(-dt*numsteps H) psi

Features

  • matrix product state and operator classes

  • construct common Hamiltonians as MPOs, straightforward to adapt to custom Hamiltonians

  • convert arbitrary operator chains to MPOs

  • TDVP time evolution (single- and two-site, both real and imaginary time)

  • generate vector / matrix representations of matrix product states / operators

  • Krylov subspace methods for local operations, like local energy minimization

  • single- and two-site DMRG algorithm

  • built-in support for additive quantum numbers

Installation

To install PyTeNet from PyPI, call

python3 -m pip install pytenet

Alternatively, you can clone the repository and install it in development mode via

python3 -m pip install -e <path/to/repo>

Documentation

The full documentation is available at pytenet.readthedocs.io.

Directory structure

  • pytenet: source code of the actual PyTeNet package

  • doc: documentation and tutorials

  • test: unit tests (might serve as detailed documentation, too)

  • experiments: numerical experiments on more advanced, in-depth topics

  • paper: JOSS manuscript

Contributing

Feature requests, discussions and code contributions to PyTeNet in the form of pull requests are of course welcome. Creating an issue might be a good starting point. New code should be well documented (Google style docstrings) and unit-tested (see the test/ subfolder). For questions and additional support, fell free to contact christian.b.mendl@gmail.com

Citing

PyTeNet is published in the Journal of Open Source Software - if it’s ever useful for a research project please consider citing it:

@Article{pytenet,
  author  = {Mendl, Christian B.},
  title   = {{PyTeNet}: A concise {P}ython implementation of quantum tensor network algorithms},
  journal = {Journal of Open Source Software},
  year    = {2018},
  volume  = {3},
  number  = {30},
  pages   = {948},
  doi     = {10.21105/joss.00948},
}

License

PyTeNet is licensed under the BSD 2-Clause license.

References

  1. U. Schollwöck
    The density-matrix renormalization group in the age of matrix product states
  2. J. Haegeman, C. Lubich, I. Oseledets, B. Vandereycken, F. Verstraete
    Unifying time evolution and optimization with matrix product states
  3. I. P. McCulloch
    From density-matrix renormalization group to matrix product states
  4. T. Barthel
    Precise evaluation of thermal response functions by optimized density matrix renormalization group schemes

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

pytenet-1.3.0.tar.gz (68.1 kB view details)

Uploaded Source

Built Distribution

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

pytenet-1.3.0-py3-none-any.whl (58.0 kB view details)

Uploaded Python 3

File details

Details for the file pytenet-1.3.0.tar.gz.

File metadata

  • Download URL: pytenet-1.3.0.tar.gz
  • Upload date:
  • Size: 68.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for pytenet-1.3.0.tar.gz
Algorithm Hash digest
SHA256 b871393d72b85fb5407f85600205d56819be2ed0677eddfed6cea5b26385fb0c
MD5 80abfb71aba14ba9973e57adf904480a
BLAKE2b-256 9da4cd17f84cf02d6f30537ea55bd96d0071ef681dd96cf1598702df9d916908

See more details on using hashes here.

File details

Details for the file pytenet-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: pytenet-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 58.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for pytenet-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cba7732ecb4ba15a661c2701887a259a26026217362090f1a1e8823926c038e9
MD5 93cc2fe760afcad0246a101f54b4861a
BLAKE2b-256 ca0e2af82d1887f09417cdb49f64e6920de86ad98831decb5b6afcbeb82b9aff

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