Skip to content

ci: disable auto-trigger on non-training workflows#1

Merged
runwangdl merged 3 commits into
develfrom
disable-non-training-ci
May 2, 2026
Merged

ci: disable auto-trigger on non-training workflows#1
runwangdl merged 3 commits into
develfrom
disable-non-training-ci

Conversation

@runwangdl

Copy link
Copy Markdown
Owner

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-deeploy
  • ci-platform-chimera
  • ci-platform-cortexm
  • ci-platform-generic
  • ci-platform-mempool
  • ci-platform-siracusa-neureka-tiled
  • ci-platform-snitch
  • ci-platform-snitch-tiled
  • ci-platform-softhier
  • infra-generate-documentation

Kept 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)

  • All _runner-*.yml (workflow_call)
  • _select-env.yml
  • docker-build-* (already workflow_dispatch only)
  • infra-generate-ccache* (workflow_dispatch + cron, training-related, kept)
  • package-publish (v* tag only)

Test plan

  • Open PR and confirm only CI Lint + Siracusa/GAP9 platform checks register
  • Confirm disabled workflows still show up under Actions for manual dispatch

runwangdl added 3 commits May 2, 2026 11:44
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
@runwangdl runwangdl merged commit e4bfb22 into devel May 2, 2026
10 checks passed
@runwangdl runwangdl deleted the disable-non-training-ci branch May 2, 2026 13:04
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant