Zenaique
Topics
Practice
Browse
Reference
Challenges
Pricing
Search…
⌘K
Topics
/
Inference Optimization
/
Arithmetic Intensity
Arithmetic Intensity
Subtopic
25 questions
Questions tagged with Arithmetic Intensity — part of Inference Optimization.
Format
Difficulty
Role
Experience
Companies
Sort
Newest
Quality
Difficulty ↑
Difficulty ↓
Questions
The roofline model in plain language, without the chart, what is it saying?
Flashcard
Easy
·
Qual 4.0
Walk through what actually happens during the prefill phase of an LLM forward pass.
Flashcard
Easy
·
Qual 4.0
What unit measures GPU memory bandwidth and why does that number cap decode speed?
Flashcard
Easy
·
Qual 4.0
Why do hosted LLM APIs charge separate per-million rates for input and output tokens?
Flashcard
Easy
·
Qual 4.0
FLOPs vs FLOP/s: fill in the counts versus rate distinction.
Fill in Blank
Easy
·
Qual 4.0
What does arithmetic intensity actually measure and what does AI near 1 imply?
Flashcard
Easy
·
Qual 4.0
Apply the roofline model to LLM inference and identify where decode and prefill sit on it.
Short Answer
Hard
·
Qual 4.0
NVIDIA
On the roofline, which intervention moves an LLM decode workload most directly toward higher peak throughput?
Multiple Choice
Hard
·
Qual 4.0
NVIDIA
Why does prefill saturate compute while decode is bottlenecked on memory bandwidth?
Short Answer
Medium
·
Qual 4.0
NVIDIA
Which statement best explains why prefill and decode hit different bottlenecks on the same GPU?
Multiple Choice
Medium
·
Qual 4.0
NVIDIA
Why does prefill's O(seq^2) attention cost saturate compute rather than bandwidth?
Short Answer
Hard
·
Qual 4.0
NVIDIA
Why is HBM bandwidth the binding constraint for LLM decode and how do you reason about the 'memory wall'?
Short Answer
Hard
·
Qual 4.0
NVIDIA
Why are output tokens typically 3-5× more expensive than input tokens?
Short Answer
Medium
·
Qual 4.0
Anthropic
OpenAI
Spot the errors in this 'optimize decode by reducing FLOPs' proposal
Spot the Error
Hard
·
Qual 4.0
NVIDIA
Why is 'reduce FLOPs to speed up decode' the most common beginner misconception in LLM serving?
Short Answer
Medium
·
Qual 4.0
NVIDIA
Walk through the byte accounting that proves a single-batch decode step is bandwidth-bound on H100.
Short Answer
Hard
·
Qual 4.0
NVIDIA
Predict the bandwidth-vs-compute latency of a single Llama-70B decode step on H100
Predict Output
Hard
·
Qual 4.0
NVIDIA
Predict the critical batch size where decode crosses from memory-bound to compute-bound on H100
Predict Output
Hard
·
Qual 4.0
NVIDIA
Why is batching the single biggest throughput lever for LLM decode?
Short Answer
Medium
·
Qual 4.0
What is the primary reason batching is so much more effective for LLM decode than for CNN inference?
Multiple Choice
Medium
·
Qual 4.0
As batch size grows, where does throughput stop increasing and per-request latency start exploding?
Short Answer
Hard
·
Qual 4.0
NVIDIA
Spot the errors in this 'batching is universal' claim
Spot the Error
Medium
·
Qual 4.0
Why does batching help LLM decode disproportionately more than batching helps CNN inference?
Short Answer
Medium
·
Qual 4.0
NVIDIA
What is the arithmetic intensity of an LLM decode step and why is it close to 1?
Short Answer
Hard
·
Qual 4.0
NVIDIA
Predict the arithmetic intensity of decode at varying batch sizes
Predict Output
Hard
·
Qual 4.0
NVIDIA