You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The VID disperse function is bottlenecked by the generation of PCS batch opening proofs. Thus investigate whether we can further optimize the performance.
The text was updated successfully, but these errors were encountered:
The bottleneck is the computation of the h_poly, which involves expensive Toeplitz matrix multiplication (over group elements). It takes ~1s to compute the h_poly with polynomial degree 1024, which accounts for most of the computation. Also we note that the FFT over group elements is 400x more expensive than an FFT over field elements.
The VID disperse function is bottlenecked by the generation of PCS batch opening proofs. Thus investigate whether we can further optimize the performance.
The text was updated successfully, but these errors were encountered: