[AIE] Implement top-down delay slot fixup for regions with top-fixed … #1150
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: MLIR Tests | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| # Only builds on push populate the ccache that can be used by PRs | |
| push: | |
| branches: [ main, feature/fused-ops, aie-public ] | |
| concurrency: | |
| # Skip intermediate builds: always. | |
| # Cancel intermediate builds: only if it is a pull request build. | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| check_mlir: | |
| name: Test mlir | |
| uses: ./.github/workflows/llvm-project-tests.yml | |
| with: | |
| build_target: check-mlir | |
| projects: mlir | |
| cache-key: amd-mlir | |
| extra_cmake_args: -DMLIR_ENABLE_BINDINGS_PYTHON=ON | |
| os_list: '["ubuntu-22.04"]' |