Move from split_avx / split_avx512 to lower_half/ upper_half #2175
This file contains hidden or 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: style check | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.job }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| formatting-check: | |
| name: Format check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run clang-format style check for C/C++ programs. | |
| uses: jidicula/clang-format-action@v4.11.0 | |
| with: | |
| clang-format-version: '17' | |
| exclude-regex: 'doctest.h' | |
| inlining-check: | |
| runs-on: ubuntu-latest | |
| name: Check inline keyword usage | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - run: sudo apt install clang-tools | |
| - run: sh ./test/check_inline_specifier.sh . | |