Skip to content

Improve Profiling

Improve Profiling #279

# SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
#
# SPDX-License-Identifier: Apache-2.0
---
name: CI • Cortex-M
"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 }}
cortexm-kernels:
needs: select-env
uses: ./.github/workflows/_runner-cortexm.yml
with:
runner: ${{ needs.select-env.outputs.runner }}
docker-image: ${{ needs.select-env.outputs.image }}
test-names: |
Kernels/Integer/Add/Regular
Kernels/Integer/Add/MultIO
Kernels/Integer/Pad/Regular_1D
Kernels/Integer/Pad/Regular_2D
Kernels/Integer/MatMul/Regular
Kernels/Integer/MatMul/Add
Kernels/Integer/MaxPool
Kernels/Integer/Conv/Regular_2D_RQ
Kernels/Integer/ReduceSum
Kernels/Integer/ReduceMean
Kernels/Integer/Slice
cortexm-models:
needs: select-env
uses: ./.github/workflows/_runner-cortexm.yml
with:
runner: ${{ needs.select-env.outputs.runner }}
docker-image: ${{ needs.select-env.outputs.image }}
test-names: |
Models/CNN_Linear2
Models/WaveFormer