diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_test.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 67986ef63..7d9c63fd5 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -134,6 +134,36 @@ jobs: python-version: ${{ env.PYTHON_VERSION }} - uses: ./.github/actions + without_avx512: + needs: [smoke_test] + runs-on: ubuntu-latest + env: + CPU_DISPATCH: "max -xop -fma4 -avx512f -avx512cd -avx512_knl -avx512_knm -avx512_skx -avx512_clx -avx512_cnl -avx512_icl" + steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 + - uses: actions/setup-python@v3 + with: + python-version: ${{ env.PYTHON_VERSION }} + - uses: ./.github/actions + + without_avx512_avx2_fma3: + needs: [smoke_test] + runs-on: ubuntu-latest + env: + CPU_DISPATCH: "SSSE3 SSE41 POPCNT SSE42 AVX F16C" + steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 + - uses: actions/setup-python@v3 + with: + python-version: ${{ env.PYTHON_VERSION }} + - uses: ./.github/actions + debug: needs: [smoke_test] runs-on: ubuntu-20.04 |