use avx256 by default #754
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: expander-rs CI | |
on: [pull_request, push] | |
env: | |
RUSTFLAGS: "-Dwarnings -C target-cpu=native" | |
RUST_BACKTRACE: 1 | |
jobs: | |
lint: | |
name: Lint | |
runs-on: 7950x3d | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
- run: python3 ./scripts/install.py | |
- run: cargo fmt --all -- --check | |
- run: cargo clippy | |
build-and-test: | |
name: Build and Test (${{ matrix.os }}${{ matrix.feature != '' && format(', {0}', matrix.feature) || '' }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
- os: 7950x3d | |
feature: avx2 | |
- os: 7950x3d | |
feature: avx512f | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Set RUSTFLAGS for AVX | |
if: matrix.feature != '' | |
run: echo "RUSTFLAGS=$RUSTFLAGS -C target-feature=+${{ matrix.feature }}" >> $GITHUB_ENV | |
- name: Build and Test | |
run: | | |
python3 ./scripts/install.py | |
cargo run --bin=dev-setup --release | |
cargo build --all-features --release | |
cargo test --all-features --release | |
cargo test -p arith --release | |
cargo test -p bi-kzg --release | |
benchmark: | |
name: Benchmark (${{ matrix.os }}${{ matrix.feature != '' && format(', {0}', matrix.feature) || '' }}, ${{ matrix.field }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
field: m31ext3 | |
- os: macos-latest | |
field: fr | |
- os: macos-latest | |
field: gf2ext128 | |
- os: 7950x3d | |
feature: avx2 | |
field: m31ext3 | |
- os: 7950x3d | |
feature: avx2 | |
field: fr | |
- os: 7950x3d | |
feature: avx2 | |
field: gf2ext128 | |
- os: 7950x3d | |
feature: avx512f | |
field: m31ext3 | |
- os: 7950x3d | |
feature: avx512f | |
field: fr | |
- os: 7950x3d | |
feature: avx512f | |
field: gf2ext128 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Set RUSTFLAGS for AVX | |
if: matrix.feature != '' | |
run: echo "RUSTFLAGS=$RUSTFLAGS -C target-feature=+${{ matrix.feature }}" >> $GITHUB_ENV | |
- name: Run benchmark | |
run: | | |
python3 ./scripts/install.py | |
cargo run --bin=dev-setup --release | |
cargo run --release -- -t ${{ matrix.os == 'macos-latest' && 2 || 16 }} -f ${{ matrix.field }} | |