Skip to content

Commit 096a35b

Browse files
committed
add references for product codes
1 parent e24c389 commit 096a35b

File tree

4 files changed

+70
-17
lines changed

4 files changed

+70
-17
lines changed

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using DocumenterCitations, Documenter, CodingTheory
22

3-
bib = CitationBibliography(joinpath(@__DIR__, "src", "refs.bib"); style = :numeric)
3+
bib = CitationBibliography(joinpath(@__DIR__, "src", "references.bib"); style = :numeric)
44

55
Documenter.makedocs(;
66
plugins=[bib],

docs/src/Quantum/product_codes.md

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,11 @@
11
# Product Codes
22

3-
# Notes
4-
* The hypergraph product is defined in "J. Tillich, G. Zémor. Quantum LDPC codes
5-
with positive rate and minimum distance proportional to n^(1/2). (2013)
6-
arXiv:0903.0566v2"
7-
* The generalized Shor code is defined in "D. Bacon and A. Casaccino. Quantum
8-
error correcting subsystem codes from two classical linear codes. (2006)
9-
http://arxiv.org/abs/quant-ph/0610088"
10-
* Hyperbicycle codes are found in "Quantum ``hyperbicycle'' low-density parity check
11-
codes with finite rate" and "Quantum Kronecker sum-product low-density parity-check
12-
codes with finite rate".
13-
* Generealized bicycle codes are are found in "Quantum ``hyperbicycle'' low-density parity check
14-
codes with finite rate", "Quantum kronecker sum-product low-density parity- check codes with
15-
finite rate", and "Degenerate Quantum LDPC Codes With Good Finite Length Performance".
16-
* The generalized hypergraph product is defined in "Degenerate Quantum LDPC Codes With Good Finite Length Performance".
17-
* The bias-tailored lifted product is defined in "Bias-tailored quantum LDPC codes".
3+
- Hypergraph product: [tillich2009quantum](@cite)
4+
- Generalized Shor: [bacon2006quantum](@cite)
5+
- Hyperbicycle: [pryadko2013quantum](@cite)
6+
- Generealized bicycle: [pryadko2013quantum](@cite), [kovalev2013quantum](@cite), [kovalev1212quantum](@cite), [panteleev2021degenerate](@cite)
7+
- Generalized hypergraph product: [panteleev2021degenerate](@cite)
8+
- Bias-tailored lifted product: [roffe2023bias](@cite)
189

1910

2011
```@autodocs

docs/src/Quantum/quantum_code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
* `char_vec`: a length `2n` vector with elements in the `Z/(2p)` if
2-
`chracteristic(field(C1))` is 2 and `Z/(p)` otherwise. The first `n` elements
2+
`characteristic(field(C1))` is 2 and `Z/(p)` otherwise. The first `n` elements
33
specify the exponents of the `X` phases and second `n` the exponents of the
44
`Z` phases; a missing argument will be set to the all-zero vector
55

docs/src/refs.bib renamed to docs/src/references.bib

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,65 @@ @misc{Vasmer_2020
111111
author={Vasmer, Michael},
112112
year={2020}
113113
}
114+
115+
% Product Codes
116+
117+
@article{bacon2006quantum,
118+
title={Quantum error correcting subsystem codes from two classical linear codes},
119+
author={Bacon, Dave and Casaccino, Andrea},
120+
journal={arXiv preprint quant-ph/0610088},
121+
year={2006}
122+
}
123+
124+
@inproceedings{tillich2009quantum,
125+
title={Quantum LDPC codes with positive rate and minimum distance proportional to n $1/2$},
126+
author={Tillich, J-P and Zemor, G},
127+
booktitle={2009 IEEE International Symposium on Information Theory}
128+
}
129+
130+
@inproceedings{pryadko2013quantum,
131+
title={Quantum``hyperbicycle''low-stabilizer-weight finite-rate error correction codes},
132+
author={Pryadko, Leonid P and Kovalev, Alexey A},
133+
booktitle={APS March Meeting Abstracts},
134+
volume={2013},
135+
pages={M27--008},
136+
year={2013}
137+
}
138+
139+
@article{kovalev2013quantum,
140+
title={Quantum Kronecker sum-product low-density parity-check codes with finite rate},
141+
author={Kovalev, Alexey A and Pryadko, Leonid P},
142+
journal={Physical Review A—Atomic, Molecular, and Optical Physics},
143+
volume={88},
144+
number={1},
145+
pages={012311},
146+
year={2013},
147+
publisher={APS}
148+
}
149+
150+
@article{kovalev1212quantum,
151+
title={Quantum “hyperbicycle” low density parity check codes with finite rate},
152+
author={Kovalev, AA and Pryadko, LP},
153+
journal={arXiv},
154+
volume={1212}
155+
}
156+
157+
@article{panteleev2021degenerate,
158+
title={Degenerate quantum LDPC codes with good finite length performance},
159+
author={Panteleev, Pavel and Kalachev, Gleb},
160+
journal={Quantum},
161+
volume={5},
162+
pages={585},
163+
year={2021},
164+
publisher={Verein zur F{\"o}rderung des Open Access Publizierens in den Quantenwissenschaften}
165+
}
166+
167+
@article{roffe2023bias,
168+
title={Bias-tailored quantum LDPC codes},
169+
author={Roffe, Joschka and Cohen, Lawrence Z and Quintavalle, Armanda O and Chandra, Daryus and Campbell, Earl T},
170+
journal={Quantum},
171+
volume={7},
172+
pages={1005},
173+
year={2023},
174+
publisher={Verein zur F{\"o}rderung des Open Access Publizierens in den Quantenwissenschaften}
175+
}

0 commit comments

Comments
 (0)