Skip to main content

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:

Vi+1(rz)=x,y(Add(rz,x)Vi(x)+Mul(rz,x,y)Vi(x)Vi(y))V_{i+1}(r_z) = \sum_{x,y} (\mathsf{Add}(r_z, x) V_i(x) + \mathsf{Mul}(r_z, x, y) V_i(x) V_i(y))

where Mul,Add,V\mathsf{Mul}, \mathsf{Add}, V 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:

Vi+1(rz)=x,y(Add(rz,x)Vi(x)+Mul(rz,x,y)Vi(x)Vi(y)+l=0i1Scat(i+1,l)(rz,x)V(i+1,l)(x)V_{i+1}(r_z) = \sum_{x,y} (\mathsf{Add}(r_z, x) V_i(x) + \mathsf{Mul}(r_z, x, y) V_i(x) V_i(y) \\ + \sum_{l=0}^{i-1} \mathsf{Scat}_{(i+1, l)}(r_z, x)V_{(i+1, l)}(x) )

Here Scat(i+1,l)\mathsf{Scat}_{(i+1, l)} describes the cross-layer connection between layer i+1i+1 and layer ll. Scat(i+1,l)(a,b)=1\mathsf{Scat}_{(i+1, l)}(a, b) = 1 if and only if the aa-th gate of layer i+1i+1 is connected to the bb-th gate of layer ll. More precisely, the bb-th gate of all the gates in layer ll that directly connects to layer i+1i+1.

We have a{0,1}si+1,b{0,1}s(i+1,l)a\in \{0, 1\}^{s_{i+1}}, b\in \{0, 1\}^{s_{(i+1, l)}}, where si+1s_{i+1} is the logarithmic value of the size of layer i+1i+1, and s(i+1,l)s_{(i+1, l)} is the logarithmic value of the number of gates in layer ll that directly connects to layer i+1i+1.

At the end of sumcheck, the prover sends some claims of V(i+1,l),l[0,i1]V_{(i+1, l)}, l\in[0, i-1] and ViV_i to the verifier as requested.

Gather Phase

In a following layer jj, instead of having only one claim about VjV_{j}, the verifier may have multiple claims from the previous layer due to cross-layer relays, i.e. V(l,j),l[j+2,d]V_{(l, j)}, l\in [j+2, d], where dd 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.

Vj(rz)+l=j+2dαlV(l,j)(rzl)=xVj(x)(1+l=j+2dαlGathl,j(rzl,x)) V_j(r_z) + \sum_{l=j+2}^d \alpha_l V_{(l, j)}(r_{z_l}) = \sum_{x} V_j(x)(1 + \sum_{l=j+2}^d \alpha_l \mathsf{Gath}_{l, j} (r_{z_l}, x))

where Gath(l,j)(p,q)=1\mathsf{Gath}_{(l, j)}(p, q) = 1 if and only if the pp-th gate of the gates in layer jj that connects to layer ll is exactly the qq-th gate of all gates in layer jj. In the end of the sumcheck protocol, the prover and the verifier will have a single claim of VjV_j, 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 Scat(i+1,l)\mathsf{Scat}_{(i+1, l)} and V(i+1,l)V_{(i+1, l)} on all binary xx, whose size is exactly the number of gates in layer ll that connects to layer i+1i+1. As a result, the sizes of all the Scat\mathsf{Scat} 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 (1+l=j+2dαlGathl,j(rzl,x))(1 + \sum_{l=j+2}^d \alpha_l \mathsf{Gath}_{l, j} (r_{z_l}, x)), on all binary xx, 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.