Skip to content

Commit

Permalink
chore: roundup fixes from honk move
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad committed Jul 11, 2024
1 parent 723a0c1 commit 951069a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 32 deletions.
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

0 comments on commit 951069a

Please sign in to comment.