nvidia/warp-compile-time-optimizer
>- a request to improve, optimize, or cut compile times; an app that is slow to start or stalls at the first wp.launch; seconds of compiling before real work begins; JIT modules recompiling on every run or every CI job. Only applies when the code being optimized uses Warp kernels. Not for steady-state kernel runtime, memory, correctness, building Warp itself from source, or nvcc/C++ build times.
npx skills add https://github.com/NVIDIA/warp --skill warp-compile-time-optimizer
The probe runs the target in a subprocess, writes only to temporary
directories, and needs no network, external tool servers, or Warp checkout.
| Script | Purpose | Arguments |
| --- | --- | --- |
| scripts/warp_compile_probe.py | Measure isolated cold/warm compilation and launches. | measure [OPTIONS] -- COMMAND...; use --help. |
Use run_script("scripts/warp_compile_probe.py", args=[...]) when supported;
otherwise use the Python command below. The target must run to completion.
Warp compiles modules, not individual kernels. A module's identity is:
(live kernel & function set) x (module options) x (CUDA block_dim) x (generic instances)
Each identity requires code generation and native compilation for the full
module.
Cold-start cost is roughly:
number of distinct module identities you touch x size of each module
Reduce it in two ways:
every kernel three times.
Deleting one kernel from a module that still builds saves only part of one
build. Removing an unnecessary module identity saves the full build.
When neither applies, overlap independent CUDA builds (CS-13). This changes
when work happens, not how much is compiled, so judge it on elapsed time.
Options have two deadlines:
enable_backward,max_unroll, lineinfo, deterministic, deterministic_max_records, and
compile_time_trace from warp.config. Setting a global later is silently
ignored by that module. default_grid_stride is the exception.
wp.set_module_options() or wp.get_module(name).options. Changing an
option after load creates a new identity and rebuilds the module (CS-3).
| Missed deadline | Symptom | Cost |
| --- | --- | --- |
| wp.config.* set after import | hash unchanged, option silently absent | the entire benefit, invisibly |
| module options set after load | a second hash, module builds twice | one extra build, visible in the trace |
After changing an option, confirm the hash moved for every target module. An
unchanged hash means the option never arrived.
Change how Warp compiles the code, not the workload.
Do not delete or merge kernels to claim a gain. Apparently redundant stages
may preserve ownership, aliasing, retained outputs, numerical boundaries, or
API behavior. Fix duplication at the module level.
Preserve every launch and its order, dimensions, dtypes, devices, block
dimensions, gradients, numerical modes, dynamic/plugin behavior, and public
API signatures. Keep kernel names when moving definitions to module scope
because logs, cache artifacts, and external tools expose them.
Ask what command the user actually waits on, then measure it cold:
python scripts/warp_compile_probe.py measure --samples 3 \
--json baseline.json -- <the user's command>
The probe gives each sample private WARP_CACHE_PATH, WARP_CACHE_ROOT, and
CUDA_CACHE_PATH directories, enables module timers, and records launches.
Never clear a live cache with wp.clear_kernel_cache() or
wp.clear_lto_cache(); clearing is not isolated and can disrupt other
processes.
Read the probe output before source. If compilation is a small part of wall
time, report the real bottleneck and stop. For libraries and tests, use the
smallest command that compiles the workload's modules.
Modules that each compiled once, with no repeated hashes, block-dimension
variants, or LTO, have no structural churn. This rules out redundant builds,
not oversized builds; still check cache reuse (CS-2), backward codegen
(CS-10), unrolling (CS-11), the precompiled header (CS-12), and overlap when
several CUDA modules remain (CS-13).
Every sample also re-runs the command against the cache it just populated. If
warm module work is not near zero, diagnose cache reuse (CS-2) before changing
module structure.
Apply ordering fixes, lifecycle grouping, and option hoists without asking.
Ask before changing fast_math, max_unroll, or a MathDx/tile implementation:
> Some of these knobs cut compile time but can make the compiled kernels
> slower or change numerics. Are you optimizing a fast edit-run loop (where
> slower kernels are usually fine), or production startup (where they usually
> are not)?
If the user is unavailable:
used; report what is removed, the measured benefit, and how to revert.
wp.config.* options at application entry points, not in librarycode.
Record declined options and their measured benefits in the step 6 ledger.
A profile supports a change to the measured application, not every consumer of
a shared library. Repository searches also miss out-of-tree and future callers.
For example, a forward-only application does not justify disabling gradients
inside a solver library that another application differentiates through.
Scope the option to the measured process, before importing the library:
import warp as wp
wp.config.enable_backward = False # must precede the library import
import the_library
This also reaches every module the application loads. CS-10 covers the silent
import-order trap. If only a library change works, send its maintainers the
measurement and let them decide the contract.
The probe prints every compiled module identity with its name, hash, device,
and block dimension, then names which modules built more than once. Match what
you see:
| What the probe shows | What it means | Where to look |
| --- | --- | --- |
| One module name, several hashes | Identity churn: its kernel set, options, or generic instances changed after it first loaded | CS-1, CS-3, CS-6 |
| One module name, several block_dim values | The whole module is recompiled per block dimension (CUDA) | CS-5 |
| Many one-kernel modules in one feature | Fixed per-module cost repeated | CS-4 |
| A hash-named module per kernel | module="unique" used on stable kernels | CS-9 |
| Big gap between module time and native compile time, plus .lto artifacts | MathDx/LTO setup | CS-7 |
| (compiled) on a run that should have been warm | Cache is not being reused | CS-2 |
| Modules load, then "Failed to find module" | Concurrent CPU JIT first-use race | CS-8 |
| Large generated source, no rebuild problem | Unroll budget | CS-11 |
| Adjoint code in a module nothing differentiates | Backward codegen | CS-10 |
| Compiles slow across the board, or a few small modules on CUDA below toolkit 13 | The precompiled header is turned off, or is not paying for itself | CS-12 |
| Several independent modules, each built once, overlap_factor near 1.0 | Builds are running one at a time; parallel loading is off by default | CS-13 |
| An option you set changed nothing, and that module's hash is unchanged | It was assigned after the module was created, so it never arrived | "When a module's options are fixed" |
| No row above fires | Nothing is being built redundantly; the cost is the size of the builds themselves | Step 6 |
references/mechanisms.md has one section per mechanism: how to confirm it,
the fix, its limits, and its failure mode. Read only the sections selected by
the measurement.
Group kernels in one module only when they share:
fast_math, enable_backward, max_unroll,and MathDx settings;
Kernels with the same lifecycle but different stable block dimensions should
not share a module because each would compile twice. Separate kernels with
independent lifecycles too.
Kernels whose block dimension varies at runtime (chosen from input size, say)
have no stable mapping, so keep them in their own module rather than dragging
a whole shared module into an extra variant.
Prefer the least invasive change that removes a build. Ordering fixes and
option hoists are cheaper and safer than re-architecting module layout;
regroup only when fixed per-module cost or block-dimension duplication
dominates.
wp.set_module_options() targets its calling Python module, not kernels with
an explicit module="pkg.name". Either use a real Python module or update the
named module before it loads:
wp.set_module_options({"enable_backward": False}) # at module scope
wp.get_module("pkg.name").options.update({"enable_backward": False})
Do not pass wp.get_module() to wp.set_module_options(module=...), or use
@wp.kernel(module_options={...}) without module="unique". Per-kernel
enable_backward=False has a tile-module exception covered by CS-10. Confirm
the module hash after every option change.
python scripts/warp_compile_probe.py measure --samples 3 \
--json candidate.json -- <the same command>
python scripts/warp_compile_probe.py compare baseline.json candidate.json
compare rejects changed launch topology and treats a result inside
max(1% of baseline, 2 x baseline MAD) as inconclusive.
For BUILDS OVERLAPPED, judge scheduling changes on compile elapsed rather
than summed module timers. The required warm pass supplies that clock. See
references/measurement.md.
Then check what the probe cannot see:
enable_backward or boundaries, verify a gradient path.fast_math, max_unroll, MathDx, or an implementation,benchmark steady-state runtime.
Read "Reporting results" in references/measurement.md. Report:
Describe every optimization in plain language: name the behavior, the evidence,
and the effect. For example, write "moved module options before the first load
to avoid a redundant rebuild," not "applied CS-3." Treat CS-* labels as
internal navigation aids, not user-facing explanations.
| Option | Measured | Why not taken | To take it |
| --- | ---: | --- | --- |
| enable_backward=False on pkg.solver | −38% cold | a live tape traverses these kernels | set at the entry point, then re-check adjoints |
| max_unroll=4 | −2%, inside noise | changes generated code for no measured gain | — |
State only what the evidence supports. "No structural churn" does not mean
"optimal" or "irreducible." Measure declined levers when practical; label any
estimate untested. Before reporting no available fix, check CS-13. For a
possible module split, first measure a one-kernel module with the same options
to establish the repeated fixed cost.
Run the target command directly before debugging the probe. See
references/measurement.md for cache/noise issues and
references/mechanisms.md for mechanism-specific failures.
Two rules override any gain:
max_workers <= 1 when a load can target CPU, including device=Noneand mixed device lists. Concurrent CPU first loads can lose kernels; retries
do not make them safe. CUDA-only loading is unaffected.
Measurements are environment-specific: cold times move with CPU, GPU, driver,
toolchain, and Warp version. Mechanisms transfer; numbers do not. Read the
known unknowns in references/mechanisms.md before making broad claims.
references/mechanisms.md: the thirteen compile-time mechanisms, each withits confirming signal, fix, applicability limits, and failure mode. Read the
sections your measurement points to.
references/measurement.md: measurement protocol, what each metric doesand does not mean, reporting guidance, log examples, and manual measurement.
Take nvidia/warp-compile-time-optimizer from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.