ci: disable auto-trigger on non-training workflows#1
Merged
Conversation
Drop push: and pull_request: triggers from CI workflows that aren't
related to the training platform (Siracusa / GAP9). They remain
manually invokable via workflow_dispatch and are easy to re-enable
by restoring the push: / pull_request: blocks.
Disabled (manual-only):
- ci-deeploy
- ci-platform-{chimera,cortexm,generic,mempool}
- ci-platform-siracusa-neureka-tiled
- ci-platform-{snitch,snitch-tiled,softhier}
- infra-generate-documentation
Kept auto-triggered:
- ci-lint
- ci-platform-{siracusa,siracusa-tiled,gap9,gap9-tiled}
Replace upstream ghcr.io/pulp-platform/deeploy-gap9:devel with the fork-owned ghcr.io/runwangdl/deeploy:gap9 image in: - ci-platform-gap9.yml (default + select-env fallback) - ci-platform-gap9-tiled.yml (default + select-env fallback) - infra-generate-ccache-gap9.yml (default + container image) - scripts/gap9-run.sh (GAP9_IMAGE default)
- ci-platform-siracusa: drop siracusa-kernels and siracusa-models;
keep siracusa-training only
- ci-platform-siracusa-tiled: drop kernels-tiled-{singlebuffer,
doublebuffer}-L2, models-tiled-{L2-{singlebuffer,doublebuffer},
L3-{singlebuffer,doublebuffer}}; keep training-tiled-L2-singlebuffer
- ci-platform-gap9 / ci-platform-gap9-tiled: disable auto-trigger
(workflow_dispatch only); GAP9 has no training pytest marker yet
3 tasks
runwangdl
added a commit
that referenced
this pull request
May 2, 2026
Bring in the FP32 AveragePool kernel family from upstream's TrainingPlatform
branch. Forward pass goes into the regular kernel test list; backward
(AveragePoolGrad) is registered in PULPMapping but its training-kernel
fixture is left for a follow-up PR (TP doesn't ship one).
Files:
- TargetLibraries/PULPOpen/{src/AvgPool.c, inc/kernel/AvgPool.h}
PULP_AvgPool2d_fp32_HWC/CHW + PULP_AvgPoolGrad2d_fp32_HWC kernels
- Deeploy/Targets/PULPOpen/Templates/FloatAveragePoolTemplate.py
referenceTemplate (HWC fwd) + referenceCHWTemplate + referenceGradTemplate
- Deeploy/Targets/PULPOpen/TileConstraints/AveragePoolTileConstraint.py
AveragePoolCTileConstraint + AveragePoolHWTileConstraint
- Generic side: AveragePool2DParser (extends MaxPool2DParser),
AveragePoolChecker, AveragePoolLayer + AveragePoolGradLayer
- PULPOpen Bindings/Tiler/Platform: PULPAveragePool2D{,Grad}Bindings,
TilingReadyBindings, AveragePool2D{,Grad}Mapper, MAPPING entries
- DeeployTest/Tests/Kernels/FP32/AveragePool/ fixture (forward only)
- test_siracusa_config.py: add Kernels/FP32/AveragePool to KERNEL_TESTS
CMakeLists.txt unchanged: src/** is glob-recursed.
Note: the AveragePool kernel test won't auto-run on PRs in this fork
(non-training kernel tests are dispatch-only, see PR #1). Trigger via
Actions -> CI Siracusa -> Run workflow if needed.
runwangdl
added a commit
that referenced
this pull request
May 2, 2026
Bring in the FP32 AveragePool kernel family from upstream's TrainingPlatform
branch. Forward pass goes into the regular kernel test list; backward
(AveragePoolGrad) is registered in PULPMapping but its training-kernel
fixture is left for a follow-up PR (TP doesn't ship one).
Files:
- TargetLibraries/PULPOpen/{src/AvgPool.c, inc/kernel/AvgPool.h}
PULP_AvgPool2d_fp32_HWC/CHW + PULP_AvgPoolGrad2d_fp32_HWC kernels
- Deeploy/Targets/PULPOpen/Templates/FloatAveragePoolTemplate.py
referenceTemplate (HWC fwd) + referenceCHWTemplate + referenceGradTemplate
- Deeploy/Targets/PULPOpen/TileConstraints/AveragePoolTileConstraint.py
AveragePoolCTileConstraint + AveragePoolHWTileConstraint
- Generic side: AveragePool2DParser (extends MaxPool2DParser),
AveragePoolChecker, AveragePoolLayer + AveragePoolGradLayer
- PULPOpen Bindings/Tiler/Platform: PULPAveragePool2D{,Grad}Bindings,
TilingReadyBindings, AveragePool2D{,Grad}Mapper, MAPPING entries
- DeeployTest/Tests/Kernels/FP32/AveragePool/ fixture (forward only)
- test_siracusa_config.py: add Kernels/FP32/AveragePool to KERNEL_TESTS
CMakeLists.txt unchanged: src/** is glob-recursed.
Note: the AveragePool kernel test won't auto-run on PRs in this fork
(non-training kernel tests are dispatch-only, see PR #1). Trigger via
Actions -> CI Siracusa -> Run workflow if needed.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Disable
push:/pull_request:triggers on CI workflows that are not part of the training platform, so PRs in this fork only run training-relevant checks. All disabled workflows remain available via Run workflow (workflow_dispatch) and a 2-line comment explains how to re-enable them.Disabled (manual-only now)
ci-deeployci-platform-chimeraci-platform-cortexmci-platform-genericci-platform-mempoolci-platform-siracusa-neureka-tiledci-platform-snitchci-platform-snitch-tiledci-platform-softhierinfra-generate-documentationKept auto-triggered
ci-lint(linting)ci-platform-siracusa/ci-platform-siracusa-tiled(training target)ci-platform-gap9/ci-platform-gap9-tiled(training target)Untouched (already manual / workflow_call / tag-only)
_runner-*.yml(workflow_call)_select-env.ymldocker-build-*(already workflow_dispatch only)infra-generate-ccache*(workflow_dispatch + cron, training-related, kept)package-publish(v* tag only)Test plan