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

chore(proving): post prover system move fixes #7435

Merged
merged 2 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"version": "0.2.0",
"configurations": [
{
"port": 9229,
"address": "${config:mainframeAddress}",
"port": 9221,
"type": "node",
"request": "attach",
"name": "Attach to Remote",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
"editor.defaultFormatter": "hashicorp.terraform"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
Expand Down
20 changes: 0 additions & 20 deletions barretenberg/.vscode/launch.json

This file was deleted.

5 changes: 0 additions & 5 deletions barretenberg/cpp/src/barretenberg/bb/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,6 @@ bool proveAndVerifyHonkProgram(const std::string& bytecodePath, const std::strin
return true;
}

struct VectorOfAcirAndWitnesses {
std::vector<std::vector<uint8_t>> acirGzippedBincoes;
std::vector<std::map<uint8_t, std::string>> witnessMaps;
};

// TODO(#7371): this could probably be more idiomatic
template <typename T> T unpack_from_file(const std::string& filename)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,12 +353,12 @@ template <typename FF_> class UltraHonkArith {
// needs to be more dynamic. Sizes currently set to accommodate the full e2e test.
std::array<uint32_t, 10> fixed_block_sizes{
1 << 10, // ecc_op;
30000, // pub_inputs;
755000, // arithmetic;
5000, // pub_inputs;
600000, // arithmetic;
140000, // delta_range;
600000, // elliptic;
1400000, // aux;
460000, // lookup;
425000, // elliptic;
1050000, // aux;
275000, // lookup;
1 << 7, // busread;
15000, // poseidon_external;
85000 // poseidon_internal;
Expand Down
Loading