Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Jun 9, 2024
2 parents 4d469c0 + 022ddb7 commit 56856db
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions leader/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use anyhow::Result;
use clap::Parser;
use cli::Command;
use common::block_interval::BlockInterval;
use common::prover_state::TableLoadStrategy;
use dotenvy::dotenv;
use ops::register;
use paladin::runtime::Runtime;
Expand Down Expand Up @@ -57,9 +56,6 @@ async fn main() -> Result<()> {
// state here.
args.prover_state_config
.into_prover_state_manager()
// Use the monolithic load strategy for the prover state when running in
// emulation mode.
.with_load_strategy(TableLoadStrategy::Monolithic)
.initialize()?;
}

Expand Down
2 changes: 1 addition & 1 deletion tools/simple_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fi
cargo build --release --jobs "$num_procs"

start_time=$(date +%s%N)
../target/release/leader --runtime in-memory stdio < witness.json | tee leader.out
../target/release/leader --runtime in-memory --load-strategy monolithic stdio < witness.json | tee leader.out
end_time=$(date +%s%N)

tail -n 1 leader.out > proof.json
Expand Down

0 comments on commit 56856db

Please sign in to comment.