From 23c283bdd5bdfbe90d75990b753be45da7f38738 Mon Sep 17 00:00:00 2001 From: Samuel Burnham <45365069+samuelburnham@users.noreply.github.com> Date: Wed, 1 Nov 2023 12:20:02 -0400 Subject: [PATCH] Parameterize `BenchmarkId` on output type --- .github/workflows/bench-pr-comment.yml | 9 +++ benches/fibonacci_lem.rs | 83 ++++++++++++++------------ 2 files changed, 53 insertions(+), 39 deletions(-) diff --git a/.github/workflows/bench-pr-comment.yml b/.github/workflows/bench-pr-comment.yml index 8399e0fdf9..da48729260 100644 --- a/.github/workflows/bench-pr-comment.yml +++ b/.github/workflows/bench-pr-comment.yml @@ -32,6 +32,14 @@ jobs: run: sudo apt-get install -y pkg-config libssl-dev - uses: actions-rs/toolchain@v1 - uses: Swatinem/rust-cache@v2 + - name: Load env vars + run: | + set -a + source bench.env + set +a + echo "LURK_BENCH_OUTPUT=pr-comment" >> $GITHUB_ENV + env | grep -E 'LURK|EC_GPU|CUDA' + working-directory: ${{ github.workspace }}/benches # Run the comparative benchmark and comment output on the PR - uses: boa-dev/criterion-compare-action@v3 with: @@ -77,6 +85,7 @@ jobs: set -a source bench.env set +a + echo "LURK_BENCH_OUTPUT=pr-comment" >> $GITHUB_ENV env | grep -E 'LURK|EC_GPU|CUDA' working-directory: ${{ github.workspace }}/benches # Run the comparative benchmark and comment output on the PR diff --git a/benches/fibonacci_lem.rs b/benches/fibonacci_lem.rs index e1c9507c04..56e43701cc 100644 --- a/benches/fibonacci_lem.rs +++ b/benches/fibonacci_lem.rs @@ -59,6 +59,45 @@ impl ProveParams { fn name(&self) -> String { format!("Fibonacci-rc={}", self.reduction_count) } + + fn params(&self) -> String { + let output_type = bench_parameters_env().unwrap_or("stdout".into()); + match output_type.as_ref() { + "pr-comment" => format!("num-{}", self.fib_n), + "commit-comment" => todo!(), + "gh-pages" => todo!(), + _ => format!("num-{}/{}-{}", self.fib_n, self.sha, self.date), + } + } +} + +fn bench_parameters_env() -> anyhow::Result { + std::env::var("LURK_BENCH_OUTPUT") + .map_err(|e| anyhow!("Noise threshold env var isn't set: {e}")) +} + +fn rc_env() -> anyhow::Result> { + std::env::var("LURK_RC") + .map_err(|e| anyhow!("Reduction count env var isn't set: {e}")) + .and_then(|rc| { + let vec: anyhow::Result> = rc + .split(',') + .map(|rc| { + rc.parse::() + .map_err(|e| anyhow!("Failed to parse RC: {e}")) + }) + .collect(); + vec + }) +} + +fn noise_threshold_env() -> anyhow::Result { + std::env::var("LURK_BENCH_NOISE_THRESHOLD") + .map_err(|e| anyhow!("Noise threshold env var isn't set: {e}")) + .and_then(|nt| { + nt.parse::() + .map_err(|e| anyhow!("Failed to parse noise threshold: {e}")) + }) } fn fibo_prove( @@ -66,20 +105,13 @@ fn fibo_prove( c: &mut BenchmarkGroup<'_, M>, state: &Rc>, ) { - let ProveParams { - fib_n, - reduction_count, - date, - sha, - } = prove_params; - - let limit = fib_limit(fib_n, reduction_count); + let limit = fib_limit(prove_params.fib_n, prove_params.reduction_count); let lang_pallas = Lang::>::new(); let lang_rc = Arc::new(lang_pallas.clone()); // use cached public params let instance = Instance::new( - reduction_count, + prove_params.reduction_count, lang_rc.clone(), true, Kind::NovaPublicParams, @@ -87,16 +119,13 @@ fn fibo_prove( let pp = public_params::<_, _, MultiFrame<'_, _, _>>(&instance).unwrap(); // Track the number of `Lurk frames / sec` - let rc = reduction_count as u64; + let rc = prove_params.reduction_count as u64; c.throughput(criterion::Throughput::Elements( - rc * u64::div_ceil((11 + 16 * fib_n) as u64, rc), + rc * u64::div_ceil((11 + 16 * prove_params.fib_n) as u64, rc), )); c.bench_with_input( - BenchmarkId::new( - prove_params.name(), - format!("num-{}/{sha}-{date}", prove_params.fib_n), - ), + BenchmarkId::new(prove_params.name(), prove_params.params()), &prove_params, |b, prove_params| { let store = Store::default(); @@ -125,30 +154,6 @@ fn fibo_prove( ); } -fn rc_env() -> anyhow::Result> { - std::env::var("LURK_RC") - .map_err(|e| anyhow!("Reduction count env var isn't set: {e}")) - .and_then(|rc| { - let vec: anyhow::Result> = rc - .split(',') - .map(|rc| { - rc.parse::() - .map_err(|e| anyhow!("Failed to parse RC: {e}")) - }) - .collect(); - vec - }) -} - -fn noise_threshold_env() -> anyhow::Result { - std::env::var("LURK_BENCH_NOISE_THRESHOLD") - .map_err(|e| anyhow!("Noise threshold env var isn't set: {e}")) - .and_then(|nt| { - nt.parse::() - .map_err(|e| anyhow!("Failed to parse noise threshold: {e}")) - }) -} - fn fibonacci_prove(c: &mut Criterion) { tracing_subscriber::fmt::init(); set_bench_config();