Skip to content

Commit

Permalink
fix: increase the chunk size
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Jul 19, 2024
1 parent 1a44121 commit a8324f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zero_bin/prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ use zero_bin_common::fs::generate_block_proof_file_name;
// Limit the number of segments that are proven in parallel
// to prevent excessive memory consumption
#[cfg(not(feature = "test_only"))]
const GENERATION_INPUTS_AGG_CHUNK_SIZE_INNER: usize = 2;
const GENERATION_INPUTS_AGG_CHUNK_SIZE_INNER: usize = 4;
#[cfg(not(feature = "test_only"))]
const GENERATION_INPUTS_AGG_CHUNK_SIZE: usize = 5;
const GENERATION_INPUTS_AGG_CHUNK_SIZE: usize = 4;

#[derive(Debug, Deserialize, Serialize)]
pub struct BlockProverInput {
Expand Down

0 comments on commit a8324f0

Please sign in to comment.