npx skills add ...
npx skills add nvidia/compileiq --skill compileiq-booster-pack
Use BEFORE running a full CompileIQ search. Walks through downloading a Booster Pack from NVIDIA/CompileIQ GitHub Releases, applying ACF candidates one at a time to the user's compiler (raw PTXAS, NVCC, Triton, Helion, FlashInfer), and keeping only candidates that compile, pass correctness, and beat the no-ACF baseline. Includes the mandatory Debug-pack O0/O3 ACF-injection canary that proves the ACF is reaching PTXAS. Triggers on "booster pack", "ACF", "apply-controls", "speed up without searching", "helion fp8", "flashinfer batch decode", "debug pack".
npx skills add nvidia/compileiq --skill compileiq-booster-pack
Try curated .acf candidates before running a full CompileIQ search.
A Booster Pack is a zip of ACFs that NVIDIA validated against a specific
workload family. They are not guaranteed speedups; treat every candidate
as workload-specific and validate it on your own benchmark.
Authoritative narrative: docs/booster_packs.md, docs/flashinfer_booster.md.
| If this is true | Use this path |
|---|---|
| Workload is close to a Booster Pack's intended workload, compiler, GPU, and validation context. | Try the Booster Pack first. |
| Workload differs materially or no pack candidate helps. | Run a full CompileIQ search (compileiq-run-search). |
| Baseline, correctness check, compiler path, or benchmark setup are not in place. | Wait. Fix those before applying any ACF. |
| Pack | Workloads it was validated against | Notes |
|---|---|---|
booster-pack-helion.zip | Helion FP8 Quantization, Causal Depthwise Convolution, Gated DeltaNet Forward | Has shown benefit on FlashInfer BatchDecodeWithPagedKVCacheWrapper; related attention workloads worth testing. |
booster-pack-debug.zip | Diagnostic ACFs (O0, O3, others that disable or alter selected optimizations) | Not for speed; for debugging. Use the O0/O3 canary below before trusting any other pack. |
The public release shape is documented in docs/booster_packs.md. Read each
candidate's compiler_stages from its pack manifest and use every listed stage.
There is no runtime download API today. Don't invent one.
The most common silent failure when applying ACFs is a framework cache (Triton,
Helion, FlashInfer's flashinfer_cubin/flashinfer_jit_cache, NVCC build
cache) serving a stale binary that ignored the ACF. The Debug pack has two
ACFs with predictable, opposite-direction signatures:
ptxas_opt0.acf: forces unoptimized PTXAS compilation. Applied → expect a measurable
regression (often 2-10x slower) vs. baseline.ptxas_opt3.acf: forces the default PTXAS optimization level. Applied → expect to
match baseline (the no-ACF default is already -O3).If this fails, stop. Fix the cache-bust before trying any real pack candidate:
export TRITON_ALWAYS_COMPILE=1, unique TRITON_CACHE_DIR per eval.export HELION_SKIP_CACHE=1.flashinfer_cubin and flashinfer_jit_cache packages are absent (docs/flashinfer_booster.md:56-64).Browse https://github.com/NVIDIA/CompileIQ/releases, find the latest tag
matching booster-packs-*, and download the relevant pack zip plus the
top-level booster-pack-catalog.json.
Always read the per-pack manifest before applying: it lists the intended
workload, compiler version, GPU target, validation context, and known caveats.
For a reproducible rerun, set BOOSTER_TAG to the exact tag printed above.
| Target | Injection |
|---|---|
| Raw PTXAS | ptxas -v -arch=sm_100 --apply-controls candidate.acf kernel.ptx |
| NVCC (CUDA source) | nvcc -Xptxas --apply-controls=candidate.acf -arch=sm_100 kernel.cu -o exe |
| Triton | PTXAS_OPTIONS="--apply-controls=candidate.acf" TRITON_ALWAYS_COMPILE=1 python bench.py |
| Helion | Helion's official ACF API + HELION_SKIP_CACHE=1 (see helionlang.com/examples/acfs/softmax_acf.html). |
| FlashInfer | FLASHINFER_EXTRA_CUDAFLAGS="--ptxas-options=--apply-controls=$ACF_FILE" python bench.py (see docs/flashinfer_booster.md:107). |
Apply exactly one ACF per run. If it fails to compile, hangs, crashes, returns wrong answers, or regresses, reject that candidate and move to the next.
For every candidate you accept or reject, append a row to
booster-pack-log.csv with:
nvcc and ptxas paths + versionsKEPT or REJECTED:<reason>This is the same checklist docs/flashinfer_booster.md:135-148 recommends.
The scripts/apply_one_acf.sh helper does most of this automatically.
Dry-runs a "baseline vs baseline" comparison (no ACF applied to either side) and confirms the helper correctly reports "NOT a real improvement". Catches misconfigured script invocations before they pollute the reproducibility log.
docs/booster_packs.md:34); test before assuming.PtxasSearchSpace(...); packs are already-generated .acf
candidate bundles, not inputs to PtxasSearchSpace or NvccSearchSpace.compileiq-run-search for a
full CompileIQ search over PtxasSearchSpace().compileiq-search-space (variant="att").*BOOSTER_TAG="$(gh release list -R NVIDIA/CompileIQ --limit 100 --json tagName,isDraft \
--jq '.[] | select(.isDraft == false) | select(.tagName | startswith("booster-packs-")) | .tagName' \
| head -n 1)"
echo "Using $BOOSTER_TAG"
gh release download "$BOOSTER_TAG" -R NVIDIA/CompileIQ -p 'booster-pack-helion.zip' -p 'booster-pack-catalog.json' -D ./packs
unzip ./packs/booster-pack-helion.zip -d ./packs
cat ./packs/booster-pack-helion/booster-pack-manifest.jsonbash scripts/apply_one_acf.sh --self-test