File tree 3 files changed +8
-10
lines changed
3 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 66
66
cargo test --all-features --release --workspace
67
67
- name : E2E Test
68
68
run : |
69
+ cp ./recursion/small_circuit_m31.txt ./data
70
+ cp ./recursion/small_witness_m31.txt ./data
69
71
cd ./recursion
70
72
go test ./... -v
71
73
cd ..
Original file line number Diff line number Diff line change @@ -172,12 +172,12 @@ func TestCircuitLayeredEvaluation(t *testing.T) {
172
172
},
173
173
// NOTE(HS) as of 2024/12/11, the compilation process of m31 circuit
174
174
// takes more than 50GB of RAM, so run with cautious yall...
175
- {
176
- CircuitPath : "../../../data/circuit_m31.txt" ,
177
- WitnessPath : "../../../data/witness_m31.txt" ,
178
- MPISize : 1 ,
179
- FieldEnum : fields .ECCM31 ,
180
- },
175
+ // {
176
+ // CircuitPath: "../../../data/circuit_m31.txt",
177
+ // WitnessPath: "../../../data/witness_m31.txt",
178
+ // MPISize: 1,
179
+ // FieldEnum: fields.ECCM31,
180
+ // },
181
181
{
182
182
CircuitPath : "../../../data/circuit_gf2.txt" ,
183
183
WitnessPath : "../../../data/witness_gf2.txt" ,
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ package verifier
3
3
import (
4
4
"ExpanderVerifierCircuit/modules/fields"
5
5
"math/big"
6
- "os"
7
6
"testing"
8
7
9
8
"github.com/PolyhedraZK/ExpanderCompilerCollection/ecgo"
@@ -63,7 +62,4 @@ func TestM31CircuitForRecursionTestSatisfiability(t *testing.T) {
63
62
for _ , check := range circuitChecks {
64
63
require .True (t , check , "circuit witness check failed ggs" )
65
64
}
66
-
67
- os .WriteFile ("../../../data/small_circuit_m31.txt" , layeredCircuit .Serialize (), 0o644 )
68
- os .WriteFile ("../../../data/small_witness_m31.txt" , m31x16Witnesses .Serialize (), 0o644 )
69
65
}
You can’t perform that action at this time.
0 commit comments