auto ma tic a lly cha ra c te rizing l a rg e sc a le pro
play

Auto ma tic a lly Cha ra c te rizing L a rg e Sc a le Pro g ra m - PowerPoint PPT Presentation

Auto ma tic a lly Cha ra c te rizing L a rg e Sc a le Pro g ra m Be ha vio r Timothy Sherwood Erez Perelman Greg Hamerly Brad Calder T itle Ideal : To understand the effects of cycle-level events on full program execution


  1. Auto ma tic a lly Cha ra c te rizing L a rg e Sc a le Pro g ra m Be ha vio r Timothy Sherwood Erez Perelman Greg Hamerly Brad Calder

  2. T itle • Ideal : To understand the effects of cycle-level events on full program execution • Challenge : To achieve this without doing complete detailed simulation • How : Build a high-level model of program behavior that can be used in conjunction with limited detailed simulation ASPL OS : She rwo o d e t. a l. 2

  3. G o a ls • The goals of this research are: – To create an automatic system that is capable of intelligently characterizing time- varying program behavior – To provide both analytic and software tools to help with program phase identification – To demonstrate the utility of these tools for finding places to simulate (SimPoints) – Without full program detailed simulation ASPL OS : She rwo o d e t. a l. 3

  4. Our Appro a c h • Programs are neither – Completely Homogenous – nor Totally Random • Instead they are quite structured • Discover this structure • The key is the code that is executing – the code determines the program behavior ASPL OS : She rwo o d e t. a l. 4

  5. L a rg e Sc a le Be ha vio r (g zip) L2 Energy DL1 IL1 bpred IPC ASPL OS : She rwo o d e t. a l. 5

  6. So me De finitio ns • Interval is – A set of instructions that execute one after the other in program order – 100 Million Instructions • Phase is – A set of intervals with very similar behavior – Regardless of temporal adjacency ASPL OS : She rwo o d e t. a l. 6

  7. Outline • Examining the Programs • Finding Phases Automatically • Application to Efficient Simulation • Conclusions ASPL OS : She rwo o d e t. a l. 7

  8. F ing e rprinting I nte rva ls • Fingerprint each interval in program – Enabling us to build high level model • Basic Block Vector [PACT’01] – Tracks the code that is executing – Long sparse vector – 1 dimension per static basic block – Based on instruction execution frequency ASPL OS : She rwo o d e t. a l. 8

  9. Ba sic Blo c k Ve c to rs BB Assembly Code of bzip For each interval: 1 srl a2, 0x8, t4 and a2, 0xff, t12 ID: 1 2 3 4 5 . addl zero, t12, s6 BB Exec Count: <1, 20, 0, 5, 0, …> subl t7, 0x1, t7 cmpeq s6, 0x25, v0 weigh by Block Size: <8, 3, 1, 7, 2, …> cmpeq s6, 0, t0 = <8, 60, 0, 35, 0, …> bis v0, t0, v0 bne v0, 0x120018c48 Normalize to 1 = <8%,58%,0%,34%,0%,…> 2 subl t7, 0x1, t7 cmple t7, 0x3, t2 •One BBV for each interval beq t2, 0x120018b04 3 ble t7, 0x120018bb4 4 and t4, 0xff, t5 •We can now compare vectors srl t4, 0x8, t4 addl zero, t5, s6 •Start with simple manual analysis cmpeq s6, 0x25, s0 cmpeq s6, 0, a0 –Compare all N 2 pairs of intervals bis s0, a0, s0 bne s0, 0x120018c48 5 subl t7, 0x1, t7 •Enter the Similarity Matrix… gt t7, 0x120018b90 ... ... ASPL OS : She rwo o d e t. a l. 9

  10. Simila rity Ma trix • Compare N 2 intervals • Executed Instructions on Diagonal axis • To compare 2 points go horizontal from one and vertically from the other • Darker points indicate similar vectors • Clearly shows the phase-behavior ASPL OS : She rwo o d e t. a l. 10

  11. A Mo re Co mple x Ma trix - g c c • Still much structure • Dark boxes show phase-behavior • Boxes in interior show recurring phases • Strong diagonal line indicates first half is similar to second half • Manual inspection is not feasible or scalable ASPL OS : She rwo o d e t. a l. 11

  12. Outline • Examining the Programs • Finding Phases Automatically • Application to Efficient Simulation • Conclusions ASPL OS : She rwo o d e t. a l. 12

  13. F inding the Pha se s • Basic Block Vector is a point in space • The problem is to find groups of vectors/points that are all similar – Making sure that all points in a group are similar to one another – And ensuring all points that are different, are put into different groups • This is a Clustering Problem • A Phase is a Cluster of BBVectors ASPL OS : She rwo o d e t. a l. 13

  14. Pha se -finding Alg o rithm I. Profile Program and track BB Vectors II. Use the K-means algorithm to find clusters in the data for many different values of K III. Score the likelihood of each clustering IV. Pick the best clustering ASPL OS : She rwo o d e t. a l. 14

  15. I mpro ving Pe rfo rma nc e • K-means requires many manipulations – Basic Block Vectors are very long • > 100,000 for gcc; 800,000 for microsoft apps – Need to make the Vectors smaller • Still preserve relative distances • Random Projection – Multiply the vector by a random matrix – Can safely reduce down to 15 dimensions – Reduce run-time from days to minutes ASPL OS : She rwo o d e t. a l. 15

  16. E xa mple : g zip Re visite d L2 Energy DL1 IL1 bpred IPC ASPL OS : She rwo o d e t. a l. 16

  17. g zip – Pha se s Disc o ve re d L2 Energy DL1 IL1 bpred IPC ASPL OS : She rwo o d e t. a l. 17

  18. g c c - A Co mple x E xa mple L2 Energy DL1 IL1 bpred IPC ASPL OS : She rwo o d e t. a l. 18

  19. g c c – Pha se s Disc o ve re d L2 Energy DL1 IL1 bpred IPC ASPL OS : She rwo o d e t. a l. 19

  20. Outline • Examining the Programs • Finding Phases Automatically • Application to Efficient Simulation • Conclusions ASPL OS : She rwo o d e t. a l. 20

  21. E ffic ie nt Simula tio n • Simulating to completion not feasible – Detailed simulation on SPEC takes months – Cycle level effects can’t be ignored • To reduce simulation time – Simulate only a subset of the program at cycle-level accuracy – What subset you pick is very important • For accuracy and efficiency ASPL OS : She rwo o d e t. a l. 21

  22. Simula tio n Optio ns • Simulate Blind : no estimate of accuracy • Single Point : problem with complex programs that have many phases • Random Sample : high accuracy, but many sections of similar code, you will be doing a lot of redundant work • Choose Multiple Points : by examining the calculated phase information ASPL OS : She rwo o d e t. a l. 22

  23. Multiple SimPo ints • Perform phase analysis • For each phase in the program – Pick the interval most representative of the phase – This is the SimPoint for that phase • Perform detailed simulation for SimPoints • Weigh results for each SimPoint – According to the size of the phase it represents ASPL OS : She rwo o d e t. a l. 23

  24. Re sults – Ave ra g e E rro r 253% 131% 30% IPC - Average Error 25% 20% 15% 10% 5% 0% No FastFwd FastFwd Billion Single SimPoint Multiple SimPoints ASPL OS : She rwo o d e t. a l. 24

  25. Re sults – Ma x E rro r 3736% 1986% 100% IPC - Max Error 80% 60% 40% 20% 0% No FastFwd FastFwd Billion Single SimPoint Multiple SimPoints ASPL OS : She rwo o d e t. a l. 25

  26. Outline • Examining the Programs • Finding Phases Automatically • Application to Efficient Simulation • Conclusions ASPL OS : She rwo o d e t. a l. 26

  27. Co nc lusio ns • Gap between – Cycle level events – Full program effects • Exploit large scale structure – Provide high level model – Find the model with no detail simulation – In conjunction with limited detail simulation ASPL OS : She rwo o d e t. a l. 27

  28. Co nc lusio ns • Our Strategy – Take advantage of structure found in program – Summarize the structure in the form of phases – Find phases using techniques from clustering • Use this for doing efficient simulation – High accuracy – With orders of magnitude less time • http://www.cs.ucsd.edu/~sherwood ASPL OS : She rwo o d e t. a l. 28

  29. ASPL OS : She rwo o d e t. a l. 29

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend