Convert Loop Metadata to Asserts to help Loop rotation #1122
This file contains 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: AIEngine LLVM Tests | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'aie-public' | |
pull_request: | |
branches: | |
- 'aie-public' | |
concurrency: | |
# A PR number if a pull request and otherwise the commit hash. This cancels | |
# queued and in-progress runs for the same PR (presubmit) or commit | |
# (postsubmit). | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
check_all: | |
if: github.repository_owner == 'Xilinx' | |
name: Test AIE llvm,clang,lld | |
uses: ./.github/workflows/llvm-project-tests.yml | |
with: | |
build_target: check-llvm-aie check-clang-aie check-lld-aie | |
projects: clang;lld | |
cache-key: amd-aie | |
extra_cmake_args: '-DLLVM_USE_LINKER=gold -C clang/cmake/caches/Peano-AIE.cmake' | |
os_list: '["ubuntu-latest"]' |