Download presentation
Presentation is loading. Please wait.
Published byMadison Malone Modified over 11 years ago
1
Feedback-Driven Pipelining 11 M. Aater Suleman* Moinuddin K. Qureshi Khubaib* Yale Patt* *HPS Research Group The University of Texas at Austin IBM T.J. Watson Research Center
2
22 Background To leverage CMPs, p rograms must be parallelized Pipeline parallelism: –Split each loop iteration into multiple stages –Each stage can be assigned more than one core or multiple stages can share a core Pipeline Parallelism applicable to variety of workloads –Streaming [ Gordon+ ASPLOS06 ] –Recognition, Synthesis and Mining [ Bienia+ PACT08 ] –Compression/Decompression [ Intel TBB 2009 ]
3
3 Pipeline Parallelism Example Search String First, it reads a candidate string. >> Next, it compares the candidate string with the search string to compute similarity >>> Last, it inserts the candidate string into a heap sorted based on similarity. If after the insertion, the heap has more than N elements, it removes the smallest element from the heap. Once the kernel has iterated through all input strings,>>> the heap contain the closest N strings. This kernel can be implemented as a 3- stage pipeline with stages S1, S2, and S3.>>> Note that Stage S2 is scalable because multiple strings can be compared concurrently., However, S3 is non- scalable since only one thread can be allowed to updated the shared heap. >>> For simplicity, lets assume that the three stages respectively execute for 5, 20, and 10 time units when run as a single thread>>> abssdfkjedwekjwersafsdfsDFSADFkjwelrk Similarity score: Find the N most similar strings to a given search string S1: Read S2: Compare S3: Insert 9 7 6 3 5 N-entry sorted on Similarity Score QUEUE1 QUEUE2
4
4 0 NumCores = 1 510152025303540 Key Problem: Core to Stage Allocation S1: Read (1 time unit) S2: Compare (4 time units) S3: Insert (1 time unit) 45 1 core/stage NumCores = 3 2 cores/stage NumCores = 6 Best Alloc. (steady state) NumCores = 6 Allocation impacts both power and performance: -Assigning few cores to a stage can reduce performance -Assigning more cores than needed wastes power Core-to-stage allocation must be chosen carefully
5
Best Core-to-Stage Allocation Best allocation depends on relative throughput and scalability of each stage Scalability and throughput varies with input set and machine Profile-based and compile-time solutions are sub-optimal Millions of possible allocations even for shallow pipelines e.g. 8 stage can be allocated to 32 cores in 2.6M ways (integer allocation) Brute-force searching of best allocation is impractical 5 Goal: Automatically find the best core-to-stage allocation at run-time taking into account the input set, machine configuration, and scalability of stages
6
66 Outline Motivation Feedback-Driven Pipelining Case Study Results Conclusions
7
7 Key Insights Pipeline performance is limited by the slowest stage: LIMITER LIMITER stage can be identified by measuring the execution time of each stage using existing cycle counters Scalability of a stage can be estimated using hill-climbing, i.e., continue to give cores until performance stops increasing Non-limiter stages can share cores as long as allocating them the same core does not make them slower than the LIMITER –Saved cores can be assigned to LIMITER or switched off to save power
8
8 Feedback-Driven Pipelining (FDP) Add a core to the current LIMITER Improves Combine fastest stages on one core No Assign One Core per Stage Available cores? Performance? Same Yes Degrades Take one core from LIMITER, Save Power
9
9 Required Support FDP uses Instructions to read the Time Stamp Counter (rdtsc) Software: Modify worker thread to call FDP library functions FDP_Init() While(!DONE) stage_id = FDP_InitStage() Pop a work quanta FDP_BeginStage (stage_id) Run stage FDP_EndStage(stage_id) Push the iteration to the in-queue of next stage
10
Performance Considerations All required data structures are maintained in software and only use virtual memory Training data is collected by reading the cycle counter at the start and end of each stages execution –We reduce overhead by sampling only 1/128 iterations –Training can continue seamlessly at all times FDP algorithm runs infrequently – once every 2000 iterations Each allocation is tried only once to ensure convergence – almost zero-overhead once converged 10
11
11 Outline Motivation Feedback-Driven Pipelining Case Study Results Conclusions
12
12 Experimental Methodology Measurements taken on an Intel-based 8-core SMP (2xCore2Quad chips) Nine pipeline workloads from various domains Evaluated configurations: FDP Profile-based Proportional Allocation Total execution times measured using the Linux time utility (expts. repeated to reduce randomness due to I/O and OS)
13
FDP gives more cores to S3 FDP gives even more cores to S3 13 Case Study I: compress LIMITER FDP combines stages to free up cores Optimized execution
14
14 Outline Motivation Feedback-Driven Pipelining Case Study Results Conclusions
15
15 Performance Speedup WRT 1-core On Avg, Profile-Based provides 2.86x speedup and FDP 4.3x speedup
16
16 Robustness to input set Speedup WRT 1-core (Input set hard to compress) S3 stage now takes 80K-140K cycles instead of 2.4M cycles S5 (writing output to files) takes 80K cycles too and is non-scalable
17
17 Savings in Active Cores Number of Active Cores FDP not only improves performance but can save power too!
18
18 Scalability to Larger Systems Speedup WRT 1-core Larger machine: 16-core system (4x AMD Barcelona) Evaluating Profile-Based is Impractical (Several thousand configs.) FDP provides 6.13x (vs. 4.3x with Prop.). FDP also saves power (11.5 active cores vs. 16 with Prop.)
19
19 Outline Motivation Feedback-Driven Pipelining Case Study Results Conclusions
20
20 Conclusions Pipelined parallelism applicable to wide variety of workloads –Key problem: How many cores to assign to each stage? Our insight: performance limited by slowest stage: LIMITER Our proposal FDP identifies LIMITER stage at runtime using existing performance counters FDP uses a hill-climbing algorithm to estimate stage scalability FDP finds the best core-to-stage allocation successfully –Speedup of 4.3x vs. 2.8x with practical profile-based –Robust to input set and scalable to larger machines –Can be used to save power when LIMITER does not scale
21
21 Questions
22
22 Related Work Flextream –Hormati+ (PACT 2009) –Does not take stage scalability into account –Requires dynamic recompilation Compile-time tuning of pipeline workloads: –Navarro+ (PACT 2009, ICS 2009), Liao+ (JS 2005), Gonzalez+ (Parallel Computing 2003) Profile Based Allocation in Domain Specific apps.
23
23 Feedback-Driven Pipelining (FDP) Add a core to the current limiter Combine fastest stages on one core No Assign One Core per Stage Available cores? Performance? Yes Degrades Undo change Seen before? No Seen before? Undo change Degrades Yes
24
24 FDP for Work Sharing Model FDP Performs similar to WorkSharing with Best number of threads!
25
25 Data Structures for FDP
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.