Open xoloki opened 1 year ago
Currently Point::multimult creates a scratch space of a fixed size (2^20) on every run. This works fine, but wastes cycles. If we move it into thread local storage we will reclaim these cycles.
Point::multimult
2^20
Currently
Point::multimult
creates a scratch space of a fixed size (2^20
) on every run. This works fine, but wastes cycles. If we move it into thread local storage we will reclaim these cycles.