Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove duplicate gkr template generation #439

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions internal/generator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,22 +118,6 @@ func main() {
// generate polynomial on fr
assertNoError(polynomial.Generate(frInfo, filepath.Join(curveDir, "fr", "polynomial"), true, bgen))

// generate sumcheck on fr
assertNoError(sumcheck.Generate(frInfo, filepath.Join(curveDir, "fr", "sumcheck"), bgen))

// generate gkr on fr
assertNoError(gkr.Generate(gkr.Config{
FieldDependency: frInfo,
GenerateTests: true,
TestVectorsRelativePath: "../../../../internal/generator/gkr/test_vectors",
}, filepath.Join(curveDir, "fr", "gkr"), bgen))

// generate test vector utils on fr
assertNoError(test_vector_utils.Generate(test_vector_utils.Config{
FieldDependency: frInfo,
RandomizeMissingHashEntries: false,
}, filepath.Join(curveDir, "fr", "test_vector_utils"), bgen))

// generate eddsa on companion curves
assertNoError(fri.Generate(conf, filepath.Join(curveDir, "fr", "fri"), bgen))

Expand Down