feat: run through the benchmarks 10 times. #55
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: Benchmarks | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- "README.md" | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- "README.md" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
benchmark-tests: | |
runs-on: | |
large-self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: software-mansion/setup-scarb@v1 | |
with: | |
scarb-version: "2.4.0" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2024-01-16 | |
override: true | |
components: rustfmt, clippy | |
- uses: baptiste0928/cargo-install@v1 | |
with: | |
crate: cargo-nextest | |
locked: true | |
- name: Cargo clean | |
run: cargo clean | |
- name: Delete Cargo.lock | |
run: rm -f Cargo.lock | |
- name: Install Risc0 toolchain | |
run: | | |
cargo install cargo-binstall | |
yes | cargo binstall cargo-risczero | |
cargo risczero install | |
- name: Install Rust jupyter kernel | |
run: | | |
cargo install evcxr_jupyter | |
evcxr_jupyter --install | |
- name: Install GNU Time | |
run: sudo apt-get update && sudo apt-get install -y time | |
- name: Download and Install EZKL Binary | |
run: | | |
curl -L -o ezkl.tar.gz https://github.com/zkonduit/ezkl/releases/download/v7.1.4/build-artifacts.ezkl-linux-gnu.tar.gz | |
tar -xzf ezkl.tar.gz | |
sudo mv ezkl /usr/local/bin/ # Move the binary to a directory in your PATH | |
- name: Setup Virtual Env | |
run: python -m venv .env; source .env/bin/activate; | |
- name: Run all benchmarks across all models | |
run: source .env/bin/activate; cargo nextest run benchmarking_tests::tests::run_benchmarks_ --no-capture |