33
Introduction to the Roofline Model Samuel Williams Computational Research Division Lawrence Berkeley National Lab [email protected]

Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

  • Upload
    others

  • View
    5

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Introduction to theRoofline Model

Samuel WilliamsComputational Research DivisionLawrence Berkeley National Lab

[email protected]

Page 2: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

§ This material is based upon work supported by the Advanced Scientific Computing Research Programin the U.S. Department of Energy, Office of Science, under Award Number DE-AC02-05CH11231.

§ This research used resources of the National Energy Research Scientific Computing Center (NERSC),which is supported by the Office of Science of the U.S. Department of Energy under contract DE-AC02-05CH11231.

§ This research used resources of the Oak Ridge Leadership Facility at the Oak Ridge NationalLaboratory, which is supported by the Office of Science of the U.S. Department of Energy underContract No. DE-AC05-00OR22725.

Acknowledgements

Page 3: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Performance Models and Tools§ Identify performance bottlenecks§ Motivate software optimizations§ Determine when we’re done optimizing

• Assess performance relative to machine capabilities• Motivate need for algorithmic changes

§ Predict performance on future machines / architectures• Sets realistic expectations on performance for future procurements• Used for HW/SW Co-Design to ensure future architectures are well-suited for the

computational needs of today’s applications.

3

Page 4: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Performance Models / Simulators§ Historically, many performance models and simulators tracked latencies

to predict performance (i.e. counting cycles)

§ The last two decades saw a number of latency-hiding techniques…• Out-of-order execution (hardware discovers parallelism to hide latency)• HW stream prefetching (hardware speculatively loads data)• Massive thread parallelism (independent threads satisfy the latency-bandwidth product)

§ Effectively latency hiding has resulted in a shift from a latency-limited computing regime to a throughput-limited computing regime

4

Page 5: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Roofline Model§ The Roofline Model is a throughput-

oriented performance model…• Tracks rates not time• Augmented with Little’s Law

(concurrency = latency*bandwidth) • Independent of ISA and architecture

(applies to CPUs, GPUs, Google TPUs1, etc…)

§ Three Components:• Machine Characterization

(realistic performance potential of the system)• Application Execution Monitoring• Theoretical Application Bounds

(how well could my app perform with perfect compilers, caches, overlap, …)

51Jouppi et al, “In-Datacenter Performance Analysis of a Tensor Processing Unit”, ISCA, 2017.

https://crd.lbl.gov/departments/computer-science/PAR/research/roofline

Page 6: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

(DRAM) Roofline§ One could hope to always attain peak

performance (Flop/s)§ However, finite locality (reuse) and

bandwidth limit performance.§ Consider idealized processor/caches§ Plot the performance bound using

Arithmetic Intensity (AI) as the x-axis…• AI = Flops / Bytes presented to DRAM • Attainable Flop/s = min( peak Flop/s, AI * peak GB/s ) • Log-log makes it easy to doodle, extrapolate

performance along Moore’s Law, etc…• Kernels with AI less than machine balance are ultimately

DRAM bound (we’ll refine this later…)

6

Peak Flop/s

Atta

inab

le F

lop/

s

Arithmetic Intensity (Flop:Byte)

Memory-bound Compute-bound

Page 7: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Roofline Example #1§ Typical machine balance is 5-10

flops per byte…• 40-80 flops per double to exploit compute capability• Artifact of technology and money• Unlikely to improve

§ Consider STREAM Triad…

• 2 flops per iteration• Transfer 24 bytes per iteration (read X[i], Y[i], write Z[i])• AI = 0.083 flops per byte == Memory bound

7

Peak Flop/s

Atta

inab

le F

lop/

s

Arithmetic Intensity (Flop:Byte)

TRIAD

Gflop/s ≤ AI * DRAM GB/s

#pragma omp parallel forfor(i=0;i<N;i++){

Z[i] = X[i] + alpha*Y[i];}

0.083

Page 8: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Roofline Example #2§ Conversely, 7-point constant

coefficient stencil…• 7 flops• 8 memory references (7 reads, 1 store) per point• Cache can filter all but 1 read and 1 write per point• AI = 0.44 flops per byte == memory bound,

but 5x the flop rate

8

Peak Flop/s

Atta

inab

le F

lop/

s

7-pointStencil

Gflop/s ≤ AI * DRAM GB/s

TRIAD

#pragma omp parallel forfor(k=1;k<dim+1;k++){for(j=1;j<dim+1;j++){for(i=1;i<dim+1;i++){

int ijk = i + j*jStride + k*kStride; new[ijk] = -6.0*old[ijk ]

+ old[ijk-1 ]+ old[ijk+1 ]+ old[ijk-jStride]+ old[ijk+jStride]+ old[ijk-kStride]+ old[ijk+kStride];

}}}

Arithmetic Intensity (Flop:Byte)0.083 0.44

Page 9: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

DDR BoundDDR AI*BW <

MCDRAM AI*BW

Hierarchical Roofline§ Real processors have multiple

levels of memory• Registers• L1, L2, L3 cache• MCDRAM/HBM (KNL/GPU device memory)• DDR (main memory)• NVRAM (non-volatile memory)

§ We may measure a bandwidth and define an AI for each level• A given application / kernel / loop nest will thus have

multiple AI’s and multiple bounds• A kernel could be DDR-limited…

9

Peak Flop/s

Atta

inab

le F

lop/

s

Arithmetic Intensity (Flop:Byte)

Page 10: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Hierarchical Roofline§ Real processors have multiple

levels of memory• Registers• L1, L2, L3 cache• MCDRAM/HBM (KNL/GPU device memory)• DDR (main memory)• NVRAM (non-volatile memory)

§ We may measure a bandwidth and define an AI for each level• A given application / kernel / loop nest will thus have

multiple AI’s and multiple bounds• A kernel could be DDR-limited…

10

Peak Flop/s

Atta

inab

le F

lop/

s

Arithmetic Intensity (Flop:Byte)

Performance pulled below

MCDRAM Roofline

Page 11: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

MCDRAM boundMCDRAM AI*BW <

DDR AI*BW

Hierarchical Roofline§ Real processors have multiple

levels of memory• Registers• L1, L2, L3 cache• MCDRAM/HBM (KNL/GPU device memory)• DDR (main memory)• NVRAM (non-volatile memory)

§ We may measure a bandwidth and define an AI for each level• A given application / kernel / loop nest will thus have

multiple AI’s and multiple bounds• A kernel could be DDR-limited…• or MCDRAM-limited depending on relative

bandwidths and AI’s

11

Peak Flop/s

Atta

inab

le F

lop/

s

Arithmetic Intensity (Flop:Byte)

Page 12: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Hierarchical Roofline§ Real processors have multiple

levels of memory• Registers• L1, L2, L3 cache• MCDRAM/HBM (KNL/GPU device memory)• DDR (main memory)• NVRAM (non-volatile memory)

§ We may measure a bandwidth and define an AI for each level• A given application / kernel / loop nest will thus have

multiple AI’s and multiple bounds• A kernel could be DDR-limited…• or MCDRAM-limited depending on relative

bandwidths and AI’s

12

Peak Flop/s

Atta

inab

le F

lop/

s

Arithmetic Intensity (Flop:Byte)

Performance pulled below DDR Roofline

Page 13: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Data, Instruction, Thread-Level Parallelism…§ We have assumed one can attain

peak flops with high locality.§ In reality, this is premised on

sufficient…• Use special instructions (e.g. fused multiply-add)• Vectorization (16 flops per instruction)• unrolling, out-of-order execution (hide FPU latency)• OpenMP across multiple cores

§ Without these, …• Peak performance is not attainable• Some kernels can transition from memory-bound to

compute-bound• n.b. in reality, DRAM bandwidth is often tied to DLP and

TLP (single core can’t saturate BW w/scalar code)

13

Peak Flop/s

No FMA

No vectorization

Atta

inab

le F

lop/

s

Arithmetic Intensity (Flop:Byte)

Performance pulled below DDR Roofline

Page 14: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Prior Roofline Efforts

Page 15: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Basic Roofline Modeling

15

Machine CharacterizationPotential of my target system• How does my system respond to a lack of

FMA, DLP, ILP, TLP?• How does my system respond to reduced AI

(i.e. memory/cache bandwidth)?• How does my system respond to NUMA,

strided, or random memory access patterns?• …

Application InstrumentationProperties of my app’s execution• What is my app/kernel’s actual AI?• How does AI vary with memory level ?• How well does my app vectorize?• Does my app use FMA?• ...

Page 16: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Machine Characterization for Roofline§ How fast is my system?§ Challenges:

• Too many systems; new ones each year• Voluminous documentation on each • Real performance often less than

“Marketing Numbers”• Compilers can “give up” on big loops

16https://crd.lbl.gov/departments/computer-science/PAR/research/roofline/

§ Empirical Roofline Toolkit (ERT)• Characterize CPU/GPU systems• Peak Flop rates• Bandwidths for each level of memory• MPI+OpenMP/CUDA == multiple GPUs

10

100

1000

10000

0.01 0.1 1 10 100

GFL

OPs

/ se

c

FLOPs / Byte

Empirical Roofline Graph (Results.quadflat.2t/Run.002)

2450.0 GFLOPs/sec (Maximum)

L1 - 6

442.9

GB/s

L2 - 1

965.4

GB/s

DRAM - 412

.9 GB/s

Cori / KNL

10

100

1000

10000

100000

0.01 0.1 1 10 100

GFL

OPs

/ se

c

FLOPs / Byte

Empirical Roofline Graph (Results.summitdev.ccs.ornl.gov.02.MPI4/Run.001)

17904.6 GFLOPs/sec (Maximum)

L1 - 6

506.5

GB/s

DRAM - 192

9.7 G

B/s

SummitDev / 4GPUs

Page 17: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Application Instrumentation Can Be Hard…✘ Flop Counters can be broken/missing in production processors✘ Vectorization/Masking can complicate counting Flop’s✘ Counting Loads and Stores is a poor proxy for DRAM data movement

as they don’t capture cache reuse✘ Counting L1 misses is a poor proxy for data movement as they don’t

account for speculative HW stream prefetching.✘ DRAM counters (Uncore PMU) might be accurate, but are privileged

and thus nominally inaccessible in user mode✘ OS/kernel changes must be approved by vendor (e.g. Cray) and the

center (e.g. NERSC)

17

Page 18: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Initial NERSC Application Roofline Efforts§ Goal: Characterize applications running on

NERSC production systems (Cori/KNL,HSW)§ Limited by available tools/permissions on Cori…

• Used Intel SDE (Pin binary instrumentation + emulation) to create software Flop counters

• Used Intel VTune performance tool (NERSC/Cray approved) to access uncore counters

§ Produced accurate measurement of Flop’s (HSW) and DRAM data movement (HSW and KNL)

§ Used by NESAP (NERSC KNL application readiness project) to characterize apps on Cori…

18

http://www.nersc.gov/users/application-performance/measuring-arithmetic-intensity/NERSC is LBL’s production computing divisionCRD is LBL’s Computational Research DivisionNESAP is NERSC’s KNL application readiness projectLBL is part of SUPER (DOE SciDAC3 Computer Science Institute)

Page 19: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Initial Roofline Analysis of NESAP Codes

19

1"

10"

100"

1000"

10000"

0.1" 1" 10"

GFLOP/s"

Arithme3c"Intensity"(FLOP/byte)"

Roofline"Model"

wo/FMA"

Original"

w/Tiling"

w/Tiling+Vect"

1"

10"

100"

1000"

10000"

0.1" 1" 10"

GFLOP/s"

Arithme3c"Intensity"(FLOP/byte)"

Roofline"Model"

wo/FMA"

Original"

w/Tiling"

w/Tiling+Vect"1"

10"

100"

1000"

10000"

0.1" 1" 10"

GFLOP/s"

Arithme3c"Intensity"(FLOP/byte)"

Roofline"Model"

wo/FMA"

Original"

SELL"

SB"

SELL+SB"

nRHS+SELL+SB"

1"

10"

100"

1000"

10000"

0.1" 1" 10"

GFLOP/s"

Arithme3c"Intensity"(FLOP/byte)"

Roofline"Model"

wo/FMA"

Original"

SELL"

SB"

SELL+SB"

nRHS+SELL+SB"

1"

10"

100"

1000"

10000"

0.01" 0.1" 1" 10"

GFLOP/s"

Arithme3c"Intensity"(FLOP/byte)"

Roofline"Model"

wo/FMA"

1"RHS"

4"RHS"

8"RHS"

1"

10"

100"

1000"

10000"

0.01" 0.1" 1" 10"

GFLOP/s"

Arithme3c"Intensity"(FLOP/byte)"

Roofline"Model"

wo/FMA"

1"RHS"

4"RHS"

8"RHS"2P H

SWK

NL

MFDn PICSAREMGeo

Page 20: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Additional Experimentation with LIKWID§ LIKWID provides easy to use wrappers

for measuring performance counters…ü Works on NERSC production systemsü Minimal overhead (<1%)ü Scalable in distributed memoryü Fast, high-level characterization at scaleü Regions of interest can be manually marked and profiled✘ No detailed timing breakdown or optimization advice✘ Limited by quality of underlying performance

counters (garbage in/garbage out)

20

8

16

32

64

128

256

512

1024

HP

GM

G (

32

Px1

T)

HP

GM

G (

4P

x8T

)

Co

mb

ust

or (

32

Px1

T)

Co

mb

ust

or (

4P

x8T

)

MF

IX (

32

Px1

T)

Nyx

(3

2P

x1T

)

Nyx

(4

Px8

T)

Pe

leL

M (3

2P

x1T

)

Wa

rpX

(3

2P

x1T

)

Wa

rpX

(4

Px8

T)

Bandw

idth

(GB

/s)

AMReX Application Characterization(2Px16c HSW == Cori Phase 1)

L2L3DRAMRoofline

https://github.com/RRZE-HPC/likwid

Page 21: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Need a integrated solution…§ Having to compose VTune, SDE, and graphing tools to generate

Roofline models worked correctly and benefitted NESAP, but …✘ forced users to learn/run multiple tools✘ forced users to instrument routines of interest in their application✘ forced users to manually parse/compose/graph the output✘ lacked integration with compiler/debugger/disassembly

21

§ LIKWID was much easier to use, faster, and more scalable, but …✘ forces users to manually instrument routines of interest✘ forces users to manually parse/compose/graph the output✘ lacks integration with compiler/debugger/disassembly

§ CRD/NERSC wanted a more integrated solution for Roofline…

Page 22: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Intel Advisor§ Includes Roofline Automation…

ü Automatically instruments applications(one dot per loop nest/function)

ü Computes FLOPS and AI for each function

ü Automatically benchmarks target system (calculates ceilings)

ü Integrated Cache Simulator1

(hierarchical roofline / multiple AI’s)ü Full AVX-512 integration with mask

valuesü Full integration with existing Advisor

capabilities

22

Memory-bound, invest into cache blocking etc

Compute bound: invest into SIMD,..

1Technology Preview, not in official product roadmap so far.This version will be made available during the hands-on component of this tutorial.

Page 23: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Background: Hierarchical Roofline vs.Cache-Aware Roofline

Page 24: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

There are two Major Roofline Formulations:§ Hierarchical Roofline (original Roofline w/ DRAM, L3, L2, …)…

• Williams, et al, “Roofline: An Insightful Visual Performance Model for Multicore Architectures”, CACM, 2009 • Chapter 4 of “Auto-tuning Performance on Multicore Computers”, 2008• Defines multiple bandwidth ceilings and multiple AI’s per kernel• Performance bound is the minimum of flops and the memory intercepts

§ Cache-Aware Roofline• Ilic et al, "Cache-aware Roofline model: Upgrading the loft", IEEE Computer Architecture Letters, 2014• Defines multiple bandwidth ceilings, but uses a single AI (flop:L1 bytes)• As one looses cache locality (capacity, conflict, …) performance falls from one BW ceiling to a lower one at constant AI

24

§ Why Does this matter?• Some tools use the Hierarchical Roofline, some use cache-aware == Users need to understand the differences• Cache-Aware Roofline model was integrated into production Intel Advisor• Evaluation version of DRAM-only Roofline (PMU) has also been integrated into Intel Advisor• Evaluation version of Hierarchical Roofline1 (cache simulator) has also been integrated into Intel Advisor

1Technology Preview, not in official product roadmap so far.This version will be made available during the hands-on component of this tutorial.

Page 25: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

25

Cache-Aware RooflineHierarchical Roofline§ Captures cache effects§ Captures cache effects

§ Single Arithmetic Intensity§ Multiple Arithmetic Intensities(one per level of memory)

§ AI independent of problem size§ AI dependent on problem size(capacity misses reduce AI)

§ AI is Flop:Bytes as presented to the L1 cache (plus non-temporal stores)

§ AI is Flop:Bytes after being filtered by lower cache levels

§ Memory/Cache/Locality effects are observed as decreased performance

§ Memory/Cache/Locality effects are observed as decreased AI

§ Requires static analysis or binary instrumentation to measure AI

§ Requires performance counters or cache simulator to correctly measure AI

Page 26: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Example: STREAM

26

#pragma omp parallel forfor(i=0;i<N;i++){

Z[i] = X[i] + alpha*Y[i];}

§ L1 AI…• 2 flops• 2 x 8B load (old)• 1 x 8B store (new)• = 0.08 flops per byte

§ No cache reuse…• Iteration i doesn’t touch any data associated with

iteration i+delta for any delta.

§ … leads to a DRAM AI equal to the L1 AI

Page 27: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Example: STREAM

27

Cache-Aware RooflineHierarchical Roofline

Peak Flop/s

Atta

inab

le F

lop/

s

Arithmetic Intensity (Flop:Byte)0.083

Multiple AI’s….1) Flop:DRAM bytes2) Flop:L1 bytes (same)

Peak Flop/s

Atta

inab

le F

lop/

s

0.083Arithmetic Intensity (Flop:Byte)

Single AI based on flop:L1 bytes

Observed performanceis correlated with DRAMbandwidth

Performance is bound tothe minimum of the twoIntercepts…

AIL1 * L1 GB/sAIDRAM * DRAM GB/s

Page 28: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Example: 7-point Stencil (Small Problem)

28

#pragma omp parallel forfor(k=1;k<dim+1;k++){for(j=1;j<dim+1;j++){for(i=1;i<dim+1;i++){

int ijk = i + j*jStride + k*kStride; new[ijk] = -6.0*old[ijk ]

+ old[ijk-1 ]+ old[ijk+1 ]+ old[ijk-jStride]+ old[ijk+jStride]+ old[ijk-kStride]+ old[ijk+kStride];

}}}

§ L1 AI…• 7 flops• 7 x 8B load (old)• 1 x 8B store (new)• = 0.11 flops per byte• some compilers may do register shuffles to reduce the

number of loads.

§ Moderate cache reuse…• old[ijk] is reused on subsequent iterations of i,j,k• old[ijk-1] is reused on subsequent iterations of i.• old[ijk-jStride] is reused on subsequent iterations of j.• old[ijk-kStride] is reused on subsequent iterations of k.

§ … leads to DRAM AI larger than the L1 AI

Page 29: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Example: 7-point Stencil (Small Problem)

29

Cache-Aware RooflineHierarchical Roofline

Peak Flop/s

Atta

inab

le F

lop/

s

0.11Arithmetic Intensity (Flop:Byte)

0.44

Peak Flop/s

Atta

inab

le F

lop/

s

0.11Arithmetic Intensity (Flop:Byte)

Single AI based on flop:L1 bytesMultiple AI’s….1) flop:DRAM ~ 0.442) flop:L1 ~ 0.11

Observed performanceis between L1 and DRAM lines(== some cache locality)

Performance bound isthe minimum of the two

Page 30: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Example: 7-point Stencil (Large Problem)

30

Cache-Aware RooflineHierarchical Roofline

Peak Flop/s

Atta

inab

le F

lop/

s

0.11Arithmetic Intensity (Flop:Byte)

0.20

Peak Flop/s

Atta

inab

le F

lop/

s

0.11Arithmetic Intensity (Flop:Byte)

Single AI based on flop:L1 bytesMultiple AI’s….1) flop:DRAM ~ 0.202) flop:L1 ~ 0.11

Capacity misses reduceDRAM AI and performance

Observed performanceis closer to DRAM line(== less cache locality)

Page 31: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Example: 7-point Stencil (Observed Perf.)

31

Cache-Aware RooflineHierarchical Roofline

Peak Flop/s

Atta

inab

le F

lop/

s

0.11Arithmetic Intensity (Flop:Byte)

0.20

Peak Flop/s

Atta

inab

le F

lop/

s

0.11Arithmetic Intensity (Flop:Byte)

Single AI based on flop:L1 bytes

Actual observed performanceis tied to the bottlenecked resourceand can be well below a cacheRoofline (e.g. L1).

Observed performanceis closer to DRAM line(== less cache locality)

Page 32: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Example: 7-point Stencil (Observed Perf.)

32

Cache-Aware RooflineHierarchical Roofline

Peak Flop/s

Atta

inab

le F

lop/

s

0.11Arithmetic Intensity (Flop:Byte)

0.20

Peak Flop/s

Atta

inab

le F

lop/

s

Arithmetic Intensity (Flop:Byte)0.11

Single AI based on flop:L1 bytes

Actual observed performanceis tied to the bottlenecked resourceand can be well below a cacheRoofline (e.g. L1).

Observed performanceis closer to DRAM line(== less cache locality)

Page 33: Introduction to the Roofline Model · 2017-11-08 · • Log-log makes it easy to doodle, extrapolate performance along Moore’s Law, etc… • Kernels with AI less than machine

Questions?