The Roofline Model

Total Page:16

File Type:pdf, Size:1020Kb

The Roofline Model FUTURE TECHNOLOGIES GROUP The Roofline Model Samuel Williams Lawrence Berkeley National Laboratory [email protected] 1 Outline FUTURE TECHNOLOGIES GROUP Introduction The Roofline Model Example: high-order finite difference stencils New issues at exascale 2 Challenges / Goals FUTURE TECHNOLOGIES GROUP At petascale, there are a wide variety of architectures (superscalar CPUs, embedded CPUs, GPUs/accelerators, etc…). The comput ati onal ch aract eri sti cs of numeri cal meth o ds can vary dramatically. The result is that performance and the benefit of optimization can vary significantly from one architecture x kernel combination to the next. We wish to qqyqypuickly quantify performance bounds for a variet y of architectural x implementation x algorithm combinations. Moreover, we wish to identify performance bottlenecks and enumerate potential remediation strategies. 3 Arithmetic Intensity FUTURE TECHNOLOGIES GROUP O( log(N) ) O( 1 ) O( N ) SpMV, BLAS1,2 FFTs Dense Linear Algebra Stencils (PDEs) (BLAS3) PIC codes Naïve Particle Methods Lattice Methods True Arithmetic Intensity (AI) ~ Total Flops / Total DRAM Bytes Some HPC kernels have an arithmetic intensity that scales with problem size (temporal locality increases with problem size) while others have constant arithmetic intensity. Arithmetic intensity is ultimately limited by compulsory traffic Arithmetic intensity is diminished by conflict or capacity misses 4 Arithmetic Intensity FUTURE TECHNOLOGIES GROUP O( log(N) ) O( 1 ) O( N ) SpMV, BLAS1,2 FFTs Dense Linear Algebra Stencils (PDEs) (BLAS3) PIC codes Naïve Particle Methods Lattice Methods Note, we are free to define arithmetic intensity in different terms: e.g. DRAM bytes -> cache, PCIe, or network bytes. flop’ s -> stencil’ s Thus, we might consider performance (MStencil/s) as a function of arithmetic intensity (stencils per byte of ____) 5 FUTURE TECHNOLOGIES GROUP Roofline Model 6 Overlap of Communication FUTURE TECHNOLOGIES GROUP Consider a simple example in which a FP kernel maintains a working set in DRAM. We assume we can per fectl y over lap compu ta tion w ith communication or v.v. either through prefetching/DMA and/or pipelining (decoupling of communication and computation) Thus, ti me, i s th e maxi mum of th e ti me requi re d to transf er th e da ta and the time required to perform the floating point operations. Byte’s / STREAM Bandwidth Flop’s / Flop/s time 7 Roofline Model Basic Concept FUTURE TECHNOLOGIES GROUP Synthesize communication, computation, and locality into a single visually-intuitive performance figure using bound and bottleneck analysis. Attainable FLOP/s with Optimizations1-i = min Performance ij AI * Ban dw idth with O pti mi zati ons1-j where optimization i can be SIMDize, or unroll, or SW prefetch, … Given a kernel’s arithmetic intensity (based on DRAM traffic after being filtered by the cache), programmers can inspect the figure, and bound performance. Moreover, provides insights as to which optimizations will potentially be beneficial. 8 Example FUTURE TECHNOLOGIES GROUP Consider the Opteron 2356: Dual Socket (NUMA) lim ite d HW s tream prefthfetchers quad-core (8 total) 2.3GHz 2-way SIMD (DP) separate FPMUL and FPADD datapaths 4-cyclFPltle FP latency Assuming expression of parallelism is the challenge on this architecture, what would the roofline model look like ? 9 Roofline Model Basic Concept FUTURE TECHNOLOGIES GROUP Opteron 2356 Naively, one might assume 256.0 (()Barcelona) peak performance is 128.0 always attainable . peak DP 64.0 OP/s LL 32. 0 16.0 le GF bb 808.0 4.0 attaina 2.0 1.0 0.5 10 Roofline Model Basic Concept FUTURE TECHNOLOGIES GROUP Opteron 2356 However, with a lack of 256.0 (()Barcelona) locality, DRAM bandwidth 128.0 can be a bottleneck peak DP 64.0 Plot on log-log scale OP/s LL 32. 0 Given AI, we can easily 16.0 bound performance le GF But architectures are much bb 808.0 more complicated 4.0 attaina 2.0 We will bound performance as we eliminate specific 1.0 forms of in-core parallelism 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 11 Roofline Model computational ceilings FUTURE TECHNOLOGIES GROUP Opteron 2356 Opterons have dedicated 256.0 (()Barcelona) multipliers and adders. 128.0 If th e cod e is dom ina te d by peak DP adds, then attainable 64.0 performance is half of peak. OP/s mul / add imbalance LL 32. 0 WllthWe call these Ce ilings 16.0 They act like constraints on le GF performance bb 808.0 4.0 attaina 2.0 1.0 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 12 Roofline Model computational ceilings FUTURE TECHNOLOGIES GROUP Opteron 2356 Opterons have 128-bit 256.0 (()Barcelona) datapaths. 128.0 If ins truc tions aren ’t peak DP SIMDized, attainable 64.0 performance will be halved OP/s mul / add imbalance LL 32. 0 16.0 w/out SIMD le GF bb 808.0 4.0 attaina 2.0 1.0 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 13 Roofline Model computational ceilings FUTURE TECHNOLOGIES GROUP Opteron 2356 On Opterons, floating-point 256.0 (()Barcelona) instructions have a 4 cycle 128.0 latency. peak DP If we don’t express 4-way 64.0 ILP, performance will drop OP/s mul / add imbalance LL 32. 0 by as much as 4x 16.0 w/out SIMD le GF bb 808.0 4.0 w/out ILP attaina 2.0 1.0 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 14 Roofline Model communication ceilings FUTURE TECHNOLOGIES GROUP Opteron 2356 We can perform a similar 256.0 (()Barcelona) exercise taking away 128.0 parallelism from the peak DP memory subsystem 64.0 OP/s LL 32. 0 16.0 le GF bb 808.0 4.0 attaina 2.0 1.0 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 15 Roofline Model communication ceilings FUTURE TECHNOLOGIES GROUP Opteron 2356 Explicit software prefetch 256.0 (()Barcelona) instructions are required to 128.0 achieve peak bandwidth peak DP 64.0 OP/s LL 32. 0 16.0 le GF bb 808.0 4.0 attaina 2.0 1.0 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 16 Roofline Model communication ceilings FUTURE TECHNOLOGIES GROUP Opteron 2356 Opterons are NUMA 256.0 (()Barcelona) As such memory traffic 128.0 mustbt be correc tly ba lance d peak DP among the two sockets to 64.0 achieve good Stream OP/s LL 32. 0 bandwidth. 16.0 le GF We could continue this by bb 808.0 examiiining s tiddtrided or 4.0 random memory access patterns attaina 2.0 1.0 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 17 Roofline Model computation + communication ceilings FUTURE TECHNOLOGIES GROUP Opteron 2356 We may bound 256.0 (()Barcelona) performance based on the 128.0 combination of expressed peak DP in-core parallelism and 64.0 attained bandwidth. OP/s mul / add imbalance LL 32. 0 16.0 w/out SIMD le GF bb 808.0 4.0 w/out ILP attaina 2.0 1.0 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 18 Roofline Model locality walls FUTURE TECHNOLOGIES GROUP Opteron 2356 Remember, memory traffic 256.0 (()Barcelona) includes more than just 128.0 compulsory misses . peak DP As such, actual arithmetic 64.0 intensity may be OP/s mul / add imbalance LL 32. 0 substantially lower. w/out SIMD Walls are unique to the 16.0 architecture-kernel o le GF n ly compulsory bb 808.0 combination 4.0 w/out ILP FLOPs attaina 2.0 miss traffic AI = ClMiCompulsory Misses 1.0 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 19 Cache Behavior FUTURE TECHNOLOGIES GROUP Knowledge of the underlying cache operation can be critical. For example, caches are organized into lines. Lines are organized itinto se ts & ways (associtiitiativity) Thus, we must mimic the effect of Mark Hill’s 3C’s of caches Impacts of conflict, compulsory, and capacity misses are both architecture- and application-dependent. Ultimately they reduce the actual flop:byte ratio. Moreover, many caches are write allocate. a write a lloca te cac he rea d in an en tire cac he line upon a wr ite m iss. If the application ultimately overwrites that line, the read was superfluous (further reduces flop:byte ratio) BdtidbthdtfitBecause programs access data in words, but hardware transfers it in 64 or 128B cache lines, spatial locality is key Array-of-structure data layouts can lead to dramatically lower flop:byte ratios. e.g. if a program only operates on the “red” field of a pixel, bandwidth is wasted. 20 Roofline Model locality walls FUTURE TECHNOLOGIES GROUP Opteron 2356 Remember, memory traffic 256.0 (()Barcelona) includes more than just 128.0 compulsory misses . peak DP As such, actual arithmetic 64.0 intensity may be OP/s mul / add imbalance LL 32. 0 substantially lower. w/out SIMD Walls are unique to the 16.0 architecture-kernel o le GF n ly compulsory bb 808.0 combination +write allo 4.0 w/out ILP FLOPs c attaina ation traffic 2.0 miss traffic AI = Alloca tions + Compu lsory Misses 1.0 0.5 1 1 1 /8 /4 /2 1 2 4 8 16 actual FLOP:Byte ratio 21 Roofline Model locality walls FUTURE TECHNOLOGIES GROUP Opteron 2356 Remember, memory traffic 256.0 (()Barcelona) includes more than just 128.0 compulsory misses .
Recommended publications
  • Cache-Aware Roofline Model: Upgrading the Loft
    1 Cache-aware Roofline model: Upgrading the loft Aleksandar Ilic, Frederico Pratas, and Leonel Sousa INESC-ID/IST, Technical University of Lisbon, Portugal ilic,fcpp,las @inesc-id.pt f g Abstract—The Roofline model graphically represents the attainable upper bound performance of a computer architecture. This paper analyzes the original Roofline model and proposes a novel approach to provide a more insightful performance modeling of modern architectures by introducing cache-awareness, thus significantly improving the guidelines for application optimization. The proposed model was experimentally verified for different architectures by taking advantage of built-in hardware counters with a curve fitness above 90%. Index Terms—Multicore computer architectures, Performance modeling, Application optimization F 1 INTRODUCTION in Tab. 1. The horizontal part of the Roofline model cor- Driven by the increasing complexity of modern applica- responds to the compute bound region where the Fp can tions, microprocessors provide a huge diversity of compu- be achieved. The slanted part of the model represents the tational characteristics and capabilities. While this diversity memory bound region where the performance is limited is important to fulfill the existing computational needs, it by BD. The ridge point, where the two lines meet, marks imposes challenges to fully exploit architectures’ potential. the minimum I required to achieve Fp. In general, the A model that provides insights into the system performance original Roofline modeling concept [10] ties the Fp and the capabilities is a valuable tool to assist in the development theoretical bandwidth of a single memory level, with the I and optimization of applications and future architectures.
    [Show full text]
  • CS 575: the Roofline Model
    CS 575: The Roofline Model Wim Bohm Colorado State University Spring 2013 Roofline: An Insightful Visual Performance Model.. David Patterson.. U.C. Berkeley submitted to CAM April 2008 Analyzing Program Performance n In empirical Computer Science, we plot functions describing the run time (or the memory use) of a program: ¨ This can be as a function of the input size. We have seen this in e.g. cs320 or cs420, where we studied polynomial and exponential (monotonically growing) complexity. ¨ In this class we also study program performance as a function of the number of processors. n In this case the functions are positive and, hopefully decreasing. n Also we plot speedup curves, which are usually asymptotic ¨ The roofline model plots GFlops/second as a function of Operational Intensity (GFlops/byte) Straight Lines CS475: When plotting data we get the most information from straight lines! ¨ We can easily recognize a straight line (y = ax+b) n The slope (a) and y intercept (b) tells us all. ¨ So we need to turn our data sets into straight lines. ¨ This is easiest done using log-s, because they turn a multiplicative factor into a shift up (y intercept) , and an exponential into a multiplicative factor (slope) Exponential functions log(2n) = n log2 linear in n log(3n) = n log 3 slope is base of log log(4.3n) = n log3 + log4 * shifts it up log((3n)/4) = n log3 – log4 / shifts it down Exponentials: semi-log plot n 2n 3n 20*3n 10000000" 0 1 1 20 1000000" 1 2 3 60 2 4 9 180 100000" 3 8 27 540 10000" 4 16 81 1620 2^n" 3^n" 5 32 243 4860 1000" 20"3^n" 7 128 2087 41740 10 1024 56349 1126980 100" 10" semi-log plot: y–axis on log scale 1" x-axis linear 0" 2" 4" 6" 8" 10" 12" angle: base shift: multiplicative factor Polynomials n What if we take the log of a polynomial? e.g.
    [Show full text]
  • Beyond the Roofline: Cache-Aware Power and Energy-Efficiency
    This is the author's version of an article that has been published in this journal. Changes were made to this version by the publisher prior to publication. The final version of record is available at http://dx.doi.org/10.1109/TC.2016.2582151 TRANSACTIONS ON COMPUTERS, VOL. X, NO. X, MAY 2016 1 Beyond the Roofline: Cache-aware Power and Energy-Efficiency Modeling for Multi-cores Aleksandar Ilic, Member, IEEE, Frederico Pratas, Member, IEEE, and Leonel Sousa, Senior Member, IEEE Abstract—To foster the energy-efficiency in current and future multi-core processors, the benefits and trade-offs of a large set of optimization solutions must be evaluated. For this purpose, it is often crucial to consider how key micro-architecture aspects, such as accessing different memory levels and functional units, affect the attainable power and energy consumption. To ease this process, we propose a set of insightful cache-aware models to characterize the upper-bounds for power, energy and energy-efficiency of modern multi-cores in three different domains of the processor chip: cores, uncore and package. The practical importance of the proposed models is illustrated when optimizing matrix multiplication and deriving a set of power envelopes and energy-efficiency ranges of the micro-architecture for different operating frequencies. The proposed models are experimentally validated on a computing platform with a quad-core Intel 3770K processor by using hardware counters, on-chip power monitoring facilities and assembly micro-benchmarks. Index Terms—Multicore architectures, Modeling and simulation, Performance evaluation and measurement. F 1 INTRODUCTION N the road to pursuing highly energy-efficient execu- The key contribution of this paper is a set of insight- O tion, current and future trends in computer architec- ful cache-aware models to characterize the upper-bounds ture move towards complex and heterogeneous designs by for power, energy and energy-efficiency of modern multi- incorporating specialized functional units and cores [1].
    [Show full text]
  • How to Write Fast Numerical Code Fall 2016 Lecture: Roofline Model
    How to Write Fast Numerical Code Fall 2016 Lecture: Roofline model Instructor: Torsten Hoefler & Markus Püschel TA: Salvatore Di Girolamo Roofline model (Williams et al. 2008) Roofline model Resources in a processor that bound performance: Example: one core with π = 2 and β = 1 and no SSE • peak performance [flops/cycle] ops are double precision flops • memory bandwidth [bytes/cycle] • <others> performance [ops/cycle] Platform model bound based on β mem 4 bound based on π Bandwidth β carefully measured π = 2 [bytes/cycle] • raw bandwidth from manual is β: 1 unattainable (maybe 60% is) cache x • Stream benchmark may be 1/2 mem. compute bound conservative 1/4 bound P1 Pp 1/4 1/2 1 2 4 8 operational Peak performance π [ops/cycle] intensity some function [ops/bytes] run on some input Algorithm model (n is the input size) Operational intensity I(n) = W(n)/Q(n) = Bound based on β? - assume program as operational intensity of x ops/byte number of flops (cost) [ops/bytes] - it can get only β bytes/cycle number of bytes transferred - hence: performance = y ≤ βx between memory and cache - in log scale: log2(y) ≤ log2(β) + log2(x) - line with slope 1; y = β for x = 1 Q(n): assumes empty cache; Variations best measured with performance counters - vector instructions: peak bound goes up (e.g., 4 times for AVX) - multiple cores: peak bound goes up (p times for p cores) Notes - program has uneven mix adds/mults: peak bound comes down In general, Q and hence W/Q depend on the cache size m [bytes].
    [Show full text]
  • A Roofline Model of Energy
    Preprint – To appear in the IEEE Int’l. Parallel & Distributed Processing Symp. (IPDPS), May 2013 A roofline model of energy Jee Whan Choi Daniel Bedard, Robert Fowler Richard Vuduc Georgia Institute of Technology Renaissance Computing Institute Georgia Institute of Technology Atlanta, Georgia, USA Chapel Hill, North Carolina, USA Atlanta, Georgia, USA [email protected] fdanb,[email protected] [email protected] Abstract—We describe an energy-based analogue of the time- or alternative explanations about time, energy, and power based roofline model. We create this model from the perspective relationships. of algorithm designers and performance tuners, with the intent not of making exact predictions, but rather, developing high- First, when analyzing time, the usual first-order analytic level analytic insights into the possible relationships among tool is to assess the balance of the processing system [7]– the time, energy, and power costs of an algorithm. The model [12]. Recall that balance is the ratio of work the system expresses algorithms in terms of operations, concurrency, and can perform per unit of data transfer. To this notion of memory traffic; and characterizes the machine based on a time-balance, we define an energy-balance analogue, which small number of simple cost parameters, namely, the time and energy costs per operation or per word of communication. We measures the ratio of flops and bytes per unit-energy (e.g., confirm the basic form of the model experimentally. From this Joules). We compare balancing computations in time against model, we suggest under what conditions we ought to expect balancing in energy. [xII] an algorithmic time-energy trade-off, and show how algorithm Secondly, we use energy-balance to develop an energy- properties may help inform power management.
    [Show full text]
  • Roofline-Based Data Migration Methodology for Hybrid Memories 849
    Roofline-based Data Migration Methodology for Hybrid Memories 849 Roofline-based Data Migration Methodology for Hybrid Memories Jongmin Lee1, Kwangho Lee1, Mucheol Kim2, Geunchul Park3, Chan Yeol Park3 1 Department of Computer Engineering, Won-Kwang University, Korea 2 School of Software, Chung-Ang University, Korea 3 National Institute of Supercomputing and Networking, Korea Institute of Science and Technology Information, Korea [email protected], [email protected], [email protected], [email protected], [email protected]* Abstract be the future memory systems in high-performance computing (HPC) systems [4-7]. High-performance computing (HPC) systems provide Knights Landing (KNL) is the code name for the huge computational resources and large memories. The second-generation Intel Xeon Phi product family [1, 8]. hybrid memory is a promising memory technology that The KNL processor contains tens of cores and it contains different types of memory devices, which have provides the HBM 3D-stacked memory as a Multi- different characteristics regarding access time, retention Channel DRAM (MCDRAM). DRAM and MCDRAM time, and capacity. However, the increasing performance differ significantly in terms of access time, bandwidth and employing hybrid memories induce more complexity and capacity. Because of those differences between as well. In this paper, we propose a roofline-based data DRAM and MCDRAM, performance will vary migration methodology called HyDM to effectively use depending on the application characteristics and the hybrid memories targeting at Intel Knight Landing (KNL) usage of memory resources. The efficient use of these processor. HyDM monitors status of applications running systems requires prior application knowledge to on a system and migrates pages of selected applications determine which data of applications to place in which to the High Bandwidth Memory (HBM).
    [Show full text]
  • Roofline Model Toolkit: a Practical Tool for Architectural and Program
    Roofline Model Toolkit: A Practical Tool for Architectural and Program Analysis Yu Jung Lo, Samuel Williams, Brian Van Straalen, Terry J. Ligocki, Matthew J. Cordery, Nicholas J. Wright, Mary W. Hall, and Leonid Oliker University of Utah, Lawerence Berkeley National Laboratory {yujunglo,mhall}@cs.utah.edu {swwilliams,bvstraalen,tjligocki,mjcordery,njwright,loliker}@lbl.gov Abstract. We present preliminary results of the Roofline Toolkit for multicore, manycore, and accelerated architectures. This paper focuses on the processor architecture characterization engine, a collection of portable instrumented micro benchmarks implemented with Message Passing Interface (MPI), and OpenMP used to express thread-level paral- lelism. These benchmarks are specialized to quantify the behavior of dif- ferent architectural features. Compared to previous work on performance characterization, these microbenchmarks focus on capturing the perfor- mance of each level of the memory hierarchy, along with thread-level parallelism, instruction-level parallelism and explicit SIMD parallelism, measured in the context of the compilers and run-time environments. We also measure sustained PCIe throughput with four GPU memory managed mechanisms. By combining results from the architecture char- acterization with the Roofline model based solely on architectural spec- ifications, this work offers insights for performance prediction of current and future architectures and their software systems. To that end, we in- strument three applications and plot their resultant performance on the corresponding Roofline model when run on a Blue Gene/Q architecture. Keywords: Roofline, Memory Bandwidth, CUDA Unified Memory 1 Introduction The growing complexity of high-performance computing architectures makes it difficult for users to achieve sustained application performance across different architectures.
    [Show full text]
  • FPGA-Roofline: an Insightful Model for FPGA-Based Hardware
    FPGA-Roofline: An Insightful Model for FPGA-based Hardware Accelerators in Modern Embedded Systems Moein Pahlavan Yali Thesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulfillment of the requirements for the degree of Master of Science in Computer Engineering Patrick R. Schaumont, Chair Thomas L. Martin Chao Wang December 10, 2014 Blacksburg, Virginia Keywords: Embedded Systems, FPGA, Hardware Accelerator, Performance Model FPGA-Roofline: An Insightful Model for FPGA-based Hardware Accelerators in Modern Embedded Systems Moein Pahlavan Yali (ABSTRACT) The quick growth of embedded systems and their increasing computing power has made them suitable for a wider range of applications. Despite the increasing performance of modern em- bedded processors, they are outpaced by computational demands of the growing number of modern applications. This trend has led to emergence of hardware accelerators in embed- ded systems. While the processing power of dedicated hardware modules seems appealing, they require significant effort of development and integration to gain performance benefit. Thus, it is prudent to investigate and estimate the integration overhead and consequently the hardware acceleration benefit before committing to implementation. In this work, we present FPGA-Roofline, a visual model that offers insights to designers and developers to have realistic expectations of their system and that enables them to do their design and analysis in a faster and more efficient fashion. FPGA-Roofline allows simultaneous analysis of communication and computation resources in FPGA-based hardware accelerators. To demonstrate the effectiveness of our model, we have implemented hardware accelerators in FPGA and used our model to analyze and optimize the overall system performance.
    [Show full text]
  • Gables: a Roofline Model for Mobile Socs
    2019 IEEE International Symposium on High Performance Computer Architecture (HPCA) Gables: A Roofline Model for Mobile SoCs Mark D. Hill∗ Vijay Janapa Reddi∗ Computer Sciences Department School Of Engineering And Applied Sciences University of Wisconsin—Madison Harvard University [email protected] [email protected] Abstract—Over a billion mobile consumer system-on-chip systems with multiple cores, GPUs, and many accelerators— (SoC) chipsets ship each year. Of these, the mobile consumer often called intellectual property (IP) blocks, driven by the market undoubtedly involving smartphones has a significant need for performance. These cores and IPs interact via rich market share. Most modern smartphones comprise of advanced interconnection networks, caches, coherence, 64-bit address SoC architectures that are made up of multiple cores, GPS, and many different programmable and fixed-function accelerators spaces, virtual memory, and virtualization. Therefore, con- connected via a complex hierarchy of interconnects with the goal sumer SoCs deserve the architecture community’s attention. of running a dozen or more critical software usecases under strict Consumer SoCs have long thrived on tight integration and power, thermal and energy constraints. The steadily growing extreme heterogeneity, driven by the need for high perfor- complexity of a modern SoC challenges hardware computer mance in severely constrained battery and thermal power architects on how best to do early stage ideation. Late SoC design typically relies on detailed full-system simulation once envelopes, and all-day battery life. A typical mobile SoC in- the hardware is specified and accelerator software is written cludes a camera image signal processor (ISP) for high-frame- or ported.
    [Show full text]
  • Page 1 the Roofline Model Electrical Engineering and Computer
    Auto-tuning and the Roofline Model EECS Sam Williams, David Patterson, Kathy Yelick, Jim Demmel, Electrical Engineering and Andrew Waterman, Rich Vuduc, Lenny Oliker, John Shalf, Jonathan Carter, … BERKELEY PAR LAB Computer Sciences [email protected] P A R A L L E L C O M P U T I N G L A B O R A T O R Y Where does this fit in the ParLab ? The Roofline Model Auto-tuning the Structured Grid Motif Auto-tuning the Sparse Linear Algebra Motif ParLab Reference Reference Reference •Multi- and manycore is the only foreseeable solution to improve Samuel Williams, Andrew Waterman, David Patterson, “Roofline: An Insightful Multicore Performance Model”, Samuel Williams, Jonathan Carter, Leonid Oliker, John Shalf, Katherine Yelick, "Lattice Boltzmann Simulation Samuel Williams, Leonid Oliker, Richard Vuduc, John Shalf, Katherine Yelick, James Demmel, (submitted to) Communications of the ACM, 2008 Optimization on Leading Multicore Platforms", International Parallel & Distributed Processing Symposium "Optimization of Sparse Matrix-Vector Multiplication on Emerging Multicore Platforms", performance or reduce power. (IPDPS) (to appear), 2008. Supercomputing (SC), 2007. •Vertically and horizontally integrated lab focused on manycore. Best Paper, Application Track •Within each layer are multiple research groups. Introduction •Within each group are multiple projects. •Use bound and bottleneck analysis to distill the key components of Lattice-Boltzmann Magneto-hydrodynamics (LBMHD) What’s a Sparse Matrix? •Two groups (analysis and verification) dive
    [Show full text]
  • The Roofline Model
    “Simple” performance modeling: The Roofline Model Loop-based performance modeling: Execution vs. data transfer A simple performance model for loops Simplistic view of the hardware: Simplistic view of the software: Execution units max. performance ! may be multiple levels do i = 1,<sufficient> 푷풑풆풂풌 <complicated stuff doing N flops causing Data path, V bytes of data transfer> bandwidth 풃푺 enddo → Unit: byte/s 푵 Computational intensity 푰 = 푽 Data source/sink → Unit: flop/byte Roofline Model (c) NHR@FAU 2021 2 Naïve Roofline Model How fast can tasks be processed? 푷 [flop/s] The bottleneck is either ▪ The execution of work: 푃peak [flop/s] ▪ The data path: 퐼 ∙ 푏푆 [flop/byte x byte/s] 푃 = min(푃peak, 퐼 ∙ 푏푆) This is the “Naïve Roofline Model” P ▪ High intensity: P limited by execution peak Performance ▪ Low intensity: P limited by data transfer ▪ “Knee” at 푃푚푎푥 = 퐼 ∙ 푏푆: Best use of resources ▪ Roofline is an “optimistic” model (“light speed”) Intensity Roofline Model (c) NHR@FAU 2021 3 The Roofline Model in computing – Basics Apply the naive Roofline model in practice 퐹 ▪ Machine parameter #1: Peak performance: 푃 푝푒푎푘 푠 퐵 ▪ Machine parameter #2: Memory bandwidth: 푏 푆 푠 퐹 ▪ Code characteristic: Computational intensity: 퐼 퐵 Machine properties: GF 푃 = 2.5 GF/s 푷 = 4 double s=0, a[]; 풑풆풂풌 s for(i=0; i<N; ++i) { s = s + a[i] * a[i];} GB 풃 = 10 푺 s 2 퐹 퐼 = = 0.25 퐹Τ 8 퐵 퐵 Application property: I Roofline Model (c) NHR@FAU 2021 4 Prerequisites for the Roofline Model ▪ The roofline formalism is based on some (crucial) prerequisites: ▪ There is a clear concept of “work” vs.
    [Show full text]
  • The Boat Hull Model: Enabling Performance Prediction for Parallel Computing Prior to Code Development
    The Boat Hull Model: Enabling Performance Prediction for Parallel Computing Prior to Code Development Cedric Nugteren Henk Corporaal Eindhoven University of Technology, The Netherlands http://parse.ele.tue.nl/ {c.nugteren, h.corporaal}@tue.nl ABSTRACT 1. INTRODUCTION Multi-core and many-core were already major trends for the For the past five decades, single-processor performance past six years and are expected to continue for the next has shown an exponential growth, enabling technology to decade. With these trends of parallel computing, it becomes become pervasive and ubiquitous in our society. This ex- increasingly difficult to decide on which processor to run a ponential growth ended in 2004, limited by two aspects: 1) given application, mainly because the programming of these it became unfeasible to increase clock frequencies because processors has become increasingly challenging. of power dissipation problems, and 2), processor architec- In this work, we present a model to predict the perfor- ture improvements have seen a diminishing impact [9]. To mance of a given application on a multi-core or many-core re-enable performance growth, parallelism is exploited. En- processor. Since programming these processors can be chal- abled by Moore’s law, more processors per chip (i.e. multi- lenging and time consuming, our model does not require core) was already a major trend for the past six years and is source code to be available for the target processor. This expected to continue for the next decades [7]. While multi- is in contrast to existing performance prediction techniques core is expected to enable 100-core processors by 2020 [7], such as mathematical models and simulators, which require another trend (many-core) already yields more than 2000 code to be available and optimized for the target architec- cores per chip, enabled by using much simpler processing ture.
    [Show full text]