ImageNet classification with deep convolutional neural networks
Alex Krizhevsky, Ilya Sutskever et al.
178
Citations
0
Influential Citations
Centrum Wiskunde & Informatica (CWI), the national research institute for mathematics and computer science in the Netherlands
Venue
2002
Year
In the past decade, the exponential growth in commodity CPUs speed has far outpaced advances in memory latency. A second trend is that CPU performance advances are not only brought by increased clock rate, but also by increasing parallelism inside the CPU. Current database systems have not yet adapted to these trends, and show poor utilization of both CPU and memory resources on current hardware. In this article, we show how these resources can be optimized for large joins and translate these insights into guidelines for future database architectures, encompassing data structures, algorithms, cost modeling, and implementation. In particular, we discuss how vertically fragmented data structures optimize cache performance on sequential data access. On the algorithmic side, we refine the partitioned hash-join with a new partitioning algorithm called radix-cluster, which is specifically designed to optimize memory access. The performance of this algorithm is quantified using a detailed analytical model that incorporates memory access costs in terms of a limited number of parameters, such as cache sizes and miss penalties. We also present a calibration tool that extracts such parameters automatically from any computer hardware. The accuracy of our models is proven by exhaustive experiments conducted with the Monet database system on three different hardware platforms. Finally, we investigate the effect of implementation techniques that optimize CPU resource usage. Our experiments show that large joins can be accelerated almost an order of magnitude on modern RISC hardware when both memory and CPU resources are optimized.
This paper addresses a critical performance gap in database systems caused by the divergence between CPU speed growth and memory latency improvements. As CPUs become faster and more parallel, traditional database algorithms fail to utilize these resources efficiently, leading to poor cache and memory utilization. The authors tackle this by rethinking core join operations—a fundamental database task—to align with modern hardware characteristics. Their insights are particularly relevant for AI practitioners who rely on high-performance data processing pipelines, as join operations are common in data preprocessing and feature engineering.
The paper introduces several key innovations:
The experiments, conducted on the Monet database system across three different hardware platforms (including RISC architectures), show that large joins can be accelerated by nearly an order of magnitude when both memory and CPU optimizations are applied. The radix-cluster algorithm consistently outperforms traditional hash-join implementations, with the analytical model accurately predicting performance within a few percent. The calibration tool successfully extracts hardware parameters, enabling the model to be applied to new systems without manual tuning.
This paper has had lasting impact on database architecture and query processing. Its guidelines for cache-conscious algorithms and data structures have influenced subsequent work in main-memory databases (e.g., MonetDB, HyPer) and are now standard in modern column-store systems. For AI practitioners, the principles of memory-aware algorithm design are directly applicable to high-performance data processing frameworks, such as those used in machine learning pipelines. The radix-cluster approach also inspired similar partitioning techniques in distributed and GPU-based join processing.
Alex Krizhevsky, Ilya Sutskever et al.
Ashish Vaswani, Noam Shazeer et al.
Douglas M. Bates, Martin Mächler et al.
Diederik P. Kingma, Jimmy Ba