sp1-eval 4.1.6

A performance evaluation tool for SP1 programs.
Documentation
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;
use sp1_eval::evaluate_performance;
use sp1_prover::components::CpuProverComponents;
use sp1_stark::SP1ProverOpts;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let opts = SP1ProverOpts::auto();
    evaluate_performance::<CpuProverComponents>(opts).await
}