mirror of
https://github.com/arnaucube/gnark-plonky2-verifier.git
synced 2026-01-12 17:11:31 +01:00
Base sum gate (#7)
* initial version of base_sum_gate * add recursive circuit benchmark files * added step circuit data and contant gate test * moved step testing data into gate_testing_utils * added test case for basesum gate * added test for arithmetic_gate
This commit is contained in:
205
plonky2_verifier/data/step/common_circuit_data.json
Normal file
205
plonky2_verifier/data/step/common_circuit_data.json
Normal file
@@ -0,0 +1,205 @@
|
||||
{
|
||||
"config": {
|
||||
"num_wires": 136,
|
||||
"num_routed_wires": 80,
|
||||
"num_constants": 2,
|
||||
"use_base_arithmetic_gate": true,
|
||||
"security_bits": 100,
|
||||
"num_challenges": 2,
|
||||
"zero_knowledge": false,
|
||||
"max_quotient_degree_factor": 8,
|
||||
"fri_config": {
|
||||
"rate_bits": 3,
|
||||
"cap_height": 4,
|
||||
"proof_of_work_bits": 16,
|
||||
"reduction_strategy": {
|
||||
"ConstantArityBits": [
|
||||
4,
|
||||
5
|
||||
]
|
||||
},
|
||||
"num_query_rounds": 28
|
||||
}
|
||||
},
|
||||
"fri_params": {
|
||||
"config": {
|
||||
"rate_bits": 3,
|
||||
"cap_height": 4,
|
||||
"proof_of_work_bits": 16,
|
||||
"reduction_strategy": {
|
||||
"ConstantArityBits": [
|
||||
4,
|
||||
5
|
||||
]
|
||||
},
|
||||
"num_query_rounds": 28
|
||||
},
|
||||
"hiding": false,
|
||||
"degree_bits": 21,
|
||||
"reduction_arity_bits": [
|
||||
4,
|
||||
4,
|
||||
4,
|
||||
4
|
||||
]
|
||||
},
|
||||
"gates": [
|
||||
"NoopGate",
|
||||
"ConstantGate { num_consts: 2 }",
|
||||
"PublicInputGate",
|
||||
"BaseSumGate { num_limbs: 32 } + Base: 2",
|
||||
"BaseSumGate { num_limbs: 63 } + Base: 2",
|
||||
"ArithmeticGate { num_ops: 20 }",
|
||||
"RandomAccessGate { bits: 2, num_copies: 13, num_extra_constants: 2, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }<D=2>",
|
||||
"XOR3Gate { num_xors: 16 }",
|
||||
"BaseSumGate { num_limbs: 16 } + Base: 4",
|
||||
"ComparisonGate { num_bits: 32, num_chunks: 16, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }<D=2>",
|
||||
"U32AddManyGate { num_addends: 11, num_ops: 4, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32AddManyGate { num_addends: 13, num_ops: 4, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32AddManyGate { num_addends: 15, num_ops: 3, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32AddManyGate { num_addends: 16, num_ops: 3, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32AddManyGate { num_addends: 3, num_ops: 5, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32AddManyGate { num_addends: 5, num_ops: 5, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32AddManyGate { num_addends: 7, num_ops: 4, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32AddManyGate { num_addends: 9, num_ops: 4, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32ArithmeticGate { num_ops: 3, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32RangeCheckGate { num_input_limbs: 8, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"U32SubtractionGate { num_ops: 6, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }",
|
||||
"RandomAccessGate { bits: 4, num_copies: 4, num_extra_constants: 2, _phantom: PhantomData<plonky2_field::goldilocks_field::GoldilocksField> }<D=2>"
|
||||
],
|
||||
"selectors_info": {
|
||||
"selector_indices": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
3,
|
||||
3,
|
||||
3,
|
||||
3,
|
||||
3,
|
||||
4
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"start": 0,
|
||||
"end": 6
|
||||
},
|
||||
{
|
||||
"start": 6,
|
||||
"end": 11
|
||||
},
|
||||
{
|
||||
"start": 11,
|
||||
"end": 16
|
||||
},
|
||||
{
|
||||
"start": 16,
|
||||
"end": 21
|
||||
},
|
||||
{
|
||||
"start": 21,
|
||||
"end": 22
|
||||
}
|
||||
]
|
||||
},
|
||||
"quotient_degree_factor": 8,
|
||||
"num_gate_constraints": 136,
|
||||
"num_constants": 7,
|
||||
"num_public_inputs": 0,
|
||||
"k_is": [
|
||||
1,
|
||||
7,
|
||||
49,
|
||||
343,
|
||||
2401,
|
||||
16807,
|
||||
117649,
|
||||
823543,
|
||||
5764801,
|
||||
40353607,
|
||||
282475249,
|
||||
1977326743,
|
||||
13841287201,
|
||||
96889010407,
|
||||
678223072849,
|
||||
4747561509943,
|
||||
33232930569601,
|
||||
232630513987207,
|
||||
1628413597910449,
|
||||
11398895185373143,
|
||||
79792266297612001,
|
||||
558545864083284007,
|
||||
3909821048582988049,
|
||||
8922003270666332022,
|
||||
7113790686420571191,
|
||||
12903046666114829695,
|
||||
16534350385145470581,
|
||||
5059988279530788141,
|
||||
16973173887300932666,
|
||||
8131752794619022736,
|
||||
1582037354089406189,
|
||||
11074261478625843323,
|
||||
3732854072722565977,
|
||||
7683234439643377518,
|
||||
16889152938674473984,
|
||||
7543606154233811962,
|
||||
15911754940807515092,
|
||||
701820169165099718,
|
||||
4912741184155698026,
|
||||
15942444219675301861,
|
||||
916645121239607101,
|
||||
6416515848677249707,
|
||||
8022122801911579307,
|
||||
814627405137302186,
|
||||
5702391835961115302,
|
||||
3023254712898638472,
|
||||
2716038920875884983,
|
||||
565528376716610560,
|
||||
3958698637016273920,
|
||||
9264146389699333119,
|
||||
9508792519651578870,
|
||||
11221315429317299127,
|
||||
4762231727562756605,
|
||||
14888878023524711914,
|
||||
11988425817600061793,
|
||||
10132004445542095267,
|
||||
15583798910550913906,
|
||||
16852872026783475737,
|
||||
7289639770996824233,
|
||||
14133990258148600989,
|
||||
6704211459967285318,
|
||||
10035992080941828584,
|
||||
14911712358349047125,
|
||||
12148266161370408270,
|
||||
11250886851934520606,
|
||||
4969231685883306958,
|
||||
16337877731768564385,
|
||||
3684679705892444769,
|
||||
7346013871832529062,
|
||||
14528608963998534792,
|
||||
9466542400916821939,
|
||||
10925564598174000610,
|
||||
2691975909559666986,
|
||||
397087297503084581,
|
||||
2779611082521592067,
|
||||
1010533508236560148,
|
||||
7073734557655921036,
|
||||
12622653764762278610,
|
||||
14571600075677612986,
|
||||
9767480182670369297
|
||||
],
|
||||
"num_partial_products": 9
|
||||
}
|
||||
45430
plonky2_verifier/data/step/proof_with_public_inputs.json
Normal file
45430
plonky2_verifier/data/step/proof_with_public_inputs.json
Normal file
File diff suppressed because it is too large
Load Diff
140
plonky2_verifier/data/step/verifier_only_circuit_data.json
Normal file
140
plonky2_verifier/data/step/verifier_only_circuit_data.json
Normal file
@@ -0,0 +1,140 @@
|
||||
{
|
||||
"constants_sigmas_cap": [
|
||||
{
|
||||
"elements": [
|
||||
9037422181318074482,
|
||||
13844553280258601189,
|
||||
14013690396566737561,
|
||||
14600533186953608428
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
3891365497285560518,
|
||||
6785071445101560305,
|
||||
7146616719154245281,
|
||||
8484433928946731576
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
15935467950899360740,
|
||||
1041659913562170406,
|
||||
11898906592313038819,
|
||||
7940456224436700998
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
17420135248456983,
|
||||
10686061014804565544,
|
||||
17782021355470763205,
|
||||
12726022340820773339
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
13322967402317526249,
|
||||
12119892482906381301,
|
||||
1483851501277040422,
|
||||
17519911664522741561
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
3901474702590233137,
|
||||
16494478574194405372,
|
||||
3644962804006307872,
|
||||
7967195830112920768
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
15532816309418050992,
|
||||
11198055639421810456,
|
||||
7449000032233257165,
|
||||
6080646728225911938
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
7944791944524511304,
|
||||
15470849481646525511,
|
||||
11102721978231118523,
|
||||
10011467322465036320
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
14679375199524381062,
|
||||
9219647684485300612,
|
||||
8902882543708912876,
|
||||
6737676211275058717
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
15215848762718399329,
|
||||
9538467614418882672,
|
||||
7337952705707955964,
|
||||
17932579689749986997
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
3111383469397480110,
|
||||
17276616486884637185,
|
||||
10511216595022742027,
|
||||
3343575652946909638
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
2417848701164748156,
|
||||
7846191940051381446,
|
||||
4363725272084187306,
|
||||
3143323624098735830
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
7639597922146523429,
|
||||
14015537888097194053,
|
||||
10449936634441844342,
|
||||
3897071524048579556
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
12445360068819311840,
|
||||
4910166437012489060,
|
||||
9670875686931891121,
|
||||
5569206524147441284
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
6965775890897127688,
|
||||
14853930701622190781,
|
||||
2643689027677976461,
|
||||
1883768007952536249
|
||||
]
|
||||
},
|
||||
{
|
||||
"elements": [
|
||||
6771363979354677578,
|
||||
6567107174924251028,
|
||||
15758449129319031800,
|
||||
6619880945043941329
|
||||
]
|
||||
}
|
||||
],
|
||||
"circuit_digest": {
|
||||
"elements": [
|
||||
8574090053162898339,
|
||||
2808971464690312489,
|
||||
14807704193989191909,
|
||||
14951686172889873386
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user