Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxiaobleach committed Apr 28, 2024
1 parent 50fe233 commit 849002b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testgpu/large_circuit_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package testgpu

import (
"github.com/consensys/gnark/backend"
"os"
"testing"

Expand Down Expand Up @@ -45,7 +46,7 @@ func TestLargeCircuitInGpuOnBn254(t *testing.T) {
}
innerWitness, err := frontend.NewWitness(innerAssignment, field)
assert.NoError(err)
innerProof, err := groth16.Prove(innerCcs, innerPK, innerWitness)
innerProof, err := groth16.Prove(innerCcs, innerPK, innerWitness, backend.WithIcicleAcceleration())
assert.NoError(err)
innerPubWitness, err := innerWitness.Public()
assert.NoError(err)
Expand Down

0 comments on commit 849002b

Please sign in to comment.