YAML Configuration Files
Overview
AIPerf can be driven entirely from a single YAML file instead of a long string of CLI flags. The YAML format is more readable, easier to version-control, and unlocks features that have no CLI equivalent — sweeps, multi-run aggregation, adaptive scale runs, environment variable substitution, and computed values.
This tutorial walks through what a config file looks like, how to grow it from a tiny example to a full sweep, and how it compares to running everything through aiperf profile flags.
You don’t need to choose between the two: CLI flags still work, and they layer on top of a YAML file when you pass both.
Why use a YAML config?
A typical concurrency sweep on the command line looks like this:
The same run as a YAML file:
Run it with:
Note the two 500s map to different things. The CLI’s --request-count 500 is the stop condition — keep firing until 500 requests complete — and corresponds to phases.profiling.requests: 500. The dataset.entries: 500 is the dataset size — how many unique synthetic prompts to generate up front — and has no CLI shorthand; it’s recycled across requests if the phase runs longer than the dataset. They happen to share a value here but tune independently.
What you gain over the flag form:
- It’s all in one place and you can comment it. No more lost shell history.
- Sweeps are first-class. Grid, lockstep zip, named scenarios, and quasi-random search all work out of the box.
- You can substitute values from environment variables (
${VAR:default}) and compute values with simple expressions ({{ var * 2 }}). - Editors validate as you type if you wire up the bundled JSON Schema.
- Errors are kinder. Misspelled keys produce a “did you mean…?” hint instead of being silently ignored.
Your first config — five lines that actually work
The smallest legal config is short:
Then:
That’s a complete benchmark — model, endpoint, dataset, and one profiling phase. The endpoint path (/v1/chat/completions) is auto-detected from endpoint.type (defaulting to chat).
You can scaffold this exact file from the bundle without typing it:
aiperf config init --list prints every bundled template, grouped by category.
Anatomy of a config
A YAML config has two layers:
The envelope holds settings that apply across runs — sweep definitions, multi-run aggregation, the random seed, and reusable variables.
The benchmark: body holds everything that defines a single benchmark workload. When a sweep is active, this body is what gets varied across runs.
Shorthand vs named forms
Short configs use singular keys. Bigger configs use plural lists with names:
What the loader normalizes
You can mix shorthand and named forms in the same config. The loader normalizes them before execution:
The normalized datasets: form is future-facing but currently accepts exactly one dataset. Multiple datasets are a roadmap item.
Phase names and kinds
A phase name is the unique workflow identifier. A phase kind is the semantic role AIPerf uses for behavior and reporting: warmup or profiling.
For canonical names, kind is optional. A phase named warmup defaults to kind: warmup, and a phase named profiling defaults to kind: profiling. For custom names, set kind explicitly so AIPerf knows the semantic role.
Named phases are useful for long soaks with multiple profiling windows. See Multi-Phase Workflows for a full example, multiple warmup phases, artifacts, sweeps, and seamless transitions.
Phase names must be strict identifiers (^[A-Za-z_][A-Za-z0-9_-]*$) and are unique case-insensitively because they are used in sweep paths and artifact directories.
Inline datasets
Instead of pointing at a prompts.jsonl file with dataset.path:, you can embed records directly in the YAML:
Useful for shareable repros, k8s ConfigMaps, and small regression fixtures. See Inline Datasets for full coverage including multi-turn, random_pool (with multi-pool dict-of-lists), and mooncake_trace examples.
Both naming styles work
AIPerf accepts either snake_case or camelCase for any field. These two are equivalent:
Pick one and stick with it within a file.
Editor autocomplete and validation
A bundled JSON Schema gives you autocomplete, type-checking, and inline docs in any editor that speaks YAML language server (VS Code, JetBrains, Vim/Neovim with coc-yaml, Helix, etc.). The schema lives at src/aiperf/config/schema/aiperf-config.schema.json in the AIPerf repo. Copy or symlink it next to your config and point your editor at it with a relative path:
Now the editor will:
- Suggest valid keys as you type.
- Underline misspelled fields in red.
- Show field descriptions on hover.
- Catch type errors (e.g. setting
concurrency: "eight"instead of8).
If your editor already has a workspace mapping for **/aiperf-config.yaml or **/benchmark.yaml, you can skip the header. See src/aiperf/config/schema/README.md for VS Code workspace and IntelliJ configuration examples.
Helpful errors when you typo
Top-level envelope keys reject unknown names with a “did you mean” hint. Writing sweeps: instead of sweep: produces:
Inside the benchmark: body and inside sweep parameter paths, every section is set to reject unknown fields outright. A typo’d sweep parameter like phases.profiling.concurency (one r) is caught at validate time — aiperf config validate runs the same sweep-expansion pipeline profile does and surfaces the error before any compute is spent:
Use aiperf config validate <file> for routine linting. Use aiperf config expand <file> when you want to preview the actual variations a sweep will produce (see below). Both catch sweep-path typos; expand additionally renders the variation list.
Substituting environment variables
Use ${VAR} for required values and ${VAR:default} for optional ones:
Run it across deployments without editing the file:
Strings are auto-coerced to the right type — TIMEOUT=600.0 becomes a float, STREAMING=true becomes a bool.
If a required ${VAR} is unset, you get a clean error naming the variable, not a silent fallback.
Reusable values and computed expressions
Define values once at the top, reference them anywhere with {{ }} Jinja expressions:
A few things worth knowing:
- Variables can reference other variables, in any order. AIPerf resolves the dependency graph for you.
- Typos like
{{ base_concurrancy }}raise an error immediately — they don’t silently render as an empty string. - Numeric strings like
"42"and"3.14"are coerced toint/floatautomatically, so you don’t have to remember which fields expect numbers. - Env vars run before Jinja, so you can do
entries: "{{ base * '${MULT:10}' | int }}".
Multiple phases in one file
A typical benchmark is a quick warmup followed by the real measurement. CLI warmup flags are limited to scalar values per phase shape (--warmup-request-count, --warmup-duration, --warmup-concurrency, --warmup-request-rate, --warmup-arrival-pattern, and a handful of ramp/grace-period siblings). YAML lets you describe warmup as a full phase with all the same fields available to profiling:
Each phase is a complete arrival pattern in its own right, with its own concurrency, duration, and arrival shape (concurrency, constant, poisson, gamma, fixed_schedule, user_centric, …).
Adaptive scale in YAML
Adaptive scale is a YAML-only phase feature for single-run boundary discovery. Instead of launching a sweep or separate search trials, AIPerf runs a profiling phase, evaluates SLA windows, ramps up while every SLA filter passes, and then sustains near the discovered boundary.
Configure adaptive scale in the target phase’s adaptive_scale block and put SLA filters on the phase-level sla block. Supported control variables include concurrency, prefill_concurrency, request_rate, and users.
See Adaptive Scale for full examples, required fields, SLA metric support, artifact paths, and controller semantics.
Sweeps in YAML
Sweeps are the killer feature of YAML configs. The CLI only ever supported list-style flags like --concurrency 8,16,32. YAML lets you sweep any field, combine multiple parameters, or pull from a quasi-random distribution.
Here’s a 3 × 3 = 9-run grid sweep over input length and request rate:
The parameters: keys are dot-paths into the benchmark: body. For phase lists, the second segment resolves in this order: numeric index, exact unique phase name, then legacy phases.profiling.* shorthand for the unique profiling-kind phase when no phase is named profiling:
phases.cancellation_stress.cancellation.rate→ the phase namedcancellation_stress, fieldcancellation.ratephases.1.concurrency→ the second phase, fieldconcurrencyphases.profiling.rate→ the phase namedprofiling, or the unique profiling-kind phase when unambiguousdatasets.default.prompts.isl→ the dataset nameddefault(the singulardataset:shorthand auto-names itdefault)
The 12 most-swept phase fields also have bare-name sugar: concurrency, prefill_concurrency, rate, requests, duration, sessions, users, smoothness, grace_period, concurrency_ramp, prefill_ramp, rate_ramp. Each expands to phases.profiling.<name> and must still resolve unambiguously. The two forms are equivalent — see Bare-Name Aliases.
Other sweep modes available in YAML:
zip— pair parameters lockstep instead of cross-product (useful for paired ISL/OSL).scenarios— hand-curated named workload profiles, each a deep-merge over the base body.sobol/latin_hypercube— quasi-random space-filling samples.adaptive_search— Bayesian optimization over multiple objectives.
For a guided picker, see Parameter Sweeps — Choosing a sweep mode.
You can preview what a sweep will run before spending any compute:
Repeating a benchmark for confidence intervals
Running the same benchmark several times and taking the mean ± confidence interval is a separate envelope-level setting:
multi_run and sweep compose: a 9-variation grid × 3 runs = 27 benchmarks, with confidence intervals computed per variation. See Multi-Run Confidence Reporting for what the report looks like.
CLI helpers for working with configs
Three commands cover the common authoring tasks:
validate runs the same load pipeline profile does, so anything wrong shows up here — typos, missing required fields, sweep paths that don’t resolve, env vars that aren’t set.
Mixing YAML with CLI flags
YAML configs and CLI flags are not either/or. Flags overlay whatever’s in the file:
This loads benchmark.yaml as the base, then overrides the unique profiling phase’s concurrency with 32 and the artifact directory with the new path. CLI loadgen flags target kind: profiling and work only when that target is unambiguous. If a config has multiple profiling phases, set per-phase values in YAML. Useful when most of your config is stable but you want to tweak one knob from a script or CI job.
The precedence order, lowest to highest:
- Defaults baked into AIPerf
- Values in the YAML file
- Explicit CLI flags
Where to go next
- Bundled templates — 27+ ready-to-run examples grouped by category (
Getting Started,Load Testing,Datasets,Sweep & Multi-Run,Advanced,Multimodal,Specialized Endpoints). - Parameter Sweeps — Choosing a sweep mode — picker for grid vs. zip vs. scenarios vs. Sobol vs. adaptive search.
- Parameter Sweeps — deeper dive on sweep mechanics, output structure, and Pareto analysis.
- Multi-Run Confidence Reporting — how
multi_runpropagates through reports. - CLI Options — every CLI flag, in case you want to overlay one onto a YAML config.