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
StarkContext takes huge memory space since we define the elements are from FieldExtension, but this is not a must.
Using base field as more as we can, take ctx.cm1_n for instance, cm1_n can use the Goldilocks element. Hence, we need figure out the proper element type for the members in StarkContext.
Drop const and cm PolsArray after using
Use mmap, instead of vec![] to allocate memory. Use memmap2, and setup MmapOptions::map_anon() to write arbitrary size data.
The text was updated successfully, but these errors were encountered:
StarkContext takes huge memory space since we define the elements are from FieldExtension, but this is not a must.
ctx.cm1_n
for instance, cm1_n can use the Goldilocks element. Hence, we need figure out the proper element type for the members in StarkContext.vec![]
to allocate memory. Usememmap2
, and setupMmapOptions::map_anon()
to write arbitrary size data.The text was updated successfully, but these errors were encountered: