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
Right now the MultiMillerLoop API requires you to provide pre-prepared G2 elements. However, if you have a use case where you need to use the multi miller loop but over just-in-time G2 elements then the current API wastes a ton of memory caching things that will just be discarded during the miller loop.
This happened partly because I was conflating "I have access to an allocator" (which G2Prepared needs) with "I need to use the multi miller loop" (which only allowed G2Prepared at the time).
The text was updated successfully, but these errors were encountered:
Right now the
MultiMillerLoop
API requires you to provide pre-prepared G2 elements. However, if you have a use case where you need to use the multi miller loop but over just-in-time G2 elements then the current API wastes a ton of memory caching things that will just be discarded during the miller loop.This happened partly because I was conflating "I have access to an allocator" (which
G2Prepared
needs) with "I need to use the multi miller loop" (which only allowedG2Prepared
at the time).The text was updated successfully, but these errors were encountered: