-
Notifications
You must be signed in to change notification settings - Fork 216
Open
Labels
Description
Currently we have defined vectors as []Element
. However, for large vectors this introduces significant memory overhead of needing to store millions of elements in memory. In many use cases we could instead avoid reading everything into memory and compute the result in a streaming manner. For example, we could apply this to MSM where we could compute the partial MSMs and then aggregate the results.