179 questions
No questions match those filters.
Compute throughput scales 10,000x from K20 to H100 but HBM bandwidth scales only ~100x. What does this imply for algorithm design going forward?
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansBecause compute throughput has scaled much faster than memory bandwidth, the arithmetic intensity threshold for being compute-bound has risen significantly. Operations that were previously memory-bound on older hardware are even more constrained on modern GPUs like the H100. To address this, engineers must prioritize kernel fusion to eliminate redundant HBM round-trips, utilize quantization (e.g., INT8, FP8) to reduce the volume of data moved, and favor block-structured operations like attention over sequential architectures that lack fusion opportunities.