Welcome to quimb’s documentation!¶
quimb
is an easy but fast python library for ‘quantum information many-body’ calculations, focusing primarily on tensor networks. The code is hosted on github, and docs are hosted on readthedocs. Functionality is split in two:
The quimb.tensor
module contains tools for working with tensors and tensor networks. It has a particular focus on automatically handling arbitrary geometry, e.g. beyond 1D and 2D lattices. With this you can:
The core quimb
module contains tools for reference ‘exact’ quantum calculations, where the states and operator are represented as either numpy.ndarray
or scipy.sparse
matrices. With this you can:
User Guide¶
The following guides give a basic introduction to the various parts:
Examples¶
The following examples, generated from the notebooks in docs/examples
,
demonstrate some more advanced features or complete usage:
- Examples
- 1. 2D Antiferromagnetic Model Example
- 2. Quenching a Random Product State
- 3. MPI Interior Eigensolve with Lazy, Projected Operators
- 4. Example - Tensor Renormalization Group (TRG)
- 5. Tensor Network Random Unitary Evolution
- 6. Periodic DMRG and Calculations
- 7. MPS Evolution with TEBD
- 8. Basic MERA Manipulations & Optimization
- 9. Optimizing a Tensor Network using Tensorflow
- 10. Tensor Network Training of Quantum Circuits
- 11. Bayesian Optimizing QAOA Circuit Energy
- 12. Using
quimb
withintorch
- 13. Using
quimb
withinjax
,flax
andoptax
- 14. Generic Tensor Fitting
- 15.
schematic
- manual drawing
Citing¶
quimb
is published in the Journal of Open Source Software
here - if it’s ever useful in research
please consider supporting development by citing it!
@article{gray2018quimb,
title={quimb: a python library for quantum information and many-body calculations},
author={Gray, Johnnie},
journal={Journal of Open Source Software},
year = {2018},
volume={3}, number={29}, pages={819},
doi={10.21105/joss.00819},
}
Notes¶
Development notes, including on contributing to quimb
and release details
can be found below:
- Changelog
- v1.8.5 (unreleased)
- v1.8.4 (2024-07-20)
- v1.8.3 (2024-07-10)
- v1.8.2 (2024-06-12)
- v1.8.1 (2024-05-06)
- v1.8.0 (2024-04-10)
- v1.7.3 (2024-02-08)
- v1.7.2 (2024-01-30)
- v1.7.1 (2024-01-30)
- v1.7.0 (2023-12-08)
- v1.6.0 (2023-09-10)
- v1.5.1 (2023-07-28)
- v1.5.0 (2023-05-03)
- v1.4.2 (2022-11-28)
- v1.4.1 (2022-11-28)
- v1.4.0 (2022-06-14)
- v1.3.0 (2020-02-18)
- v1.2.0 (2019-06-06)
- Developer Notes