mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-01-11 09:33:08 +00:00
6 lines
296 B
Bash
Executable File
6 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
# Can be used as a drop in replacement for `cargo bench`.
|
|
# For example, `./scripts/bench.sh` will run all benchmarks.
|
|
# or `./scripts/bench.sh M31` will run only the M31 benchmarks.
|
|
RUSTFLAGS="-Awarnings -C target-cpu=native -C target-feature=+avx512f -C opt-level=3" cargo bench $@
|