9

This question concerns about a formal definition of transversal operator. I understood that transversal operator are a group of operators which are efficient in terms of circuit depth and can be used as logical operators for stabilizer codes. However I'm not sure I got when a unitary $U$ is transversal. Or maybe it is better saying that $U$ ``admits'' a transversal implementation?

Can I state that if a unitary $U$ maps the Pauli group into itself, then $U$ is said to be transversal (or admit transversal implementation)?

Mariusz
  • 405
  • 2
  • 10
Daniele Cuomo
  • 2,112
  • 10
  • 25

2 Answers2

12

Based on informal conversations: there is no actually agreed upon definition of a transversal operator. People use it to mean different things. Typically it refers to either the operation being fast or simple or trivially-fault-tolerant.

The most conservative definition of transversal is "the logical operation is achieved by broadcasting the same operation over the physical qubits". For example, the logical T gate in the 15 qubit Steane code is performed by applying a T gate to each of the 15 physical qubits.

Sometimes transversal means specifically "the logical operation has constant depth, regardless of code distance". For example, the transversal S gate in the folded surface code uses physical gates that aren't the S gate. It uses two qubit gates across the folded halves.

And sometimes transversal is so weak it only means "the logical operation uses a lot of the physical operation". For example, there's a "transversal" CCZ in the surface code that involves $O(d)$ layers of three surface codes being drifted past each other while doing oodles of CCZs interleaved with just in time error correction.

Craig Gidney
  • 47,099
  • 1
  • 44
  • 119
8

As pointed by Craig Gidney's answer, there might exist different definitions.

Another important definition consists in saying that a logical gate $G_L$ is being implemented transversally if each physical qubit composing the logical qubit on which $G_L$ has to be implemented does not interact with any other physical qubit composing this same logical qubit ( * )

In the particular case of a single qubit logical gate, for a logical qubit composed of $n$ physical qubits, it means that:

$$G_L = \otimes_{i=1}^n G_i$$

Where $G_i$ is a single qubit physical gate acting on the $i$'th physical qubit of the logical qubit. Note that the $G_i$'s can all be different.

For a logical two qubit gate between two logical qubits, a typical example of a transversal operation consists in saying that the physical qubit $i$ of the first logical qubit will only interact with the physical qubit $i$ of the second logical qubit. For instance the image below describes a transversal cNOT for the seven qubit Steane code (in this case all the physical gates are identical, but again this is not a requirement in general)

enter image description here

The interest in considering such gates is that they don't propagate errors. Typically if a given physical qubit in one logical qubit has an error, it won't propagate on two physical qubits having an error on this same logical qubit after the transversal implementation (because two physical qubits within the same logical one will not interact).

Of course, for two-qubit gates, one error might induce two errors, but they will affect two different logical qubits. It is not a problem because the danger only comes from having multiple physical errors inside the same logical qubit. Different logical qubits are associated with independent error correction procedures and you can resist single-qubit errors occuring on different logical qubits.

( * ) In the context of concatenated codes, because you have different concatenation levels, the definition I am giving should be "generalized". It is done by saying that the $i$'th qubit of a given codeblock will only interact with the $i$'th qubit of any other codeblock, but this is really the same spirit as the one I am providing in this answer. The story gets more complicated because you have different "levels" (concatenation levels) to define your logical qubits.

A ref for this. Look at the last paragraph of page 22.

Marco Fellous-Asiani
  • 2,300
  • 2
  • 15
  • 42