forked from QuantumSavory/QuantumClifford.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Concatenated quantum code (QuantumSavory#289)
--------- Co-authored-by: Stefan Krastanov <[email protected]>
- Loading branch information
Showing
7 changed files
with
70 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
""" | ||
`Concat(c₁, c₂)` is a code concatenation of two quantum codes [knill1996concatenated](@cite). | ||
The inner code c₁ and the outer code c₂. | ||
The construction is the following: replace each qubit in code c₂ with logical qubits encoded by code c₁. | ||
The resulting code will have `n = n₁ × n₂` qubits and `k = k₁ × k₂` logical qubits. | ||
""" | ||
struct Concat <: AbstractECC | ||
c₁::AbstractECC | ||
c₂::AbstractECC | ||
end | ||
|
||
function parity_checks(c::Concat) | ||
c₁ = c.c₁ | ||
c₂ = c.c₂ | ||
k₁ = code_k(c₁) | ||
n₁ = code_n(c₁) | ||
n₂ = code_n(c₂) | ||
s₁ = code_s(c₁) | ||
s₂ = code_s(c₂) | ||
inner_checks = Stabilizer(vcat([embed(n₁ * n₂, 1+(i-1)*n₁:i*n₁, parity_checks(c₁)[j]) for i in 1:n₂ for j in 1:s₁])) # parity checks of c₁ on each qubit of c₂ | ||
h₂ = parity_matrix(c₂) | ||
phases₂ = phases(parity_checks(c₂)) | ||
h_logx₁ = stab_to_gf2(logx_ops(c₁)) | ||
phases_logx₁ = phases(logx_ops(c₁)) | ||
h_logz₁ = stab_to_gf2(logz_ops(c₁)) | ||
phases_logz₁ = phases(logz_ops(c₁)) | ||
# parity checks of c₂ with qubits repalced with logical qubits of c₁ | ||
outer_check_h = transpose(hcat([vcat( | ||
kron(h₂[i, 1:end÷2], h_logx₁[j, 1:end÷2]) .⊻ kron(h₂[i, end÷2+1:end], h_logz₁[j, 1:end÷2]), # X part | ||
kron(h₂[i, 1:end÷2], h_logx₁[j, end÷2+1:end]) .⊻ kron(h₂[i, end÷2+1:end], h_logz₁[j, end÷2+1:end]) # Z part | ||
) for i in 1:s₂ for j in 1:k₁]...)) | ||
outer_check_phase = [UInt8(sum(h₂[i, 1:end÷2] * phases_logx₁[j]) + sum(h₂[i, end÷2+1:end] * phases_logz₁[j]) + phases₂[i]) & 0x3 for i in 1:s₂ for j in 1:k₁] | ||
outer_checks = Stabilizer(outer_check_phase, outer_check_h) | ||
vcat(inner_checks, outer_checks) | ||
end | ||
|
||
code_n(c::Concat) = code_n(c.c₁) * code_n(c.c₂) | ||
|
||
code_k(c::Concat) = code_k(c.c₁) * code_k(c.c₂) | ||
|
||
function iscss(c::Concat) | ||
if iscss(c.c₁) && iscss(c.c₂) | ||
true | ||
end | ||
return nothing # if c.c₁ or c.c₂ are non-CSS; in this case, `Concat(c₁, c₂)` can still be CSS | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters