Given target latency and throughput, assign a time budget to every pipeline stage and flag which stage will miss its budget first. Use when you need help with skill pipeline budget planner.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add anubhavg-icpl/vibe --skill skill-pipeline-budget-planner --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Skill Pipeline Budget Planner?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/anubhavg-icpl-skill-pipeline-budget-planner)More formats (shields.io, HTML) on the badges page.
---
name: skill-pipeline-budget-planner
description: Given target latency and throughput, assign a time budget to every pipeline stage and flag which stage will miss its budget first. Use when you need help with skill pipeline budget planner.
license: CC-BY-NC-SA-4.0
phase: 4
lesson: 16
metadata:
version: 1.0.0
tags: [vision, pipeline, performance, deployment]
---
# Pipeline Budget Planner
Turn a latency/throughput target into a stage-by-stage budget so every team member knows what number they are engineering toward.
## When to use
- Before building a new vision service, to set expectations for each stage.
- After a first benchmark, to see which stage is farthest from its budget.
- When an SLA changes and budgets need to be renegotiated.
## Inputs
- `p95_latency_target_ms`: per-request budget.
- `target_qps`: throughput per replica.
- `stages`: list of `{ name: str, current_ms: float }`.
## Allocation rules
Default allocation across the seven standard stages if no current measurements provided:
| Stage | Share |
|-------|-------|
| decode + preprocess | 15% |
| detector forward | 55% |
| postprocess detections (NMS, clamp) | 5% |
| crop + resize for classifier | 5% |
| classifier forward | 15% |
| schema validation | <1% |
| response serialisation | 4% |
On GPU-bound pipelines (cloud), the detector share often rises to 70%. On CPU, preprocessing and classifier batching eat more.
## Report
```
[budget plan]
p95 target: <ms>
throughput: <qps per replica>
| stage | target_ms | current_ms | headroom | gate |
|---------------------|-----------|------------|----------|------|
| decode+preprocess | ... | ... | ... | ok|X |
| detector | ... | ... | ... | ok|X |
| ... | ... | ... | ... | |
[bottleneck]
stage: <name>
miss: <ms over budget>
lever: <specific action>
[levers]
decode+preprocess: Pillow-SIMD, libjpeg-turbo, decode on GPU via NVJPEG
detector: smaller backbone, lower input resolution, INT8, TensorRT
postprocess: GPU-side NMS (torchvision.ops), fused masks
crop+resize: GPU crop with grid_sample, batched interpolate
classifier: smaller backbone, INT8, warm cache, batch
schema: skip validation in hot path, validate at boundaries only
response: orjson, stream protobuf
```
## Rules
- Never recommend dropping schema validation from the production path; propose moving it to the boundary instead.
- If preprocessing misses its budget, always try Pillow-SIMD or NVJPEG before changing the model.
- If the detector miss is more than 30% of target, switch models instead of optimising the current one.
- Flag the gate as `X` when current_ms > 1.1 * target_ms; mark `ok` if within 10% of budget.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!