Tensor network library for quantum simulations
Project description
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)
L = 10
# construct matrix product operator representation of
# Heisenberg XXZ Hamiltonian (arguments are L, J, \Delta, h)
mpoH = ptn.heisenberg_XXZ_MPO(L, 1.0, 0.8, -0.1)
mpoH.zero_qnumbers()
# initial wavefunction as MPS with random entries
# maximally allowed virtual bond dimensions
D = [1, 2, 4, 8, 16, 28, 16, 8, 4, 2, 1]
psi = ptn.MPS(mpoH.qd, [Di*[0] for Di in D], fill='random')
# effectively clamp virtual bond dimension of initial state
Dinit = 8
for i in range(L):
psi.A[i][:, Dinit:, :] = 0
psi.A[i][:, :, Dinit:] = 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.integrate_local_singlesite(mpoH, 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 (real and imaginary)
generate vector / matrix representations of matrix product states / operators
Krylov subspace methods for local operations
one-site local energy minimization using Lanczos iteration
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, C. B.},
title = {PyTeNet: A concise Python 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
- U. SchollwöckThe density-matrix renormalization group in the age of matrix product states
- J. Haegeman, C. Lubich, I. Oseledets, B. Vandereycken, F. VerstraeteUnifying time evolution and optimization with matrix product states
- I. P. McCullochFrom density-matrix renormalization group to matrix product states
- T. BarthelPrecise evaluation of thermal response functions by optimized density matrix renormalization group schemes
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
Built Distribution
File details
Details for the file pytenet-1.0.1.tar.gz
.
File metadata
- Download URL: pytenet-1.0.1.tar.gz
- Upload date:
- Size: 34.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2d144ec7d5373c3377c382f8ab79917d525cc7ae53875063ccc548cffec59f4 |
|
MD5 | fb9b83401b4db895637db412ffb24379 |
|
BLAKE2b-256 | 4bb268b91cc9380d325154c1a1f4d4629871f68b78d6e22c69eea00a892558cb |
File details
Details for the file pytenet-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: pytenet-1.0.1-py3-none-any.whl
- Upload date:
- Size: 38.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3e2d8ad8583cf0a20e04f98802a731781355e3eeb00d2d2d75159b01514899f |
|
MD5 | b67ef8f911fb25192e7a1dc62ae9842d |
|
BLAKE2b-256 | f76f0b29ed126505977579a4d85ea2e5b711ae71fa358207a26588baadc971ca |