-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nargo): Update nargo to use preprocessing interface (#765)
* initial preprocess cmd to test backend changes * cargo lock merge conflicts * initial work using preprocess for nargo proving and verification, still have non-deterministic error on backend with C++ * use fixed up aztec_backend for preprocess * moving preprocess into compile command * use nargo compile to preprocess no more preprocess cmd * remove preprocess cmd file * remove TODO from nargo cargo.toml * add checking of acir file in nargo prove * switch to using circuit_path for pk and vk paths, compare compiled circuit to one written to file * add logic to look at checksum of acir rather than the file byte by bte * remove debug * cargo update * remove unnecessary comments * switch backend reference to updated composer * when build artifacts are not provided to nargo prove, preprocess as a fallback, still needs to be done for verification * move fetch_pk_and_vk into main nargo module, also use hash cs method from acvm * move path specifications to separate method in nargo commands * comment in compile cmd * nit comments and cspell * update aztec_backend commit rev * cargo fmt after merge
- Loading branch information
Showing
10 changed files
with
227 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,8 @@ pkg/ | |
# Nargo output | ||
*.proof | ||
*.acir | ||
*.acir.sha256 | ||
*.tr | ||
*.pk | ||
*.vk | ||
**/Verifier.toml |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.