mirror of
https://github.com/codex-storage/circom-compat.git
synced 2025-02-05 15:43:44 +00:00
bb0f5429fc
* add benchmark * chore: add complex circuit * feat: enable parallel / asm * bench: use pre-calculated matrices/constraints * chore: bump ethers-rs * chore: fmt * feat: add benches for differently sized circuits (#6) * feat: update bench circuit * feat: add benches for many sizes * fix: adjust bench parameters * fix: remove sym * chore: fmt * fix: point to correct commit of groth16 * fix: update function names to upstream * fix: update function names to upstream Co-authored-by: Kobi Gurkan <kobigurk@gmail.com>
22 lines
472 B
Plaintext
22 lines
472 B
Plaintext
template ManyConstraints(NUM_VARIABLES, NUM_CONSTRAINTS) {
|
|
signal private input a;
|
|
signal output c;
|
|
|
|
assert(NUM_VARIABLES <= NUM_CONSTRAINTS)
|
|
|
|
signal b[NUM_VARIABLES];
|
|
|
|
b[0] <== a*a;
|
|
var i;
|
|
for (i = 1; i < NUM_VARIABLES; i++) {
|
|
b[i] <== b[i-1]*b[i-1];
|
|
}
|
|
i = i-1;
|
|
for (var j = NUM_VARIABLES; j < NUM_CONSTRAINTS; j++) {
|
|
b[i] === b[i-1]*b[i-1];
|
|
}
|
|
c <== b[i];
|
|
}
|
|
|
|
component main = ManyConstraints(10000, 10000);
|