GKR with Cross-Layer Relays
Inspired by the Virgo++ paper, we generialize our Expander proving system to layered circuits with cross-layer relays. Compared to the traditional layered circuits, we allow gate values to flow directly from a front layer to a back layer, bybassing intermediate layers, and thus reducing the number of gates in a circuit.
Note that this is a simplified version of Virgo++, where arbitrary circuits are allowed. We make this simplification to achieve a better balance between the circuit size and the proving complexity.
Sumcheck Equation
A traditional sumcheck equation for a circuit layer looks like the following:
where are all multi-linear extensions of the underlying values. We introduce a scattering phase and a gathering phase to incorporate the additional cross-layer relays.
Scatter Phase
Note that now the input of a layer not only comes from the previous adjacent layer, but potentially all the previous layers. To make such a reduction, we modify the sumcheck equaion as follows:
Here describes the cross-layer connection between layer and layer . if and only if the -th gate of layer is connected to the -th gate of layer . More precisely, the -th gate of all the gates in layer that directly connects to layer .
We have , where is the logarithmic value of the size of layer , and is the logarithmic value of the number of gates in layer that directly connects to layer .
At the end of sumcheck, the prover sends some claims of and to the verifier as requested.
Gather Phase
In a following layer , instead of having only one claim about , the verifier may have multiple claims from the previous layer due to cross-layer relays, i.e. , where is the total number of layers. To proceed with the equation from the previous section, the prover and the verifier need to perform a gathering sumcheck to reduce all these claims to one.
where if and only if the -th gate of the gates in layer that connects to layer is exactly the -th gate of all gates in layer . In the end of the sumcheck protocol, the prover and the verifier will have a single claim of , and can proceed with the scattering phase.
Complexity Analysis
The proving time is linear to the circuit size in the original GKR protocol, and it's still linear in the modified protocol. To see this, we need to analyze the two phases separately.
-
Scattering. In the scattering phase, the prover will additionally prepare the values of and on all binary , whose size is exactly the number of gates in layer that connects to layer . As a result, the sizes of all the sums up to the total number of cross-layer relays in the circuit.
-
Gathering. Similary, in all the gathering phase, the prover needs to prepare the values of , on all binary , which is solely contributed by the relay gates.
In short, the additional cost is linear to the number of relay gates in the circuit, and thus the total cost is still linear.