Skip to content

Commit

Permalink
constant is now 2^23
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Aug 22, 2023
1 parent 89e4e1a commit b1f107d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions circuits/cpp/barretenberg/cpp/src/barretenberg/bb/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@
#include <vector>

using namespace barretenberg;

uint32_t MAX_CIRCUIT_SIZE = 1 << 19;
// The maximum size that we can do in the browser is 2^19
// based on memory constraints for UltraPlonk.
// However, since this will be ran natively, we can increase the
// size.
uint32_t MAX_CIRCUIT_SIZE = 1 << 23;
std::string CRS_PATH = "./crs";
bool verbose = false;

Expand Down

0 comments on commit b1f107d

Please sign in to comment.