Benchmark #54
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |