DAWNBench
DAWNBench measured deep-learning training and inference by time and dollar cost to reach a target accuracy. It pioneered time-to-accuracy metrics later adopted by MLPerf.
DAWNBench was an end-to-end deep-learning benchmark created by Stanford's DAWN project. It introduced the idea of measuring time and cost to reach a target accuracy rather than raw operations per second, an approach that directly influenced MLPerf. Although the public competition concluded, DAWNBench remains historically important and its metrics endure across the industry.
The benchmark focused on two canonical tasks: image classification on ImageNet (training a model to 93% top-5 accuracy) and CIFAR-10 (training to 94% accuracy), plus inference latency and cost for serving those models. By fixing the accuracy target, it rewarded full-stack optimization across model, optimizer, hardware, and cloud configuration.
What It Measures
DAWNBench reported four metrics: training time to the target accuracy, training cost in dollars on public cloud, inference latency to classify a single image, and inference cost per image. Pairing performance with dollar cost was its key innovation, making the benchmark relevant to teams choosing cloud instances rather than just hardware vendors.
Methodology
Entrants submitted reproducible code and logs showing the wall-clock time and instance type used to reach the accuracy threshold. Cost was computed from the cloud provider's published instance pricing multiplied by run time. Submissions ranged from single GPUs to large distributed clusters and TPU pods. The leaderboard ranked entries separately for training time, training cost, inference latency, and inference cost.
How to Interpret Results
Read DAWNBench results as a trade-off space: the fastest training run was often the most expensive, while the cheapest run took longer on commodity hardware. The benchmark famously surfaced techniques such as progressive resizing, super-convergence learning-rate schedules, and mixed-precision training that became standard practice. Use the cost metric to understand price-performance, not just peak speed.
Limitations
DAWNBench's two vision tasks were narrow and are now dated relative to transformer and LLM workloads. Cloud pricing changes constantly, so historical cost figures are no longer accurate. Because the competition is closed, results are a snapshot rather than a living comparison. Its main legacy is conceptual — the time-to-accuracy and cost-aware methodology now embodied in MLPerf and modern training cost analyses.