Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: iden3/rapidsnark
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: iden3/rapidsnark
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: feature/4M-buffer
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 28, 2023

  1. Copy the full SHA
    50c17cd View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 src/main_prover.cpp
4 changes: 2 additions & 2 deletions src/main_prover.cpp
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
do { perror(msg); exit(EXIT_FAILURE); } while (0)


const size_t BufferSize = 16384;
const size_t BufferSize = 4194304;


int main(int argc, char **argv)
@@ -26,7 +26,7 @@ int main(int argc, char **argv)
std::string proofFilename = argv[3];
std::string publicFilename = argv[4];

char proofBuffer[BufferSize];
char proofBuffer[910];
char publicBuffer[BufferSize];
size_t proofSize = sizeof(proofBuffer);
size_t publicSize = sizeof(publicBuffer);