Skip to content

chore: try to run benchtop #2

chore: try to run benchtop

chore: try to run benchtop #2

Workflow file for this run

name: Benchtop
on:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
bench:
name: NOMT - run benchtop
runs-on: ubuntu-latest
env:
SIZE: 22
BUCKETS: 4000000
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v4
- run: df -h /
- run: rustup update stable && rustup default stable
- run: cargo build --release --verbose --manifest-path=benchtop/Cargo.toml
- run: >-
cargo run --release --manifest-path=benchtop/Cargo.toml -- init
-b nomt
-c $SIZE
-w transfer
--buckets $BUCKETS
- run: >-
cargo run --release --manifest-path=benchtop/Cargo.toml -- run
-w transfer
-b nomt
-s 10000
-c $SIZE
--time-limit 30s
--workload-concurrency 6