This PR merges the `triton-mlir` branch, in which we have been quietly rewriting the Triton backend from scratch to increase maintainability, stability and ultimately performance. Changes to the runtime are minimal, and this new version aims to remain backward-compatible with the previous commit. The legacy backend is now officially deprecated, but can still be accessed via the `legacy-backend` tag. Co-authored-by: Keren Zhou <kerenzhou@openai.com> Co-authored-by: Yan Chunwei <yanchunwei@outlook.com> Co-authored-by: goostavz <109190422+goostavz@users.noreply.github.com> Co-authored-by: Shintaro Iwasaki <siwasaki@fb.com> Co-authored-by: Yan Da <dyanab@connect.ust.hk> Co-authored-by: Jun Yang <yangjunpro@gmail.com> Co-authored-by: Ian Bearman <ianb@microsoft.com> Co-authored-by: Jason Ansel <jansel@jansel.net> Co-authored-by: Qingyi Liu <qingyil@nvidia.com> Co-authored-by: ben-zhang-609 <110140741+ben-zhang-609@users.noreply.github.com> Co-authored-by: Chenggang Zhao <lyricz@yeah.net> Co-authored-by: ben-zhang-609 <benzh609@gmail.com> Co-authored-by: dongdongl <dongdongl@nvidia.com>
93 lines
2.9 KiB
YAML
93 lines
2.9 KiB
YAML
name: Integration Tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- triton-mlir
|
|
|
|
jobs:
|
|
Runner-Preparation:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
steps:
|
|
- name: Prepare runner matrix
|
|
id: set-matrix
|
|
run: |
|
|
if [ x"${{ github.repository }}" == x"openai/triton" ]; then
|
|
echo '::set-output name=matrix::[["self-hosted", "A10"], ["self-hosted", "V100"], "macos-10.15"]'
|
|
else
|
|
echo '::set-output name=matrix::["ubuntu-latest", "macos-10.15"]'
|
|
fi
|
|
|
|
Integration-Tests:
|
|
needs: Runner-Preparation
|
|
|
|
runs-on: ${{ matrix.runner }}
|
|
|
|
strategy:
|
|
matrix:
|
|
runner: ${{fromJson(needs.Runner-Preparation.outputs.matrix)}}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Clear cache
|
|
run: |
|
|
rm -rf ~/.triton/cache/
|
|
|
|
- name: Check imports
|
|
if: ${{ matrix.runner != 'macos-10.15' }}
|
|
run: |
|
|
pip install isort
|
|
isort -c ./python || ( echo '::error title=Imports not sorted::Please run \"isort ./python\"' ; exit 1 )
|
|
|
|
- name: Check python style
|
|
if: ${{ matrix.runner != 'macos-10.15' }}
|
|
run: |
|
|
pip install autopep8
|
|
autopep8 -a -r -d --exit-code ./python || ( echo '::error title=Style issues::Please run \"autopep8 -a -r -i ./python\"' ; exit 1 )
|
|
|
|
- name: Check cpp style
|
|
if: ${{ matrix.runner != 'macos-10.15' }}
|
|
run: |
|
|
pip install clang-format
|
|
find . -regex '.*\.\(cpp\|hpp\|h\|cc\)' -not -path "./python/build/*" -not -path "./include/triton/external/*" -print0 | xargs -0 -n1 clang-format -style=file --dry-run -Werror -i ||
|
|
(echo '::error title=Style issues:: Please run `find . -regex ".*\.\(cpp\|hpp\|h\|cc\)" -not -path "./python/build/*" -not -path "./include/triton/external/*" -print0 | xargs -0 -n1 clang-format -style=file -i`' ; exit 1)
|
|
|
|
- name: Flake8
|
|
if: ${{ matrix.runner != 'macos-10.15' }}
|
|
run: |
|
|
pip install flake8
|
|
flake8 --config ./python/setup.cfg ./python || ( echo '::error::Flake8 failed; see logs for errors.' ; exit 1 )
|
|
|
|
- name: Install Triton
|
|
run: |
|
|
cd python
|
|
TRITON_USE_ASSERT_ENABLED_LLVM=TRUE pip3 install -e '.[tests]'
|
|
|
|
- name: Run lit tests
|
|
run: |
|
|
cd python
|
|
LIT_TEST_DIR="build/$(ls build)/test"
|
|
if [ ! -d "$LIT_TEST_DIR" ]; then
|
|
echo "Not found `$LIT_TEST_DIR`. Did you change an installation method?" ; exit -1
|
|
fi
|
|
lit -v "$LIT_TEST_DIR"
|
|
|
|
- name: Run python tests
|
|
if: ${{matrix.runner[0] == 'self-hosted'}}
|
|
run: |
|
|
cd python/test/unit/
|
|
pytest
|
|
|
|
|
|
- name: Run CXX unittests
|
|
run: |
|
|
cd python/
|
|
cd "build/$(ls build)"
|
|
ctest
|