2020-10-07 03:39:56 -05:00
|
|
|
|
name: CI
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
pull_request:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- master
|
|
|
|
|
|
|
|
|
|
env:
|
|
|
|
|
CARGO_NET_RETRY: 10
|
|
|
|
|
RUSTUP_MAX_RETRIES: 10
|
|
|
|
|
|
|
|
|
|
jobs:
|
2021-07-23 19:43:53 -05:00
|
|
|
|
rustfmt:
|
|
|
|
|
name: "rustfmt"
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
- name: Setup Rust
|
|
|
|
|
run: |
|
|
|
|
|
rustup update nightly --no-self-update
|
|
|
|
|
rustup default nightly
|
|
|
|
|
rustup component add rustfmt
|
|
|
|
|
- name: Run rustfmt
|
|
|
|
|
run: cargo fmt --all -- --check
|
|
|
|
|
|
|
|
|
|
clippy:
|
|
|
|
|
name: "clippy on ${{ matrix.target }}"
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
target:
|
|
|
|
|
# We shouldn't really have any OS-specific code, so think of this as a list of architectures
|
|
|
|
|
- x86_64-unknown-linux-gnu
|
|
|
|
|
- i686-unknown-linux-gnu
|
|
|
|
|
- i586-unknown-linux-gnu
|
|
|
|
|
- aarch64-unknown-linux-gnu
|
|
|
|
|
- armv7-unknown-linux-gnueabihf
|
2023-07-07 05:32:29 -05:00
|
|
|
|
# non-nightly since https://github.com/rust-lang/rust/pull/113274
|
|
|
|
|
# - mips-unknown-linux-gnu
|
|
|
|
|
# - mips64-unknown-linux-gnuabi64
|
2021-07-23 19:43:53 -05:00
|
|
|
|
- powerpc-unknown-linux-gnu
|
|
|
|
|
- powerpc64-unknown-linux-gnu
|
|
|
|
|
- riscv64gc-unknown-linux-gnu
|
|
|
|
|
- s390x-unknown-linux-gnu
|
|
|
|
|
- sparc64-unknown-linux-gnu
|
|
|
|
|
- wasm32-unknown-unknown
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
- name: Setup Rust
|
|
|
|
|
run: |
|
|
|
|
|
rustup update nightly --no-self-update
|
|
|
|
|
rustup default nightly
|
|
|
|
|
rustup target add ${{ matrix.target }}
|
|
|
|
|
rustup component add clippy
|
|
|
|
|
- name: Run Clippy
|
|
|
|
|
run: cargo clippy --all-targets --target ${{ matrix.target }}
|
|
|
|
|
|
2020-10-07 03:39:56 -05:00
|
|
|
|
x86-tests:
|
|
|
|
|
name: "${{ matrix.target_feature }} on ${{ matrix.target }}"
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
target: [x86_64-pc-windows-msvc, i686-pc-windows-msvc, i586-pc-windows-msvc, x86_64-unknown-linux-gnu, x86_64-apple-darwin]
|
|
|
|
|
# `default` means we use the default target config for the target,
|
|
|
|
|
# `native` means we run with `-Ctarget-cpu=native`, and anything else is
|
|
|
|
|
# an arg to `-Ctarget-feature`
|
|
|
|
|
target_feature: [default, native, +sse3, +ssse3, +sse4.1, +sse4.2, +avx, +avx2]
|
|
|
|
|
|
|
|
|
|
exclude:
|
|
|
|
|
# The macos runners seem to only reliably support up to `avx`.
|
|
|
|
|
- { target: x86_64-apple-darwin, target_feature: +avx2 }
|
|
|
|
|
# These features are statically known to be present for all 64 bit
|
|
|
|
|
# macs, and thus are covered by the `default` test
|
|
|
|
|
- { target: x86_64-apple-darwin, target_feature: +sse3 }
|
|
|
|
|
- { target: x86_64-apple-darwin, target_feature: +ssse3 }
|
|
|
|
|
# -Ctarget-cpu=native sounds like bad-news if target != host
|
|
|
|
|
- { target: i686-pc-windows-msvc, target_feature: native }
|
|
|
|
|
- { target: i586-pc-windows-msvc, target_feature: native }
|
|
|
|
|
|
|
|
|
|
include:
|
|
|
|
|
# Populate the `matrix.os` field
|
|
|
|
|
- { target: x86_64-apple-darwin, os: macos-latest }
|
|
|
|
|
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
|
|
|
|
|
- { target: x86_64-pc-windows-msvc, os: windows-latest }
|
|
|
|
|
- { target: i686-pc-windows-msvc, os: windows-latest }
|
|
|
|
|
- { target: i586-pc-windows-msvc, os: windows-latest }
|
|
|
|
|
|
|
|
|
|
# These are globally available on all the other targets.
|
|
|
|
|
- { target: i586-pc-windows-msvc, target_feature: +sse, os: windows-latest }
|
|
|
|
|
- { target: i586-pc-windows-msvc, target_feature: +sse2, os: windows-latest }
|
|
|
|
|
|
|
|
|
|
# Annoyingly, the x86_64-unknown-linux-gnu runner *almost* always has
|
2021-10-18 18:20:31 -05:00
|
|
|
|
# avx512vl, but occasionally doesn't. Maybe one day we can enable it.
|
2020-10-07 03:39:56 -05:00
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
- name: Setup Rust
|
|
|
|
|
run: |
|
|
|
|
|
rustup update nightly --no-self-update
|
|
|
|
|
rustup default nightly
|
|
|
|
|
rustup target add ${{ matrix.target }}
|
|
|
|
|
|
|
|
|
|
- name: Configure RUSTFLAGS
|
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
case "${{ matrix.target_feature }}" in
|
|
|
|
|
default)
|
2021-11-09 23:06:38 -06:00
|
|
|
|
echo "RUSTFLAGS=-Dwarnings" >> $GITHUB_ENV;;
|
2020-10-07 03:39:56 -05:00
|
|
|
|
native)
|
2021-11-09 23:06:38 -06:00
|
|
|
|
echo "RUSTFLAGS=-Dwarnings -Ctarget-cpu=native" >> $GITHUB_ENV
|
2020-10-07 03:39:56 -05:00
|
|
|
|
;;
|
|
|
|
|
*)
|
2021-11-09 23:06:38 -06:00
|
|
|
|
echo "RUSTFLAGS=-Dwarnings -Ctarget-feature=${{ matrix.target_feature }}" >> $GITHUB_ENV
|
2020-10-07 03:39:56 -05:00
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
# Super useful for debugging why a SIGILL occurred.
|
|
|
|
|
- name: Dump target configuration and support
|
|
|
|
|
run: |
|
|
|
|
|
rustc -Vv
|
|
|
|
|
|
|
|
|
|
echo "Caveat: not all target features are expected to be logged"
|
|
|
|
|
|
|
|
|
|
echo "## Requested target configuration (RUSTFLAGS=$RUSTFLAGS)"
|
|
|
|
|
rustc --print=cfg --target=${{ matrix.target }} $RUSTFLAGS
|
|
|
|
|
|
|
|
|
|
echo "## Supported target configuration for --target=${{ matrix.target }}"
|
|
|
|
|
rustc --print=cfg --target=${{ matrix.target }} -Ctarget-cpu=native
|
|
|
|
|
|
|
|
|
|
echo "## Natively supported target configuration"
|
|
|
|
|
rustc --print=cfg -Ctarget-cpu=native
|
|
|
|
|
|
|
|
|
|
- name: Test (debug)
|
|
|
|
|
run: cargo test --verbose --target=${{ matrix.target }}
|
|
|
|
|
|
|
|
|
|
- name: Test (release)
|
|
|
|
|
run: cargo test --verbose --target=${{ matrix.target }} --release
|
|
|
|
|
|
2021-10-18 18:20:31 -05:00
|
|
|
|
wasm-tests:
|
|
|
|
|
name: "wasm (firefox, ${{ matrix.name }})"
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
strategy:
|
|
|
|
|
matrix:
|
|
|
|
|
include:
|
|
|
|
|
- { name: default, RUSTFLAGS: "" }
|
|
|
|
|
- { name: simd128, RUSTFLAGS: "-C target-feature=+simd128" }
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
- name: Setup Rust
|
|
|
|
|
run: |
|
|
|
|
|
rustup update nightly --no-self-update
|
|
|
|
|
rustup default nightly
|
|
|
|
|
- name: Install wasm-pack
|
|
|
|
|
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
|
|
|
- name: Test (debug)
|
|
|
|
|
run: wasm-pack test --firefox --headless crates/core_simd
|
|
|
|
|
env:
|
|
|
|
|
RUSTFLAGS: ${{ matrix.rustflags }}
|
|
|
|
|
- name: Test (release)
|
|
|
|
|
run: wasm-pack test --firefox --headless crates/core_simd --release
|
|
|
|
|
env:
|
|
|
|
|
RUSTFLAGS: ${{ matrix.rustflags }}
|
|
|
|
|
|
2020-10-07 03:39:56 -05:00
|
|
|
|
cross-tests:
|
2023-07-22 07:55:55 -05:00
|
|
|
|
name: "${{ matrix.target_feature }} on ${{ matrix.target }} (via cross)"
|
2020-10-07 03:39:56 -05:00
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
|
target:
|
|
|
|
|
- armv7-unknown-linux-gnueabihf
|
2023-07-26 23:07:28 -05:00
|
|
|
|
- thumbv7neon-unknown-linux-gnueabihf # includes neon by default
|
|
|
|
|
- aarch64-unknown-linux-gnu # includes neon by default
|
2023-07-21 23:44:48 -05:00
|
|
|
|
- powerpc-unknown-linux-gnu
|
2023-07-26 23:07:28 -05:00
|
|
|
|
- powerpc64le-unknown-linux-gnu # includes altivec by default
|
2023-07-21 23:44:48 -05:00
|
|
|
|
- riscv64gc-unknown-linux-gnu
|
|
|
|
|
# MIPS uses a nonstandard binary representation for NaNs which makes it worth testing
|
2023-07-26 23:07:28 -05:00
|
|
|
|
# non-nightly since https://github.com/rust-lang/rust/pull/113274
|
2023-07-07 05:32:29 -05:00
|
|
|
|
# - mips-unknown-linux-gnu
|
|
|
|
|
# - mips64-unknown-linux-gnuabi64
|
2023-07-26 23:07:28 -05:00
|
|
|
|
# Lots of errors in QEMU and no real hardware to test on. Not clear if it's QEMU or bad codegen.
|
|
|
|
|
# - powerpc64-unknown-linux-gnu
|
2023-07-22 07:58:37 -05:00
|
|
|
|
target_feature: [default]
|
2023-07-22 07:55:55 -05:00
|
|
|
|
include:
|
2023-07-22 17:35:04 -05:00
|
|
|
|
- { target: powerpc64-unknown-linux-gnu, target_feature: "+vsx" }
|
|
|
|
|
- { target: powerpc64le-unknown-linux-gnu, target_feature: "+vsx" }
|
2023-07-26 23:07:28 -05:00
|
|
|
|
# Fails due to QEMU floating point errors, probably handling subnormals incorrectly.
|
|
|
|
|
# This target is somewhat redundant, since ppc64le has altivec as well.
|
|
|
|
|
# - { target: powerpc-unknown-linux-gnu, target_feature: "+altivec" }
|
2023-07-22 09:24:32 -05:00
|
|
|
|
# We should test this, but cross currently can't run it
|
|
|
|
|
# - { target: riscv64gc-unknown-linux-gnu, target_feature: "+v,+zvl128b" }
|
2020-10-07 03:39:56 -05:00
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
- name: Setup Rust
|
|
|
|
|
run: |
|
|
|
|
|
rustup update nightly --no-self-update
|
|
|
|
|
rustup default nightly
|
|
|
|
|
rustup target add ${{ matrix.target }}
|
|
|
|
|
rustup component add rust-src
|
|
|
|
|
|
|
|
|
|
- name: Install Cross
|
|
|
|
|
# Equivalent to `cargo install cross`, but downloading a prebuilt
|
|
|
|
|
# binary. Ideally we wouldn't hardcode a version, but the version number
|
|
|
|
|
# being part of the tarball means we can't just use the download/latest
|
|
|
|
|
# URL :(
|
|
|
|
|
run: |
|
2023-07-21 23:44:48 -05:00
|
|
|
|
CROSS_URL=https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-unknown-linux-gnu.tar.gz
|
2020-10-07 03:39:56 -05:00
|
|
|
|
mkdir -p "$HOME/.bin"
|
|
|
|
|
curl -sfSL --retry-delay 10 --retry 5 "${CROSS_URL}" | tar zxf - -C "$HOME/.bin"
|
|
|
|
|
echo "$HOME/.bin" >> $GITHUB_PATH
|
|
|
|
|
|
2023-07-22 15:02:00 -05:00
|
|
|
|
- name: Configure Emulated CPUs
|
|
|
|
|
run: |
|
|
|
|
|
echo "CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_RUNNER=qemu-ppc -cpu e600" >> $GITHUB_ENV
|
2023-07-22 17:35:04 -05:00
|
|
|
|
# echo "CARGO_TARGET_RISCV64GC_UNKNOWN_LINUX_GNU_RUNNER=qemu-riscv64 -cpu rv64,zba=true,zbb=true,v=true,vlen=256,vext_spec=v1.0" >> $GITHUB_ENV
|
2023-07-22 15:02:00 -05:00
|
|
|
|
|
2023-07-21 23:44:48 -05:00
|
|
|
|
- name: Configure RUSTFLAGS
|
2023-07-22 07:55:55 -05:00
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
case "${{ matrix.target_feature }}" in
|
|
|
|
|
default)
|
|
|
|
|
echo "RUSTFLAGS=" >> $GITHUB_ENV;;
|
|
|
|
|
*)
|
|
|
|
|
echo "RUSTFLAGS=-Ctarget-feature=${{ matrix.target_feature }}" >> $GITHUB_ENV
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2023-07-21 23:44:48 -05:00
|
|
|
|
|
2020-10-07 03:39:56 -05:00
|
|
|
|
- name: Test (debug)
|
|
|
|
|
run: cross test --verbose --target=${{ matrix.target }}
|
|
|
|
|
|
|
|
|
|
- name: Test (release)
|
|
|
|
|
run: cross test --verbose --target=${{ matrix.target }} --release
|
|
|
|
|
|
2021-07-27 23:26:55 -05:00
|
|
|
|
features:
|
2021-11-10 01:49:16 -06:00
|
|
|
|
name: "Check cargo features (${{ matrix.simd }} × ${{ matrix.features }})"
|
2021-07-27 23:26:55 -05:00
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
2021-11-10 01:49:16 -06:00
|
|
|
|
simd:
|
2021-07-27 23:26:55 -05:00
|
|
|
|
- ""
|
2021-11-10 01:49:16 -06:00
|
|
|
|
- "avx512"
|
2021-07-27 23:26:55 -05:00
|
|
|
|
features:
|
|
|
|
|
- ""
|
2021-07-27 23:33:57 -05:00
|
|
|
|
- "--features std"
|
2021-09-08 19:01:16 -05:00
|
|
|
|
- "--features generic_const_exprs"
|
|
|
|
|
- "--features std --features generic_const_exprs"
|
2022-07-29 18:12:24 -05:00
|
|
|
|
- "--features all_lane_counts"
|
|
|
|
|
- "--features all_lane_counts --features std"
|
|
|
|
|
- "--features all_lane_counts --features generic_const_exprs"
|
|
|
|
|
- "--features all_lane_counts --features std --features generic_const_exprs"
|
2021-07-27 23:26:55 -05:00
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
- name: Setup Rust
|
|
|
|
|
run: |
|
|
|
|
|
rustup update nightly --no-self-update
|
|
|
|
|
rustup default nightly
|
2021-11-10 01:49:16 -06:00
|
|
|
|
- name: Detect AVX512
|
|
|
|
|
run: echo "CPU_FEATURE=$(lscpu | grep -o avx512[a-z]* | sed s/avx/+avx/ | tr '\n' ',' )" >> $GITHUB_ENV
|
2021-07-27 23:26:55 -05:00
|
|
|
|
- name: Check build
|
2021-11-10 01:49:16 -06:00
|
|
|
|
if: ${{ matrix.simd == '' }}
|
|
|
|
|
run: RUSTFLAGS="-Dwarnings" cargo check --all-targets --no-default-features ${{ matrix.features }}
|
|
|
|
|
- name: Check AVX
|
|
|
|
|
if: ${{ matrix.simd == 'avx512' && contains(env.CPU_FEATURE, 'avx512') }}
|
|
|
|
|
run: |
|
|
|
|
|
echo "Found AVX features: $CPU_FEATURE"
|
|
|
|
|
RUSTFLAGS="-Dwarnings -Ctarget-feature=$CPU_FEATURE" cargo check --all-targets --no-default-features ${{ matrix.features }}
|