mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-01-17 12:33:10 +00:00
5 lines
285 B
Bash
Executable File
5 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
# Can be used as a drop in replacement for `cargo test` with avx512f flag on.
|
|
# For example, `./scripts/test_avx.sh` will run all tests(not only avx).
|
|
RUSTFLAGS="-Awarnings -C target-cpu=native -C target-feature=+avx512f -C opt-level=2" cargo +nightly-2024-01-04 test "$@"
|