Top Banner
Code Optimization and Performance Chapter 5 Chapter 5 CS 105 “Tour of the Black Holes of Computing”
37

Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

Mar 30, 2015

Download

Documents

Isaiah Drewry
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

Code Optimization and Performance

Code Optimization and Performance

Chapter 5Chapter 5

CS 105“Tour of the Black Holes of Computing”

Page 2: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 2 – CS 105

TopicsTopics

Machine-independentMachine-independent optimizationsoptimizations

Code motion Reduction in strength Common subexpression

sharing

Tuning: Tuning: Identifying performance bottlenecks

Machine-dependent optimizations

Pointer code Loop unrolling Enabling instruction-level

parallelism

Understanding processor optimization

Translation of instructions into operations

Out-of-order execution

Branches

Caches and Blocking

Advice

Page 3: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 3 – CS 105

Speed and optimizationSpeed and optimization

ProgrammerProgrammer Choice of algorithm Intelligent coding

CompilerCompiler Choice of instructions Moving code Reordering code Strength reduction Must be faithful to

original program

ProcessorProcessor Pipelining Multiple execution units Memory accesses Branches Caches

Rest of systemRest of system Uncontrollable

Page 4: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 4 – CS 105

Great Reality #4Great Reality #4

There’s more to performance thanThere’s more to performance than

asymptotic complexityasymptotic complexity

Constant factors matter too!Constant factors matter too! Easily see 10:1 performance range depending on how code

is written Must optimize at multiple levels:

Algorithm, data representations, procedures, and loops

Must understand system to optimize performanceMust understand system to optimize performance How programs are compiled and executed How to measure program performance and identify

bottlenecks How to improve performance without destroying code

modularity, generality, readability

Page 5: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 5 – CS 105

Optimizing CompilersOptimizing Compilers

Provide efficient mapping of program to machineProvide efficient mapping of program to machine Register allocation Code selection and ordering Eliminating minor inefficiencies

Don’t (usually) improve asymptotic efficiencyDon’t (usually) improve asymptotic efficiency Up to programmer to select best overall algorithm Big-O savings are (often) more important than constant

factorsBut constant factors also matter

Have difficulty overcoming “optimization blockers”Have difficulty overcoming “optimization blockers” Potential memory aliasing Potential procedure side effects

Page 6: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 6 – CS 105

Limitationsof Optimizing CompilersLimitationsof Optimizing CompilersOperate Under Fundamental ConstraintOperate Under Fundamental Constraint

Must not cause any change in program behavior under any possible condition

Often prevents making optimizations that would only affect behavior under pathological conditions

Behavior that may be obvious to the programmer can be Behavior that may be obvious to the programmer can be obfuscated by languages and coding stylesobfuscated by languages and coding styles E.g., data ranges may be more limited than variable types suggest

Most analysis is performed only within proceduresMost analysis is performed only within procedures Whole-program analysis is too expensive in most cases

Most analysis is based only on Most analysis is based only on staticstatic information information Compiler has difficulty anticipating run-time inputs

When in doubt, the compiler must be conservativeWhen in doubt, the compiler must be conservative

Page 7: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 7 – CS 105

New Topic:Machine-Independent OptimizationsNew Topic:Machine-Independent Optimizations

Optimizations you should do regardless of processor / compiler

Code MotionCode Motion Reduce frequency with which computation performed

If it will always produce same resultEspecially moving code out of loop

for (i = 0; i < n; i++) for (j = 0; j < n; j++) a[n*i + j] = b[j];

for (i = 0; i < n; i++) { int ni = n*i; for (j = 0; j < n; j++) a[ni + j] = b[j];}

Page 8: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 8 – CS 105

Compiler-Generated Code MotionCompiler-Generated Code Motion Most compilers do a good job with array code + simple loop

structures

Code Generated by GCCCode Generated by GCCfor (i = 0; i < n; i++) for (j = 0; j < n; j++) a[n*i + j] = b[j];

imull %ebx,%eax # i*n movl 8(%ebp),%edi # a leal (%edi,%eax,4),%edx # p = a+i*n (scaled by 4)# Inner Loop.L40: movl 12(%ebp),%edi # b movl (%edi,%ecx,4),%eax # b+j (scaled by 4) movl %eax,(%edx) # *p = b[j] addl $4,%edx # p++ (scaled by 4) incl %ecx # j++ cmpl %ebx,%ecx # j : n (reversed) jl .L40 # loop if j<n

for (i = 0; i < n; i++) { int ni = n*i; int *p = a+ni; for (j = 0; j < n; j++) *p++ = b[j];}

Page 9: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 9 – CS 105

Strength ReductionStrength Reduction

Replace costly operation with simpler one Shift, add instead of multiply or divide

16*x --> x << 4Utility is machine-dependentDepends on cost of multiply or divide instructionOn Pentium II or III, integer multiply only requires 4 CPU cycles

Recognize sequence of products

for (i = 0; i < n; i++) for (j = 0; j < n; j++) a[n*i + j] = b[j];

int ni = 0;for (i = 0; i < n; i++) { for (j = 0; j < n; j++) a[ni + j] = b[j]; ni += n;}

Page 10: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 10 – CS 105

Make Use of RegistersMake Use of Registers

Reading and writing registers much faster than reading/writing memory

LimitationLimitation Compiler not always able to determine whether variable can

be held in register Possibility of aliasing See example later

Page 11: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 11 – CS 105

Machine-Independent Opts. (Cont.)Machine-Independent Opts. (Cont.)Share Common SubexpressionsShare Common Subexpressions

Reuse portions of expressions Compilers often unsophisticated about exploiting arithmetic

properties/* Sum neighbors of i,j */up = val[(i-1)*n + j];down = val[(i+1)*n + j];left = val[i*n + j-1];right = val[i*n + j+1];sum = up + down + left + right;

int inj = i*n + j;up = val[inj - n];down = val[inj + n];left = val[inj - 1];right = val[inj + 1];sum = up + down + left + right;

3 multiplications: i*n, (i–1)*n, (i+1)*n 1 multiplication: i*n

leal -1(%edx),%ecx # i-1 imull %ebx,%ecx # (i-1)*n leal 1(%edx),%eax # i+1 imull %ebx,%eax # (i+1)*n imull %ebx,%edx # i*n

Page 12: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 12 – CS 105

Example: Vector ADTExample: Vector ADT

ProceduresProceduresvec_ptr new_vec(int len)

Create vector of specified length

int get_vec_element(vec_ptr v, int index, int *dest)Retrieve vector element, store at *destReturn 0 if out of bounds, 1 if successful

int *get_vec_start(vec_ptr v)Return pointer to start of vector data

Similar to array implementations in Pascal, ML, JavaE.g., always do bounds checking

lengthdata

0 1 2 length–1

Page 13: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 13 – CS 105

Optimization ExampleOptimization Example

ProcedureProcedure Compute sum of all elements of vector Store result at destination location What’s the Big-O of this code?

void combine1(vec_ptr v, int *dest){ int i; *dest = 0; for (i = 0; i < vec_length(v); i++) { int val; get_vec_element(v, i, &val); *dest += val; }}

Page 14: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 14 – CS 105

Time ScalesTime Scales

Absolute TimeAbsolute Time Typically use nanoseconds

10–9 seconds

Time scale of computer instructions (Picoseconds coming soon)

Clock CyclesClock Cycles Most computers controlled by high-frequency clock signal Typical range 1-3 GHz

1-3 109 cycles per secondClock period = 1 ns to 0.3 ns (333 ps)

Page 15: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 15 – CS 105

Cycles Per ElementCycles Per Element Convenient way to express performance of program that

operators on vectors or lists Length = n T = CPE*n + overhead

0

100

200

300

400

500

600

700

800

900

1000

0 50 100 150 200

Elements

Cy

cle

s

vsum1Slope = 4.0

vsum2Slope = 3.5

Page 16: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 16 – CS 105

Optimization ExampleOptimization Example

ProcedureProcedure Compute sum of all elements of integer vector Store result at destination location Vector data structure and operations defined via abstract data type

Pentium II/III Performance: Clock Cycles / ElementPentium II/III Performance: Clock Cycles / Element 42.06 (Compiled -g); 31.25 (Compiled -g -O2)

void combine1(vec_ptr v, int *dest){ int i; *dest = 0; for (i = 0; i < vec_length(v); i++) { int val; get_vec_element(v, i, &val); *dest += val; }}

Page 17: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 17 – CS 105

Move vec_length CallOut of LoopMove vec_length CallOut of Loop

OptimizationOptimization Move call to vec_length out of inner loop

Value does not change from one iteration to nextCode motion

CPE: 20.66 (Compiled -O2) vec_length requires only constant time, but significant overhead

void combine2(vec_ptr v, int *dest){ int i; int length = vec_length(v); *dest = 0; for (i = 0; i < length; i++) { int val; get_vec_element(v, i, &val); *dest += val; }}

Page 18: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 18 – CS 105

void lower(char *s){ int i; for (i = 0; i < strlen(s); i++) if (s[i] >= 'A' && s[i] <= 'Z') s[i] -= ('A' - 'a');}

Code Motion Example #2Code Motion Example #2

Procedure to Convert String to LowercaseProcedure to Convert String to Lowercase

Extracted from many beginners' C programs (Note: only works for ASCII, not extended characters)

Page 19: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 19 – CS 105

Lowercase-Conversion PerformanceLowercase-Conversion Performance

Time quadruples when double string length Quadratic performance

lower1

0

0.5

1

1.5

2

256 512 1024 2048 4096 8192 16384 32768 65536 131072 262144

String Length

CPU

Seco

nds

Page 20: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 20 – CS 105

Lowercase-Conversion PerformanceLowercase-Conversion Performance

Time quadruples when double string length Quadratic performance

lower1

0

50

100

150

200

250

300

350

400

256 512 1024 2048 4096 8192 16384 32768 65536 131072 262144

String Length

CPU

Sec

onds

Page 21: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 21 – CS 105

Improving PerformanceImproving Performance

Move call to strlen outside of loopSince result does not change from one iteration to next

Form of code motion

void lower(char *s){ int i; int len = strlen(s); for (i = 0; i < len; i++) if (s[i] >= 'A' && s[i] <= 'Z') s[i] -= ('A' - 'a');}

Page 22: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 22 – CS 105

Lowercase-Conversion PerformanceLowercase-Conversion Performance

Time doubles when double string length Linear performance

00.0010.0020.0030.0040.0050.0060.0070.0080.009

0.01

256 512 1024 2048 4096 8192 16384 32768 65536 131072 262144

String Length

CP

U S

eco

nd

s

lower1 lower2

Page 23: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 23 – CS 105

Optimization Blocker:Procedure CallsOptimization Blocker:Procedure CallsWhy couldn’t the compiler move Why couldn’t the compiler move vec_lenvec_len or or strlenstrlen out of the out of the

inner loop?inner loop? Procedure might have side effects

Alters global state each time called

Function might not return same value for given argumentsDepends on other parts of global stateProcedure lower could interact with strlen

Why doesn’t compiler look at code for Why doesn’t compiler look at code for vec_lenvec_len or or strlenstrlen?? Linker may overload with different version

Unless declared static

Interprocedural optimization is not extensively used, due to cost

Warning:Warning: Compiler treats procedure call as a black box Weak optimizations in and around them

Page 24: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 24 – CS 105

Reduction in StrengthReduction in Strength

OptimizationOptimization Avoid procedure call to retrieve each vector element

Get pointer to start of array before loopWithin loop just do pointer referenceNot as clean in terms of data abstraction

CPE: 6.00 (Compiled -O2) (down from 20.66)Procedure calls are expensive!Bounds checking is expensive

void combine3(vec_ptr v, int *dest){ int i; int length = vec_length(v); int *data = get_vec_start(v); *dest = 0; for (i = 0; i < length; i++) { *dest += data[i];}

Page 25: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 25 – CS 105

Eliminate Unneeded Memory RefsEliminate Unneeded Memory Refs

OptimizationOptimization Don’t need to store in destination until end Local variable sum held in register Avoids 1 memory read, 1 memory write per cycle CPE: 2.00 (Compiled -O2)

Memory references are expensive!

void combine4(vec_ptr v, int *dest){ int i; int length = vec_length(v); int *data = get_vec_start(v); int sum = 0; for (i = 0; i < length; i++) sum += data[i]; *dest = sum;}

Page 26: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 26 – CS 105

Detecting Unneeded Memory Refs.Detecting Unneeded Memory Refs.

PerformancePerformance Combine3

5 instructions in 6 clock cycles addl must read and write memory

Combine44 instructions in 2 clock cycles

.L18:movl (%ecx,%edx,4),%eaxaddl %eax,(%edi)incl %edxcmpl %esi,%edxjl .L18

Combine3

.L24:addl (%eax,%edx,4),%ecx

incl %edxcmpl %esi,%edxjl .L24

Combine4

Page 27: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 27 – CS 105

Optimization Blocker:Memory AliasingOptimization Blocker:Memory AliasingAliasingAliasing

Two different memory references specify single location

ExampleExample v: [3, 2, 17] combine3(v, get_vec_start(v)+2) --> ? combine4(v, get_vec_start(v)+2) --> ?

ObservationsObservations Easy to have happen in C

Since allowed to do address arithmeticDirect access to storage structures

Get into habit of introducing local variablesAccumulating within loopsYour way of telling compiler not to check for aliasing

Page 28: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 28 – CS 105

Machine-Independent OptimizationSummaryMachine-Independent OptimizationSummary

Code MotionCode Motion Compilers are good at this for simple loop/array structures Don’t do well in presence of procedure calls and memory aliasing

Reduction in StrengthReduction in Strength Shift, add instead of multiply or divide

Compilers are (generally) good at thisExact trade-offs machine-dependent

Keep data in registers rather than memoryCompilers are not good at this, since concerned with aliasing

Share Common SubexpressionsShare Common Subexpressions Compilers have limited algebraic reasoning capabilities

Page 29: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 29 – CS 105

Pointer CodePointer Code

OptimizationOptimization Use pointers rather than array references CPE: 3.00 (Compiled -O2)

Oops! We’re not making progress here!

Warning: Some compilers do better job optimizing array code

void combine4p(vec_ptr v, int *dest){ int length = vec_length(v); int *data = get_vec_start(v); int *dend = data+length; int sum = 0; while (data < dend) { sum += *data; data++; } *dest = sum;}

Page 30: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 30 – CS 105

Pointer vs. Array CodeInner LoopsPointer vs. Array CodeInner LoopsArray CodeArray Code

Pointer CodePointer Code

PerformancePerformance Array Code: 4 instructions in 2 clock cycles Pointer Code: Almost same 4 instructions in 3 clock cycles

.L24: # Loop:addl (%eax,%edx,4),%ecx # sum += data[i]incl %edx # i++cmpl %esi,%edx # i:lengthjl .L24 # if < goto Loop

.L30: # Loop:addl (%eax),%ecx # sum += *dataaddl $4,%eax # data ++cmpl %edx,%eax # data:dendjb .L30 # if < goto Loop

Page 31: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 31 – CS 105

Important ToolsImportant Tools

MeasurementMeasurement Accurately compute time taken by code

Most modern machines have built in cycle countersUsing them to get reliable measurements is tricky

Profile procedure calling frequenciesUnix tool gprof

ObservationObservation Generate assembly code

Lets you see what optimizations compiler can makeUnderstand capabilities/limitations of particular compiler

Page 32: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 32 – CS 105

New Topic:Code Profiling ExampleNew Topic:Code Profiling Example

TaskTask Count word frequencies in text document Produce sorted list of words from most frequent to least

StepsSteps Convert strings to lowercase Apply hash function Read words and insert into hash table

Mostly list operationsMaintain counter for each unique word

Sort results

Data SetData Set Collected works of Shakespeare 946,596 total words, 26,596 unique Initial implementation: 9.2 seconds

29,80129,801 thethe

27,52927,529 andand

21,02921,029 II

20,95720,957 toto

18,51418,514 ofof

15,37015,370 aa

14,01014,010 youyou

12,93612,936 mymy

11,72211,722 inin

11,51911,519 thatthat

Shakespeare’s

most frequent words

Page 33: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 33 – CS 105

Code ProfilingCode ProfilingAugment executable program with timing functionsAugment executable program with timing functions

Computes (approximate) amount of time spent in each function

Time-computation method is inaccuratePeriodically (~ every 1 ms or 10ms) interrupt programDetermine what function is currently executing Increment its timer by interval (e.g., 10ms)

Also maintains counter for each function indicating number of times called

UsingUsinggcc –O2 –pg prog.c –o prog

./progExecutes in normal fashion, but also generates file gmon.out

gprof progGenerates profile information based on gmon.out

Page 34: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 34 – CS 105

Profiling ResultsProfiling Results

Call StatisticsCall Statistics Number of calls and cumulative time for each function

Performance LimiterPerformance Limiter Using inefficient sorting algorithm Single call uses 87% of CPU time

% cumulative self self total time seconds seconds calls ms/call ms/call name 86.60 8.21 8.21 1 8210.00 8210.00 sort_words 5.80 8.76 0.55 946596 0.00 0.00 lower1 4.75 9.21 0.45 946596 0.00 0.00 find_ele_rec 1.27 9.33 0.12 946596 0.00 0.00 h_add

Page 35: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 35 – CS 105

Code OptimizationsCode Optimizations

First step: Use more efficient sorting function Library function qsort

0

1

2

3

4

5

6

7

8

9

10

Initial Quicksort Iter First Iter Last Big Table Better Hash Linear Lower

CP

U S

ec

s. Rest

Hash

Lower

List

Sort

Page 36: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 36 – CS 105

Further OptimizationsFurther Optimizations

Iter first: Use iterative function to insert elements into linked listCauses code to slow down

Iter last: Iterative function, places new entry at end of listTend to place most common words at front of list

Big table: Increase number of hash buckets Better hash: Use more sophisticated hash function Linear lower: Move strlen out of loop

0

0.2

0.4

0.6

0.8

1

1.2

1.4

1.6

1.8

2

Initial Quicksort Iter First Iter Last Big Table Better Hash Linear Lower

CP

U S

ec

s. Rest

Hash

Lower

List

Sort

Page 37: Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.

– 37 – CS 105

Profiling ObservationsProfiling Observations

BenefitsBenefits Helps identify performance bottlenecks Especially useful when have complex system with many

components

LimitationsLimitations Only shows performance for data tested E.g., linear lower did not show big gain, since words are

shortQuadratic inefficiency could remain lurking in code

Timing mechanism fairly crudeOnly works for programs that run for > 3 seconds