Skip to content

Benchmark

Benchmark #54

Workflow file for this run

name: Benchmark
on:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
benchmark-x86:
name: Benchmark X86
runs-on: buildjet-2vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v4
- name: Benchmark
run: cargo bench --bench throughput --features 'bench-plot'
- name: Switch to nightly rust
run: rustup default nightly
- name: Benchmark AVX2 (nightly)
run: cargo bench --bench hashset --features 'bench-plot avx2'
benchmark-arm:
name: Benchmark ARM
runs-on: buildjet-2vcpu-ubuntu-2204-arm
steps:
- uses: actions/checkout@v4
- name: Benchmark
run: cargo bench --bench hashset --features 'bench-plot'