a comprehensive study of con fl ict resolution policies
play

A Comprehensive Study of Con fl ict Resolution Policies in Hardware - PowerPoint PPT Presentation

A Comprehensive Study of Con fl ict Resolution Policies in Hardware Transactional Memory Ege Akpinar, Sasa Tomic, Adrian Cristal, Osman Unsal, M ateo Valero TRANSACT 2011 Background Eager HTM Conflict resolution especially critical in


  1. A Comprehensive Study of Con fl ict Resolution Policies in Hardware Transactional Memory Ege Akpinar, Sasa Tomic, Adrian Cristal, Osman Unsal, M ateo Valero TRANSACT 2011

  2. Background Eager HTM • Conflict resolution especially critical in eager- versioning, eager-con fl ict management HTM ) implementations since these implementations are typically optimized for commit and therefore assume that con fl icts are rare • Although conflict resolution policy plays a vital role in performance, there is not a commonly accepted policy yet 2

  3. Objective • This paper aims to – Evaluate existing conflict resolution policies – Identify and remedy performance bottlenecks that occur common during transactional executions – Propose new policies based on identified performance bottlenecks – Carry out a general comparison of existing and proposed conflict resolution policies 3

  4. Progress – Performance Bottlenecks • 5 existing performance issues (as mentioned in Performance Pathologies paper) and two new bottlenecks are described – Livelock – Deadlock – FriendlyFire – StarvingElder – FutileStall – InactiveStall – CascadingStall • Remedies are proposed 4

  5. Progress – Performance Bottlenecks Deadlock Livelock 5

  6. Progress – Performance Bottlenecks (from Pathologies paper) FriendlyFire FutileStall StarvingElder 6

  7. Progress – Performance Bottlenecks (Contributions of this paper) InactiveStall CascadingStall 7

  8. Progress – Perfect waiting and stalling • Perfect waiting : Ideal backoff algorithm where a transaction waits precisely until all conflicting transactions terminate • Perfect stalling : When a transaction (Tx1) gets aborted (due to Tx2), it restarts execution and starts waiting when it encounters a conflict with the same transaction (Tx2) 8

  9. Progress - Methodology • STAM P benchmark suite is used • Number of ticks spent during parallel sections are calculated ( number of ticks spent after the first transaction to enter that section until the last transaction to exit that section) • Speedup is calculated using number of ticks compared to that of single core executions 9

  10. Baseline policy • Very simple, can be achieved by small modifications to cache protocol • A transaction that fails to retrieve a cache line (likely because it has already been retrieved by another transaction) aborts itself 10

  11. Timestamp policy variations Timestamp : Time when a transaction begins execution • A transaction’s timestamp is maintained until commit (thus, it doesn’t reset after abort or stall) • Comparison of timestamps yield which transaction is older/ younger (has begun earlier/ later) 11

  12. Timestamp policy variations • 5 timestamp policies are tested • Variations tackle – Deadlock – Livelock – StarvingElder – InactiveStall – CascadingStall – FriendlyFire • Perfect stalling improved results significantly 12

  13. Size policy variations Size : Summation of read-set and write-set • If an element is present in both read-set and write-set, it contributes twice to size • Size is a good indicator of amount of work done since work typically consists of memory accesses (reads/ writes) Largeness factor: A transaction is deemed larger than another only if its size exceeds the other transaction’s size by a largeness factor 13

  14. Size policy variations • 3 categories of policies are tested • Variations tackle – Deadlock – Livelock – StarvingElder – FutileStall – InactiveStall – CascadingStall – FriendlyFire • A largeness factor of 1.25 performed the best 14

  15. Prioritization policy variations • Prioritization is based on – Number of stalled transactions (by a transaction) – Number of aborted transactions (by a transaction) • Primarily aims to avoid bottlenecks FutileStall and CascadingStall FutileStall CascadingStall 15

  16. Prioritization policy variations • 5 prioritization policies are tested • Variations tackle – Deadlock – Livelock – InactiveStall – FutileStall – CascadingStall • Results are highly variable among different applications 16

  17. Alternating Priorities Policy Alternating Priorities : Transactions alternate priorities in pairs. Eg. Tx1 gets aborted by Tx2. When they conflict again, Tx1 will abort Tx2. • Designed for fairness, rather than performance • M easured performance and scalability is good 17

  18. Results • Overall, performance increase (from baseline policy) of 5-10 % was measured, amounting up to 15% 18

  19. Results 19

  20. Conclusion • Conflict resolution is a vital characteristic for performance • Taking into common performance bottlenecks into consideration has an important effect on performance • It is difficult to identify a single resolution policy as the globally best performer since performance varies greatly with application characteristics • Transactional M emory will be realized only if its performance promises are solid; therefore, conflict resolution is an important research space 20

  21. Timestamp policies Timestamp1: At con fl icts, older transactions abort the younger ones and carry on • execution (no stall). Timestamp-2: At con fl icts, older transactions start waiting on younger • transactions (stall). However, when a younger transaction requests a cache line that is owned by an already stalled older transaction, younger transaction aborts itself (in order to avoid deadlock) and begins perfect waiting. • Timestamp-3: (StarvingElder remedy) For every transaction, a "committed after me" list is maintained. When a transaction commits, that transaction’s thread is added to the "committed after me“ list of all transactions that are active, aborted or stalled. A transaction’s "committed after me" list is reset after its every commit. At con fl icts, transactions whose threads are present in "committed after me" list of con fl icting transactions are aborted. Timestamp-4: Same as Timestamp-3 con fi guration except for its InactiveStall • policy. Instead of aborting the younger transaction, older transaction is aborted at InactiveStall case. • Timestamp-5: Naïve timestamp and stall policy (Timestamp-2) with perfect stalling enhancement.

  22. Size policies Size-1 At con fl icts, larger transactions take over and smaller • con fl icting transactions are aborted. There is no stalling. Size-2 At con fl icts, larger transactions are favored. However, • at con fl icts, owner of the con fl icting cache line is allowed to resume execution regardless of its size. When a transaction requests a cache line from a larger stalled transaction, it aborts itself and restarts execution. When the aborted transaction again con fl icts with the same larger transaction, it is stalled (perfect stalling). Size-3 At con fl icts, larger transactions are favored. However, • at con fl icts, owner of the con fl icting cache line is allowed to resume execution regardless of its size. When a transaction requests a cache line from a larger stalled transaction, small transaction aborts itselfand starts perfect waiting.

  23. Priority policies • Priority-1 Transactions gain priority when they stall other transactions. When a transaction requests to acquire a cache line that is already acquired by another transaction and if their priorities are equal, then the current owner is allowed to continue execution. • Priority-2 Transactions gain priority as they stall other transactions. In addition, transactions lose priority as they abort other transactions. • Priority-3 Similar to Priority-2. However, transactions gain (not lose) priority as they abort other transactions. Priority-4 Similar to Priority-1. At con fl icts, if a transaction loses, it aborts • instead of stalling. • Priority-5 Similar to Priority-1, transactions gain priority as they tall others. However, priority is a measure calculated using the number of transactions in con fl ict. For instance, when a transaction gets stalled due to a con fl ict with n transactions, all n transactions gain 1/ n priority.

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