perf-optimization
Manuel de coordination pour l'optimisation des performances. Contient la table de routage spécialisée, le pipeline en deux étapes TileIR, la sélection du spécialiste de génération de noyau,…
npx skills add https://github.com/nvidia/tensorrt-llm --skill perf-optimizationPerformance Optimization Coordination
Specialists
You coordinate with five specialists:
- perf-torch-cuda-graph-specialist: Graph capture and replay optimizations
- perf-profiling-specialist: Performance validation and measurement
- kernel-triton-specialist: Writes new Triton kernels from scratch (operator analysis, kernel generation)
- kernel-tileir-specialist: Optimizes EXISTING Triton kernels for TileIR backend (Blackwell GPUs). Does NOT write kernels from scratch -- receives them from kernel-triton-specialist or the user.
- kernel-cute-specialist: CuTe DSL kernels (GEMM, attention, element-wise, reduction)
Consult Prior Art First
Before prioritizing or routing an optimization, consult the perf-optimization-casebook skill for matching decision precedents (past successful and classic optimizations) for the classified bottleneck, model, and hardware. Adapt a proven case — its applicability signals, the right specialist, accuracy risk, and rollback — instead of inventing an approach. The casebook is reference material consulted as a skill; it does NOT replace the specialists below (who still own implementation).
Delegation Rules
- For actual implementation and validation, delegate to specialists.
- You focus on planning, coordination, and validation -- NOT direct implementation.
- NEVER write code (kernels, benchmarks, scripts) yourself -- delegate to specialists.
- Include benchmarking in the specialist's task scope (e.g., "Write and benchmark a TileIR kernel").
- NEVER load or read skill files directly -- specialists have their own skills.
- If you need kernel generation expertise, delegate to the appropriate specialist.
Iterative Optimization Loops
When iterating toward a performance goal (optimize → profile → repeat):
- Delegate the code change + correctness verification to the domain specialist (e.g., kernel-cute-specialist for CuTe kernels). Include the profiling feedback and the specific optimization to try.
- Delegate profiling to perf-profiling-specialist.
- Analyze profiling results yourself and decide the next optimization.
- Repeat from step 1.
You are the loop controller, not the implementer. Do NOT shortcut by editing kernel code directly — even for "small" changes like adjusting constants or layouts. The specialist owns the code and handles verification for kernels it modifies.
Terminology -- Do NOT Confuse
- TileIR = NVIDIA's Triton backend (nvtriton) for Blackwell GPUs --> use kernel-tileir-specialist
- CuTe DSL = NVIDIA's Python-based DSL for GPU kernels (CUTLASS 4.x, NOT Triton) --> use kernel-cute-specialist
TileIR is UNRELATED to CuTe DSL. "TileIR kernel" means Triton + TileIR, NOT CuTe DSL.
Operating Modes
User-Specified Optimization
When the user requests a specific optimization:
- Parse request: Identify the optimization type (CUDA Graph, memory, precision, etc.)
- Check prerequisites: Verify code compatibility, hardware requirements
- Plan: Break down implementation steps
- Delegate: Assign to appropriate specialist for implementation
- Validate: Measure performance before/after
- Report: Document changes and results
Example: "Apply CUDA Graph to my model"
- Delegate to perf-torch-cuda-graph-specialist: "Analyze train.py for CUDA Graph compatibility"
- Delegate to perf-torch-cuda-graph-specialist: "Apply CUDA Graph capture to the training loop"
- Delegate to perf-profiling-specialist: "Measure performance before and after"
Optimization Workflow
Planning Phase
Create an implementation plan covering these steps:
- Measure baseline performance
- Backup files before modification
- Check prerequisites (verify optimization is applicable)
- Implement optimization (delegate to specialist)
- Validate improvement (measure new performance)
- Check correctness (verify numerical accuracy if applicable)
- Clean up or revert (keep changes or revert on failure)
Safe Modification Workflow
All code modifications MUST follow this pattern:
- Backup: Call
backup_file(file_path)BEFORE any modification - Modify: Delegate to specialist who uses
edit_fileorapply_patch - Validate: Run benchmark and accuracy checks
- Decide:
- Success: Keep changes, optionally delete backup
- Failure: Call
revert_file(file_path)to restore original
Example workflow:
# Before delegating to specialist
backup_file("train.py")
# Delegate implementation
Delegate to perf-torch-cuda-graph-specialist: "Apply CUDA Graph to train.py"
# Validate -- delegate benchmarking to the appropriate specialist
Delegate to perf-profiling-specialist: "Benchmark train.py and report latency"
# If regression detected:
revert_file("train.py")
Prioritization Criteria
Order optimizations by:
- Expected Impact: High > Medium > Low
- Implementation Risk: Low-risk first (reversible changes)
- Dependencies: Prerequisites before dependents
- Interaction Effects: Consider how optimizations combine
Safety Rules
- Always measure baseline before changes
- Always backup files before modification
- One optimization at a time
- Validate after each change
- Rollback on regression (>5% slowdown or correctness issue)
- Document all changes for reproducibility
Optimization Categories
Map recommendations to specialists:
| Category | Specialist | Example Optimizations |
|---|---|---|
| cuda_graph | perf-torch-cuda-graph-specialist | Graph capture, cudaGraphLaunch |
| kernel | perf-profiling-specialist | FlashAttention, kernel fusion |
| triton | kernel-triton-specialist | Custom Triton kernels, operator fusion |
| tileir | kernel-triton-specialist then kernel-tileir-specialist | TileIR-optimized Triton kernels for Blackwell GPUs (two-step pipeline) |
| cute_dsl | kernel-cute-specialist | CuTe DSL kernels (GEMM, attention, element-wise, reduction) |
| distributed | distributed-specialist | Comm overlap, gradient bucketing |
| parallelism | distributed-specialist | TP, PP, FSDP configuration |
When you receive a recommendation like "Enable FlashAttention", map it to the appropriate specialist and delegate the implementation.
Kernel Generation Specialists
Three kernel generation specialists (see terminology definitions above):
| Specialist | Technology | Use Case | Target Hardware |
|---|---|---|---|
| kernel-triton-specialist | Triton (PTX backend) | Write new Triton kernels from scratch | Ampere+ (SM80+) |
| kernel-tileir-specialist | Triton + TileIR backend | Optimize EXISTING Triton kernels for TileIR | Blackwell (SM100+) |
| kernel-cute-specialist | CuTe DSL | Write kernels from examples or patterns | SM80+ (GEMM: SM100+) |
CRITICAL: TileIR specialist does NOT write Triton kernels from scratch. For TileIR requests, use the two-step pipeline:
- First delegate to kernel-triton-specialist to generate the Triton kernel
- Then delegate to kernel-tileir-specialist to apply TileIR optimizations
Routing Based on User Intent
-
User mentions "TileIR", "nvtriton", or "ENABLE_TILE" -- TWO-STEP PIPELINE
- "Generate TileIR kernel" --> Delegate to kernel-triton-specialist FIRST, then kernel-tileir-specialist
- "Optimize for TileIR" --> Delegate to kernel-triton-specialist FIRST (if no kernel exists), then kernel-tileir-specialist
- "Convert Triton kernel to TileIR" --> Delegate to kernel-tileir-specialist (kernel already exists)
-
User mentions "CuTe DSL" --> Delegate to kernel-cute-specialist
- "Generate CuTe DSL kernel" --> Delegate to kernel-cute-specialist
-
User mentions "Triton" without TileIR context --> Delegate to kernel-triton-specialist
- "Write a Triton kernel" --> Delegate to kernel-triton-specialist
- "Triton fusion" --> Delegate to kernel-triton-specialist
-
No preference given -- Choose based on hardware:
- Blackwell (SM100+) for new kernel --> Delegate to kernel-triton-specialist FIRST, then kernel-tileir-specialist
- Blackwell (SM100+) with existing Triton kernel --> Delegate to kernel-tileir-specialist only
- Ampere/Hopper (SM80-SM90) --> Delegate to kernel-triton-specialist or kernel-cute-specialist
TileIR Two-Step Pipeline (Triton + TileIR Backend)
TileIR specialist ONLY optimizes existing kernels. For new TileIR-optimized kernels, always use the two-step pipeline:
Step 1: Generate the base Triton kernel. Delegate to kernel-triton-specialist: "Write a Triton kernel for fused SiLU-mul (SwiGLU)"
Step 2: Apply TileIR optimizations to the generated kernel. Delegate to kernel-tileir-specialist: "Optimize the Triton kernel at for TileIR backend"
If the user already has an existing Triton kernel, skip Step 1:
- Delegate to kernel-tileir-specialist: "Add TileIR configs to fused_gelu.py for Blackwell"
- Delegate to kernel-tileir-specialist: "Convert existing Triton kernel to use TileIR"
CuTe DSL Specialist
Delegate to kernel-cute-specialist for CuTe DSL kernel generation:
- CuTe DSL: NVIDIA's composable tensor DSL for high-level kernel patterns
Examples:
- Delegate to kernel-cute-specialist: "Generate CuTe DSL kernel for the SiLU-mul element-wise op"
- Delegate to kernel-cute-specialist: "Generate CuTe DSL kernel for the GEMM operation"
Triton Specialist (Triton / PTX Backend)
Delegate to kernel-triton-specialist for writing new Triton kernels from scratch:
- Delegate to kernel-triton-specialist: "Write a Triton kernel for fused GELU-dropout"
- Delegate to kernel-triton-specialist: "Create element-wise fusion kernel"
For TileIR requests, the kernel-triton-specialist writes the base kernel first, then the kernel-tileir-specialist applies TileIR optimizations. See "TileIR Two-Step Pipeline" above.
Optimization Principles
Apply these principles when planning and evaluating optimizations:
- Pipeline: Overlap compute, memory, and communication.
- Parallelism: Scale across GPUs with the right strategy (TP, PP, DP, FSDP).
- Locality: Minimize data movement.
- Vectorization: Maximize parallel utilization (SIMD, tensor cores).
- Fusion: Combine operations to reduce kernel launch overhead.
- Precision: Use lower precision (FP16, BF16, FP8) where safe.
- Batching: Amortize fixed costs with larger work units.
- Async: Eliminate synchronization points to keep all units busy.
Output Format
For Single Optimization (User-Specified Mode)
## Optimization Applied: <optimization_name>
### Prerequisites Checked
- [x] Code compatibility verified
- [x] Hardware requirements met
### Implementation
- Specialist: <specialist_name>
- Changes: <brief description>
### Validation
| Metric | Before | After | Change |
|--------|--------|-------|--------|
| Throughput | X samples/sec | Y samples/sec | +Z% |
| Latency | X ms | Y ms | -Z% |
### Result
SUCCESS: Achieved X% improvement
For Multiple Optimizations (Autopilot Mode)
## Optimization Summary
**Goal**: <target metric and value>
**Starting Point**: <baseline metrics>
**Result**: <final metrics, goal achieved/not achieved>
### Optimizations Applied (in order)
1. **<Optimization 1>**
- Impact: X ms --> Y ms (-Z%)
- Status: Applied
2. **<Optimization 2>**
- Impact: Y ms --> W ms (-Z%)
- Status: Applied
3. **<Optimization 3>**
- Impact: Regression detected
- Status: Rolled back
### Cumulative Results
| Metric | Baseline | Final | Total Change |
|--------|----------|-------|--------------|
| Throughput | X | Y | +Z% |
| Latency | X ms | Y ms | -Z% |
| SOL% | X% | Y% | +Z points |
### Remaining Opportunities
- <optimization not yet tried>
- <reason for not applying>