Skip to content

Commit f9dfb87

Browse files
authored
Merge pull request #814 from Consensys/develop
v0.9.0 placeholder
2 parents e162c98 + 8824986 commit f9dfb87

File tree

585 files changed

+69658
-29203
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

585 files changed

+69658
-29203
lines changed

.github/pull_request_template.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Description
22

3-
Please include a summary of the changes and the related issue. Please also include relevant motivation and context.
4-
Note that in most cases the PR should be against the `develop` branch.
3+
<!-- Please include a summary of the changes and the related issue. Please also include relevant motivation and context.
4+
Note that in most cases the PR should be against the `develop` branch. -->
55

66
Fixes # (issue)
77

88
## Type of change
99

10-
Please delete options that are not relevant.
10+
<!-- Please delete options that are not relevant. -->
1111

1212
- [ ] Bug fix (non-breaking change which fixes an issue)
1313
- [ ] New feature (non-breaking change which adds functionality)
@@ -16,14 +16,14 @@ Please delete options that are not relevant.
1616

1717
# How has this been tested?
1818

19-
Please describe the tests that you ran or implemented to verify your changes. Provide instructions so we can reproduce.
19+
<!-- Please describe the tests that you ran or implemented to verify your changes. Provide instructions so we can reproduce. -->
2020

2121
- [ ] Test A
2222
- [ ] Test B
2323

2424
# How has this been benchmarked?
2525

26-
Please describe the benchmarks that you ran to verify your changes.
26+
<!-- Please describe the benchmarks that you ran to verify your changes. -->
2727

2828
- [ ] Benchmark A, on Macbook pro M1, 32GB RAM
2929
- [ ] Benchmark B, on x86 Intel xxx, 16GB RAM

.github/workflows/pr.yml

+35-18
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: install Go
8-
uses: actions/setup-go@v2
8+
uses: actions/setup-go@v3
99
with:
10-
go-version: 1.19.x
10+
go-version: 1.20.x
1111
- name: checkout code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313
with:
1414
fetch-depth: 0
15-
- uses: actions/cache@v2
15+
- uses: actions/cache@v3
1616
with:
1717
path: |
1818
~/go/pkg/mod
@@ -22,10 +22,6 @@ jobs:
2222
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
2323
restore-keys: |
2424
${{ runner.os }}-go-
25-
- name: golangci-lint
26-
uses: golangci/golangci-lint-action@v3
27-
with:
28-
args: --timeout=5m
2925
- name: install deps
3026
run: go install golang.org/x/tools/cmd/goimports@latest && go install github.com/klauspost/asmfmt/cmd/asmfmt@latest
3127
- name: gofmt
@@ -35,24 +31,35 @@ jobs:
3531
go generate ./...
3632
git update-index --assume-unchanged go.mod
3733
git update-index --assume-unchanged go.sum
38-
if [[ -n $(git status --porcelain) ]]; then echo "git repo is dirty after runing go generate -- please don't modify generated files"; echo $(git diff);echo $(git status --porcelain); exit 1; fi
34+
if [[ -n $(git status --porcelain) ]]; then echo "git repo is dirty after running go generate -- please don't modify generated files"; echo $(git diff);echo $(git status --porcelain); exit 1; fi
35+
36+
# hack to ensure golanglint process generated files
37+
- name: remove "generated by" comments from generated files
38+
run: |
39+
find . -type f -name '*.go' -exec sed -i 's/Code generated by .* DO NOT EDIT/FOO/g' {} \;
40+
# on macos: find . -type f -name '*.go' -exec sed -i '' -E 's/Code generated by .* DO NOT EDIT/FOO/g' {} \;
41+
42+
- name: golangci-lint
43+
uses: golangci/golangci-lint-action@v3
44+
with:
45+
args: --timeout=5m
3946

4047
test:
4148
strategy:
4249
matrix:
43-
go-version: [1.19.x]
50+
go-version: [1.20.x]
4451
os: [ubuntu-latest]
4552
runs-on: ${{ matrix.os }}
4653
needs:
4754
- staticcheck
4855
steps:
4956
- name: install Go
50-
uses: actions/setup-go@v2
57+
uses: actions/setup-go@v3
5158
with:
5259
go-version: ${{ matrix.go-version }}
5360
- name: checkout code
54-
uses: actions/checkout@v2
55-
- uses: actions/cache@v2
61+
uses: actions/checkout@v3
62+
- uses: actions/cache@v3
5663
with:
5764
path: |
5865
~/go/pkg/mod
@@ -63,10 +70,19 @@ jobs:
6370
restore-keys: |
6471
${{ runner.os }}-go-
6572
- name: install deps
66-
run: go install golang.org/x/tools/cmd/goimports@latest && go install github.com/klauspost/asmfmt/cmd/asmfmt@latest
73+
run: |
74+
go install golang.org/x/tools/cmd/goimports@latest && go install github.com/klauspost/asmfmt/cmd/asmfmt@latest
75+
go install github.com/ethereum/go-ethereum/cmd/abigen@v1.12.0
76+
go install github.com/consensys/gnark-solidity-checker@latest
77+
sudo add-apt-repository ppa:ethereum/ethereum
78+
sudo apt-get update
79+
sudo apt-get install solc
6780
- name: Test
6881
run: |
69-
go test -v -short -timeout=30m ./...
82+
go test -v -short -tags=solccheck -timeout=30m ./...
83+
- name: Test race
84+
run: |
85+
go test -v -short -race -timeout=30m
7086
7187
slack-workflow-status-failed:
7288
if: failure()
@@ -78,15 +94,16 @@ jobs:
7894
steps:
7995
- name: Notify slack -- workflow failed
8096
id: slack
81-
uses: slackapi/slack-github-action@v1.19.0
97+
uses: slackapi/slack-github-action@v1.23.0
8298
with:
8399
payload: |
84100
{
85101
"actor": "${{ github.actor }}",
86102
"repo": "${{ github.repository }}",
87103
"status": "FAIL",
88104
"title": "${{ github.event.pull_request.title }}",
89-
"pr": "${{ github.event.pull_request.head.ref }}"
105+
"pr": "${{ github.event.pull_request.head.ref }}",
106+
"failed_step_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/"
90107
}
91108
env:
92109
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
@@ -101,7 +118,7 @@ jobs:
101118
steps:
102119
- name: Notify slack -- workflow succeeded
103120
id: slack
104-
uses: slackapi/slack-github-action@v1.19.0
121+
uses: slackapi/slack-github-action@v1.23.0
105122
with:
106123
payload: |
107124
{

.github/workflows/push.yml

+27-16
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: install Go
12-
uses: actions/setup-go@v2
12+
uses: actions/setup-go@v3
1313
with:
14-
go-version: 1.19.x
14+
go-version: 1.20.x
1515
- name: checkout code
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
with:
1818
fetch-depth: 0
19-
- uses: actions/cache@v2
19+
- uses: actions/cache@v3
2020
with:
2121
path: |
2222
~/go/pkg/mod
@@ -26,10 +26,8 @@ jobs:
2626
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
2727
restore-keys: |
2828
${{ runner.os }}-go-
29-
- name: golangci-lint
30-
uses: golangci/golangci-lint-action@v3
31-
with:
32-
args: --timeout=5m
29+
30+
3331
- name: install deps
3432
run: go install golang.org/x/tools/cmd/goimports@latest && go install github.com/klauspost/asmfmt/cmd/asmfmt@latest
3533
- name: gofmt
@@ -39,24 +37,36 @@ jobs:
3937
go generate ./...
4038
git update-index --assume-unchanged go.mod
4139
git update-index --assume-unchanged go.sum
42-
if [[ -n $(git status --porcelain) ]]; then echo "git repo is dirty after runing go generate -- please don't modify generated files"; echo $(git diff);echo $(git status --porcelain); exit 1; fi
40+
if [[ -n $(git status --porcelain) ]]; then echo "git repo is dirty after running go generate -- please don't modify generated files"; echo $(git diff);echo $(git status --porcelain); exit 1; fi
41+
42+
# hack to ensure golanglint process generated files
43+
- name: remove "generated by" comments from generated files
44+
run: |
45+
find . -type f -name '*.go' -exec sed -i 's/Code generated by .* DO NOT EDIT/FOO/g' {} \;
46+
# on macos: find . -type f -name '*.go' -exec sed -i '' -E 's/Code generated by .* DO NOT EDIT/FOO/g' {} \;
47+
48+
- name: golangci-lint
49+
uses: golangci/golangci-lint-action@v3
50+
with:
51+
args: --timeout=5m
52+
4353

4454
test:
4555
strategy:
4656
matrix:
47-
go-version: [1.19.x]
57+
go-version: [1.20.x]
4858
os: [ubuntu-latest, windows-latest, macos-latest]
4959
runs-on: ${{ matrix.os }}
5060
needs:
5161
- staticcheck
5262
steps:
5363
- name: install Go
54-
uses: actions/setup-go@v2
64+
uses: actions/setup-go@v3
5565
with:
5666
go-version: ${{ matrix.go-version }}
5767
- name: checkout code
58-
uses: actions/checkout@v2
59-
- uses: actions/cache@v2
68+
uses: actions/checkout@v3
69+
- uses: actions/cache@v3
6070
with:
6171
path: |
6272
~/go/pkg/mod
@@ -86,15 +96,16 @@ jobs:
8696
steps:
8797
- name: Notify slack -- workflow failed
8898
id: slack
89-
uses: slackapi/slack-github-action@v1.19.0
99+
uses: slackapi/slack-github-action@v1.23.0
90100
with:
91101
payload: |
92102
{
93103
"actor": "${{ github.actor }}",
94104
"repo": "${{ github.repository }}",
95105
"status": "FAIL",
96106
"title": "push to ${{ github.event.push.base_ref }}",
97-
"pr": ""
107+
"pr": "",
108+
"failed_step_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/"
98109
}
99110
env:
100111
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
@@ -109,7 +120,7 @@ jobs:
109120
steps:
110121
- name: Notify slack -- workflow succeeded
111122
id: slack
112-
uses: slackapi/slack-github-action@v1.19.0
123+
uses: slackapi/slack-github-action@v1.23.0
113124
with:
114125
payload: |
115126
{

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,9 @@ gnarkd/circuits/**
5050

5151
# Jetbrains stuff
5252
.idea/
53+
54+
# go workspace
55+
go.work
56+
go.work.sum
57+
58+
examples/gbotrel/**

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -122,17 +122,17 @@ If you use `gnark` in your research a citation would be appreciated.
122122
Please use the following BibTeX to cite the most recent release.
123123

124124
```bib
125-
@software{gnark-v0.8.0,
125+
@software{gnark-v0.9.0,
126126
author = {Gautam Botrel and
127127
Thomas Piellard and
128128
Youssef El Housni and
129129
Ivo Kubjas and
130130
Arya Tabaie},
131-
title = {ConsenSys/gnark: v0.8.0},
131+
title = {ConsenSys/gnark: v0.9.0},
132132
month = feb,
133133
year = 2023,
134134
publisher = {Zenodo},
135-
version = {v0.8.0},
135+
version = {v0.9.0},
136136
doi = {10.5281/zenodo.5819104},
137137
url = {https://doi.org/10.5281/zenodo.5819104}
138138
}

backend/backend.go

+7-49
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@
1515
// Package backend implements Zero Knowledge Proof systems: it consumes circuit compiled with gnark/frontend.
1616
package backend
1717

18-
import (
19-
"github.com/consensys/gnark/backend/hint"
20-
"github.com/consensys/gnark/logger"
21-
"github.com/rs/zerolog"
22-
)
18+
import "github.com/consensys/gnark/constraint/solver"
2319

2420
// ID represent a unique ID for a proving scheme
2521
type ID uint16
@@ -50,26 +46,20 @@ func (id ID) String() string {
5046
}
5147
}
5248

53-
// ProverOption defines option for altering the behaviour of the prover in
49+
// ProverOption defines option for altering the behavior of the prover in
5450
// Prove, ReadAndProve and IsSolved methods. See the descriptions of functions
5551
// returning instances of this type for implemented options.
5652
type ProverOption func(*ProverConfig) error
5753

5854
// ProverConfig is the configuration for the prover with the options applied.
5955
type ProverConfig struct {
60-
Force bool // defaults to false
61-
HintFunctions map[hint.ID]hint.Function // defaults to all built-in hint functions
62-
CircuitLogger zerolog.Logger // defaults to gnark.Logger
56+
SolverOpts []solver.Option
6357
}
6458

6559
// NewProverConfig returns a default ProverConfig with given prover options opts
6660
// applied.
6761
func NewProverConfig(opts ...ProverOption) (ProverConfig, error) {
68-
log := logger.Logger()
69-
opt := ProverConfig{CircuitLogger: log, HintFunctions: make(map[hint.ID]hint.Function)}
70-
for _, v := range hint.GetRegistered() {
71-
opt.HintFunctions[hint.UUID(v)] = v
72-
}
62+
opt := ProverConfig{}
7363
for _, option := range opts {
7464
if err := option(&opt); err != nil {
7565
return ProverConfig{}, err
@@ -78,42 +68,10 @@ func NewProverConfig(opts ...ProverOption) (ProverConfig, error) {
7868
return opt, nil
7969
}
8070

81-
// IgnoreSolverError is a prover option that indicates that the Prove algorithm
82-
// should complete even if constraint system is not solved. In that case, Prove
83-
// will output an invalid Proof, but will execute all algorithms which is useful
84-
// for test and benchmarking purposes.
85-
func IgnoreSolverError() ProverOption {
86-
return func(opt *ProverConfig) error {
87-
opt.Force = true
88-
return nil
89-
}
90-
}
91-
92-
// WithHints is a prover option that specifies additional hint functions to be used
93-
// by the constraint solver.
94-
func WithHints(hintFunctions ...hint.Function) ProverOption {
95-
log := logger.Logger()
96-
return func(opt *ProverConfig) error {
97-
// it is an error to register hint function several times, but as the
98-
// prover already checks it then omit here.
99-
for _, h := range hintFunctions {
100-
uuid := hint.UUID(h)
101-
if _, ok := opt.HintFunctions[uuid]; ok {
102-
log.Warn().Int("hintID", int(uuid)).Str("name", hint.Name(h)).Msg("duplicate hint function")
103-
} else {
104-
opt.HintFunctions[uuid] = h
105-
}
106-
}
107-
return nil
108-
}
109-
}
110-
111-
// WithCircuitLogger is a prover option that specifies zerolog.Logger as a destination for the
112-
// logs printed by api.Println(). By default, uses gnark/logger.
113-
// zerolog.Nop() will disable logging
114-
func WithCircuitLogger(l zerolog.Logger) ProverOption {
71+
// WithSolverOptions specifies the constraint system solver options.
72+
func WithSolverOptions(solverOpts ...solver.Option) ProverOption {
11573
return func(opt *ProverConfig) error {
116-
opt.CircuitLogger = l
74+
opt.SolverOpts = solverOpts
11775
return nil
11876
}
11977
}

0 commit comments

Comments
 (0)