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
For a 64 core machine at a cycle count of ~16M Jolt spends ~4% of its time on segment called InstructionLookups::polynomialize here. This segment allocates and computes the offline memory checking (a,v,t) polynomials and other inputs for the Jolt instruction execution.
Currently much of the time is spent serially. We should parallelize this to get a speedup as the core count increases.
For a 64 core machine at a cycle count of ~16M Jolt spends ~4% of its time on segment called InstructionLookups::polynomialize here. This segment allocates and computes the offline memory checking (a,v,t) polynomials and other inputs for the Jolt instruction execution.
Currently much of the time is spent serially. We should parallelize this to get a speedup as the core count increases.
Similar to a16z#292.
It may be helpful to review the tracing strategy for performance testing.
The text was updated successfully, but these errors were encountered: