6

[edit] I am not necessarily focused on topological error correction (as the answer already provided reasons in this context). Even in the case of topological error correction I am not sure to understand the answer provided (look at comments below the answer).

Note: I am familiar with concatenated code, I just have very rough basics in surface code theory (which must be why I struggle to understand the already given answer).

[edit2]: Most of my questions are answered in the comments of the answer from Craig Gidney.


If I want to implement an error protected algorithm (I assume my gateset is Clifford+T), I typically need to know.

  1. The total number of Clifford gates it requires including the logical identities
  2. The total number of $T$ gates

However, when you look at papers doing resource estimations for algorithms, it frequently occurs to not have access to all those information.

For instance, many examples in the references given here do not provide the total number of Clifford gates.

I totally understand why the number of $T$ gates is important. Those gates are typically the ones for which you need to do magic state distillation and are the most costly in terms of physical resources.

But when you do error correction:

  1. Every gate will be noisy: you need to know the total number of logical gates in your algorithm (to know what is the logical error probability you should target, and hence the number of physical qubit per logical ones)
  2. Even if a given $T$ gates requires $\times 100$ more resources than a Clifford one, if you have $\times 1000$ more Clifford gate in your algo, then the dominant cost will be due to the Clifford operations.
  3. Probably even worse: you might have a lot of identity operation occuring on your qubits. If you look at figure 7 of this paper, the identity operation completely dominate the number of logical gate.

It leads me to the following questions:

  1. Why frequently the total number of Clifford gates is being ignored in papers doing resource estimation of algorithms.
  2. Are the logical identities included in the Clifford gate count?

For 1: If there is an argument saying that typically the number of $T$ gates is $\gg$ than the number of Clifford, I would be interested to hear about it.

For 2: I know that a logical identity is mathematically a Clifford operation. But I am not sure if they are taken into account in the counting in practice. As at some point qubits necessarily have to wait, you can be somehow "forced" to apply an identity. It could occur conceptually that the number of identities completely dominates the rest.

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

1 Answers1

5

In a topological code where you're doing gates by code deformation, there's no real distinction between idling and doing Clifford operations. Furthermore, Clifford operations can be sequenced through space instead of through time so they can't really slow down the execution of the algorithm. So you might as well just go slightly lower level and focus on how many logical qubits you are protecting for how many surface code cycles while the non-Cliffords are worked through.

You estimate space usage by knowing how many logical qubits are needed and how much overhead is needed for things like routing and how many magic state factories you're going to be running in parallel.

You estimate time by knowing how many non-Cliffords operations you have, and how long it will take for the factories to provide all of them (and also how long the serial chains can be vs the reaction time of the control system).

With those two quantities you can know how many logical-qubit-rounds need to be protected. For example, if you're gonna run for an hour and you do one surface code cycle per microsecond and there are 1000 logical qubits then the algorithm has roughly 10 billion logical qubit cycles to protect. So you pick a code distance that suppresses error rates below 1 in 10 billion.

For example, here is a figure of activity over ~150 microseconds of an addition from https://arxiv.org/abs/1905.09749:

enter image description here

The red boxes are magic state factories for Toffoli gates. The stuff outside the red boxes is qubits sitting idle waiting to be operated on. Just outside the red boxes you can see them being routed into the hallways between the red boxes. The stuff between the red boxes is a bunch of routing, a bunch of conditional corrections for the gate teleportation through the magic states, and, hidden away inside each of the blue boxes, contributing almost nothing... the two Clifford gates per ripple carry step from Cucarro's adder.

This is why only the non-Clifford gates matter. Because all the ceremony around getting them done so often determine how the computation is laid out. The Cliffords from the original circuit are almost after-thoughts in comparison. Storage time of idle qubits does matter, but you determine that time based on how long the non-Clifford operations take.

To be extremely concrete: if you are counting Cliffords before you start counting routing overhead or storage overhead, you are almost certainly doing things in the wrong order. Routing overhead is way more significant than Clifford gates, and it is completely invisible in the original circuits before being compiled down into the surface code.

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