[NE16] Add GAP9_w_NE16 platform: NE16 accelerator Engine on GAP9 #575
Workflow file for this run
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
| # SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| --- | |
| name: CI • Siracusa + Neureka (Tiled) | |
| "on": | |
| push: | |
| branches: | |
| - "**" | |
| tags: | |
| - "v*.*.*" | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| docker_image_deeploy: | |
| description: "Deeploy Image to use" | |
| required: false | |
| default: "ghcr.io/pulp-platform/deeploy:devel" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| select-env: | |
| uses: ./.github/workflows/_select-env.yml | |
| with: | |
| docker_image_deeploy: ${{ inputs.docker_image_deeploy }} | |
| siracusa-neureka-kernels-tiled-singlebuffer-L2: | |
| needs: select-env | |
| uses: ./.github/workflows/_runner-siracusa-neureka-tiled.yml | |
| with: | |
| runner: ${{ needs.select-env.outputs.runner }} | |
| docker-image: ${{ needs.select-env.outputs.image }} | |
| pytest-marker: "kernels and singlebuffer and l2 and not wmem" | |
| siracusa-neureka-kernels-tiled-doublebuffer-L2: | |
| needs: select-env | |
| uses: ./.github/workflows/_runner-siracusa-neureka-tiled.yml | |
| with: | |
| runner: ${{ needs.select-env.outputs.runner }} | |
| docker-image: ${{ needs.select-env.outputs.image }} | |
| pytest-marker: "kernels and doublebuffer and l2 and not wmem" | |
| siracusa-neureka-models-tiled-singlebuffer-L3: | |
| needs: select-env | |
| uses: ./.github/workflows/_runner-siracusa-neureka-tiled.yml | |
| with: | |
| runner: ${{ needs.select-env.outputs.runner }} | |
| docker-image: ${{ needs.select-env.outputs.image }} | |
| pytest-marker: "models and singlebuffer and l3 and not wmem" | |
| siracusa-neureka-models-tiled-doublebuffer-L3: | |
| needs: select-env | |
| uses: ./.github/workflows/_runner-siracusa-neureka-tiled.yml | |
| with: | |
| runner: ${{ needs.select-env.outputs.runner }} | |
| docker-image: ${{ needs.select-env.outputs.image }} | |
| pytest-marker: "models and doublebuffer and l3 and not wmem" | |
| siracusa-neureka-kernels-tiled-singlebuffer-L2-wmem: | |
| needs: select-env | |
| uses: ./.github/workflows/_runner-siracusa-neureka-tiled.yml | |
| with: | |
| runner: ${{ needs.select-env.outputs.runner }} | |
| docker-image: ${{ needs.select-env.outputs.image }} | |
| pytest-marker: "kernels and singlebuffer and l2 and wmem" | |
| siracusa-neureka-models-tiled-doublebuffer-L3-wmem: | |
| needs: select-env | |
| uses: ./.github/workflows/_runner-siracusa-neureka-tiled.yml | |
| with: | |
| runner: ${{ needs.select-env.outputs.runner }} | |
| docker-image: ${{ needs.select-env.outputs.image }} | |
| pytest-marker: "models and doublebuffer and l3 and wmem" |