Skip to content

[KERNELS] update routing #1604

[KERNELS] update routing

[KERNELS] update routing #1604

Workflow file for this run

name: Integration Tests
on:
workflow_dispatch:
pull_request:
branches-ignore: ['llvm-**']
merge_group:
branches: [main, 'dev-**']
types: [checks_requested]
push:
branches: [main]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
permissions: read-all
env:
TRITON_BUILD_WITH_CCACHE: "true"
TRITON_BUILD_WITH_CLANG_LLD: "TRUE"
TRITON_USE_ASSERT_ENABLED_LLVM: "TRUE"
TRITON_DISABLE_LINE_INFO: 1
PROTON_SKIP_PC_SAMPLING_TEST: 1
PYTHON: "python3"
CCACHE_COMPRESS: "true"
jobs:
runner-preparation:
uses: ./.github/workflows/runner-preparation.yml
pre-commit:
uses: ./.github/workflows/pre-commit.yml
integration-tests-nvidia:
needs: runner-preparation
if: needs.runner-preparation.outputs.matrix-NVIDIA != ''
uses: ./.github/workflows/integration-tests-nvidia.yml
with:
matrix: ${{ needs.runner-preparation.outputs.matrix-NVIDIA }}
integration-tests-amd:
needs: runner-preparation
if: needs.runner-preparation.outputs.matrix-AMD != ''
uses: ./.github/workflows/integration-tests-amd.yml
with:
matrix: ${{ needs.runner-preparation.outputs.matrix-AMD }}
build-macos:
needs: runner-preparation
if: needs.runner-preparation.outputs.matrix-MACOS != ''
uses: ./.github/workflows/build-macos.yml
with:
matrix: ${{ needs.runner-preparation.outputs.matrix-MACOS }}