This package contains tools for constructing and analyzing quantum low density parity check (qLDPC) codes. At least, that was the original motivation for this package. In practice, the tools here work just as well with more general error-correcting codes.
This package requires Python>=3.10, and can be installed from the Python Package Index (PyPI) with
pip install qldpc
If you use macOS, you may need to install cvxpy
manually by following the instructions here before installing qLDPC.
To install a local version of qLDPC from source:
git clone [email protected]:Infleqtion/qLDPC.git
pip install -e qLDPC
You can also pip install -e 'qLDPC[dev]'
to additionally install some development tools.
Notable features include:
ClassicalCode
: class for representing classical linear error-correcting codes over finite fields.- Various pre-defined classical code families.
- Communication with the GAP/GUAVA package for even more codes.
QuditCode
: general class for constructing Galois-qudit codes.- Automatic construction of all SWAP-transversal logical Clifford gates in one code block of a qubit code, with
qldpc.circuits.get_transversal_ops
(see arXiv:2409.18175; requires GAP and GUAVA). QuditCode.get_logical_ops
: method to construct a complete basis of nontrivial logical Pauli operators for aQuditCode
.QuditCode.concatenate
: method to concatenateQuditCode
s in various ways.
- Automatic construction of all SWAP-transversal logical Clifford gates in one code block of a qubit code, with
CSSCode
: subclass ofQuditCode
for the special case of constructing a quantum CSS code out of two mutually compatibleClassicalCode
s.CSSCode.get_distance
: method to compute the code distance (i.e., the minimum weight of a nontrivial logical operator) of aCSSCode
. Includes options for computing the exact code distance by brute force, as well as an estimate (or upper bound) with the method of arXiv:2308.07915.- Includes options for applying local Hadamard transformations, which is useful for tailoring a
CSSCode
to biased noise (see arXiv:2202.01702).
TBCode
: class for constructing two-block quantum codes.BBCode
: class for constructing the bivariate bicycle codes in arXiv:2308.07915 and arXiv:2311.16980.- Includes methods to identify "toric layouts" of a
BBCode
, in which the code looks like a toric code augmented by some long-distance checks, as in discussed in arXiv:2308.07915.
- Includes methods to identify "toric layouts" of a
HGPCode
: class for constructing hypergraph product codes out of twoClassicalCode
s.LPCode
: class for constructing lifted product codes out of two protographs (i.e., matrices whose entries are elements of a group algebra). See arXiv:2012.04068 and arXiv:2202.01702.QTCode
: class for constructing quantum Tanner codes out of (a) two symmetric subsetsA
andB
of a groupG
, and (b) twoClassicalCode
s with block lengths|A|
and|B|
. See arXiv:2202.13641 and arXiv:2206.07571.- Random
QTCode
s can be constructed out of a choice of groupG
and oneClassicalCode
only.
- Random
abstract.py
: module for basic abstract algebra (groups, algebras, and representations thereof).- Various pre-defined groups (mostly borrowed from SymPy).
- Communication with the GAP computer algebra system and GroupNames.org for constructing even more groups.
objects.py
: module for constructing helper objects such as Cayley complexes and chain complexes, which are instrumental for the construction of various quantum codes.
This project technically has a documentation page, but at the moment the documentation is largely auto-generated from source code and comments that were written to be readable in a text editor. For now, I recommend looking at the source code (and comments therein) directly, as well as the examples
directory. Test files (such as qldpc/codes/quantum_test.py
) also contain some examples of using the classes and methods in this library.
If you have any questions, feedback, or requests, please open an issue on GitHub or email me at [email protected]!
If you use this software in your work, please cite with:
@misc{perlin2023qldpc,
author = {Perlin, Michael A.},
title = {{qLDPC}},
year = {2023},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/Infleqtion/qLDPC}},
}
This may require adding \usepackage{url}
to your LaTeX file header. Alternatively, you can cite
Michael A. Perlin. qLDPC. https://github.com/Infleqtion/qLDPC, 2023.