AI inference glossary
Benchmark metricsISL / OSL

Input and output sequence length

Also known as prompt length, generation length, 8K/1K

In plain English

Input length is how much the model reads; output length is how much it writes. “8K/1K” means a long prompt followed by a shorter answer.

Technical definition

Input sequence length is the number of prompt tokens supplied to the model; output sequence length is the number of tokens generated in response.

Engineering details

The pair defines the workload shape. An 8K/1K test uses roughly 8,192 input tokens and generates 1,024 output tokens. Long inputs increase prefill work and KV-cache size, while long outputs spend more time in the autoregressive decode loop.

Why it matters

Results from different sequence lengths are not interchangeable. A configuration tuned for short chat prompts can rank differently on long-context summarization or reasoning because compute, memory capacity, and bandwidth pressure shift.

How to read it in InferenceX

InferenceX includes ISL and OSL in chart labels and recipe descriptions. Compare systems on the same workload shape before attributing a difference to hardware or software.