Skip to content

Commit

Permalink
chore: reduce max circuit size in bb binary (#1942)
Browse files Browse the repository at this point in the history
resolves #1941 

# Checklist:
Remove the checklist to signal you've completed it. Enable auto-merge if
the PR is ready to merge.
- [ ] If the pull request requires a cryptography review (e.g.
cryptographic algorithm implementations) I have added the 'crypto' tag.
- [ ] I have reviewed my diff in github, line by line and removed
unexpected formatting changes, testing logs, or commented-out code.
- [ ] Every change is related to the PR description.
- [ ] I have
[linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
this pull request to relevant issues (if any exist).
  • Loading branch information
kevaundray authored Sep 2, 2023
1 parent 3a8e702 commit c61439b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions circuits/cpp/barretenberg/cpp/src/barretenberg/bb/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ using namespace barretenberg;
// based on memory constraints for UltraPlonk.
// However, since this CLI does not use WASM, we can increase the
// size.
uint32_t MAX_CIRCUIT_SIZE = 1 << 23;
uint32_t MAX_CIRCUIT_SIZE = 1 << 22;
std::string CRS_PATH = "./crs";
bool verbose = false;

Expand Down Expand Up @@ -333,4 +333,4 @@ int main(int argc, char* argv[])
std::cerr << err.what() << std::endl;
return 1;
}
}
}

0 comments on commit c61439b

Please sign in to comment.