scroll-tech / halo2-snark-aggregator

halo2 ecc circuit
Apache License 2.0
114 stars 24 forks source link

feat req: assign witness parallelly #7

Open lispc opened 2 years ago

lispc commented 2 years ago

95% of rows are used for point mul_scalar. So we can assign witness like this ?

// whenever mul_scalar is used
// launch a new thread 
thread::new( | offset, point, scalar| {
// assign mul scalar witness
})
offset += 79xxx; // a prefined value
// assign other witness 
xgaozoyoe commented 2 years ago

I am working on it.