inevitability mechanisms for inevitability mechanisms for
play

Inevitability Mechanisms for Inevitability Mechanisms for Software - PowerPoint PPT Presentation

Inevitability Mechanisms for Inevitability Mechanisms for Software Transactional Memory Software Transactional Memory Michael Spear (Rochester) Maged Michael (IBM) Michael Scott (Rochester) Why Inevitability Why Inevitability


  1. Inevitability Mechanisms for Inevitability Mechanisms for Software Transactional Memory Software Transactional Memory Michael Spear (Rochester) Maged Michael (IBM) Michael Scott (Rochester)

  2. Why Inevitability Why Inevitability • Irreversible operations (I/O) – Especially “I after O” – Bufferable output when order matters or interleaving is forbidden – Preserves local reasoning about correctness • “atomic” means “all or nothing” and “all at once” • Non-transactional code – Precompiled libraries (if binary rewriting is not available) – Lock-based code – Syscalls that change kernel state • Speed – Turn off read/write instrumentation – e.g. matrix math Inevitability Mechanisms for STM 2

  3. Caveats Caveats • Condition Synchronization – Inevitable code can synchronize up to first potentially irreversible operation – Or at any point before becoming inevitable – Or via a special (limited applicability) closed nested transaction – All but last option are statically checkable (future work) • Library code – Unpredictable read/write sets may dictate mechanism – May need inevitable prefetching – Indirection-based backends cause problems • I/O deadlocks remain – Inevitable blocking read from empty pipe by T1 before inevitable write to same pipe by T2 Inevitability Mechanisms for STM 3

  4. How to Achieve Inevitability How to Achieve Inevitability • Only permit one inevitable transaction at a time • Don’t let it abort – No explicit aborts: use eager locking, in-place update, augmented CM – No self aborts – No implicit aborts • Concurrent writer cannot commit changes to locations read by active inevitable transaction • This is the hard part • Note: concurrent writer can’t commit if its read set overlaps with inevitable transaction’s write set Inevitability Mechanisms for STM 4

  5. Inevitability Mechanisms Inevitability Mechanisms • No concurrency – Global Read/Write Lock (GRL) • Concurrent readers – Global Write Lock (GWL) – Global Write Lock with Fence (GWL + Fence) – Drain Note: Drain, GRL, and • Concurrent writers GWL+Fence may delay – Inevitable Read Locks (IRL) at inevitability point – Inevitable Read Filter (Filter) • See the paper for implementation details Inevitability Mechanisms for STM 5

  6. Sources of Latency Sources of Latency Inev Inev Inev Inev Tx Non-Inev Read Write Read Comm Begi Commit Instr Instr Loggin it n g GRL WB R GWL Wait Acquir Test e GWL Store WB Test + R Fenc e Drain Store CAS 2 CASes (writers only) Inevitability Mechanisms for STM 6

  7. Suitability to Tasks Suitability to Tasks • Library / Syscall with unpredictable write set – GRL • Library / Syscall with unpredictable read set – Drain, GWL+Fence, GRL • Short inevitable transactions with likely conflicts – GWL • Short inevitable transactions with few conflicts – IRL, Bloom • Long but infrequent inevitable transactions – GWL+Fence • Long, frequent inevitable transactions – Drain Inevitability Mechanisms for STM 7

  8. Evaluation Evaluation • In the paper: microbenchmarks – Only Drain increases latency of short non-inevitable transactions – GWL and “small” Filter flat-line a scalable benchmark – Drain starts higher, but dampens scaling – Fences are relatively fair, but don’t accelerate workloads with >1 thread – For big tasks, Drain is a good accelerator • In this talk: a new benchmark – Asynchronous OpenGL 3-D rendering – Joint work with Michael Silverman and Luke Dalessandro Inevitability Mechanisms for STM 8

  9. Why Write a New Benchmark? Why Write a New Benchmark? • Today’s programs written by today’s programmers – Trained to think about critical sections, locking, deadlock, and mutual exclusion • Who writes tomorrow’s programs? – We hope they will think about transactions, rollback, conflicts, and atomicity • Social experiment: get a smart undergraduate to write code with (moderate) supervision – Takes a couple of iterations to get the code “right” – But the programmer has a different (more transaction- friendly) philosophy – The result will probably have some relation to a game  Inevitability Mechanisms for STM 9

  10. A 3-D OpenGL Scene Graph A 3-D OpenGL Scene Graph • Animated Multisegment Objects (AMOs) – Big transaction does physics, animation, collision detection – Not a “read then write” transaction – Collision detection with anything that is “close” • Gravity Emitting Objects (GEOs) – Not animated, don’t have initial velocity, but do collision detection – Attract AMOs • Game: rescue AMOs before they fall into a GMO (about 2 minutes) • Benchmark: nobody playing the game, 500 AMOs, 10 GEOs Inevitability Mechanisms for STM 10

  11. Screenshot: Early in Simulation Screenshot: Early in Simulation Inevitability Mechanisms for STM 11

  12. Screenshot: AMOs AMOs Converging Converging Screenshot: Inevitability Mechanisms for STM 12

  13. Thread Configuration Thread Configuration • One thread continuously renders – Read AMOs in transactions to render new frame, then make an OpenGL call • All other threads continuously update AMOs / GEOs – Simulate physics based on time • Inevitable rendering or inevitable AMO updates – Without inevitability, renderer must explicitly buffer reads to ensure consistency – With inevitability, can aggressively batch renderer’s reads • “Best” choice is a function of the number of cores – Frame rate is decoupled from update rate, so higher not always better – Ideally, update rate ≈ frame rate ≈ screen refresh rate Inevitability Mechanisms for STM 13

  14. Environment Environment • Code – Uses new RSTM v2 API for word-based STMs – TL2-like back-end – Open source (will release soon) • Platform – Visual C++ 2005, Windows Vista (32-bit) • Also OS X, Linux versions – 2.6 GHz Q6600 (quad core), 4 GB RAM – NVIDIA 8800 GTS Inevitability Mechanisms for STM 14

  15. Rendering (FPS) Rendering (FPS) 200 180 160 Frames Per Second 140 120 100 80 60 40 20 0 None IRL Bloom Bloom Bloom Drain GWL GWL + GRL (L) (M) (S) TFence Inev Render 1 Inev Render 10 Inev Update 1 • Fences hurt • 60 FPS is the refresh rate • Do updaters impede • Inevitable render overheads renderer? Inevitability Mechanisms for STM 15

  16. AMO Commits per Second AMO Commits per Second 22,000 20,000 18,000 AMO Updates Per Second 16,000 14,000 12,000 10,000 8,000 6,000 4,000 2,000 0 None IRL Bloom Bloom Bloom Drain GWL GWL + GRL (L) (M) (S) TFence Inev Render 1 Inev Render 10 Inev Update 1 • No writer commit != blocked • Desire 30,000 commits • GWL starves, fences don’t • Bloom filter precision Inevitability Mechanisms for STM 16

  17. Conclusions Conclusions • Mechanisms have benefits and drawbacks – We think the mechanisms can compose – Many are also applicable to HTM, HyTM • If transactions are for the masses, inevitability is crucial – Local (and simple) reasoning about correctness – Need not sacrifice concurrency • New open-source OpenGL benchmark to further our understanding of transactions and inevitability Inevitability Mechanisms for STM 17

  18. Questions / Discussion Questions / Discussion

  19. Supplemental Slides Supplemental Slides

  20. Global Read/Write Lock Global Read/Write Lock • Acquire exclusive permission to read / write shared locations – Independent of orecs • Must wait for clean-up – Otherwise, would have to instrument reads and writes • Concurrent readers won’t detect conflicts, so they can’t run • State of the art for STM Inevitability Mechanisms for STM 20

  21. Read-Only Concurrency (1/2) Read-Only Concurrency (1/2) • Global Write Lock – Acquire exclusive permission to write shared locations • Update metadata when writing • With commit-time locking, writers can run up to commit point – No waiting, but instrument reads to handle delayed cleanup – Rapid succession of inevitable transactions can starve big concurrent writers • Global Write Lock + Fence – Wait for cleanup after becoming inevitable • No risk of delayed cleanup… no read instrumentation for inevitable transaction • Inevitable transaction acquires with stores, not CASes Inevitability Mechanisms for STM 21

  22. Read-Only Concurrency (2/2) Read-Only Concurrency (2/2) • The Drain – Like a fair reader-writer lock • Inevitable transaction is “writer” • Concurrent writer transactions are “readers” – No inevitable read instrumentation, store to acquire inevitably – Serialization on single global • 2 CASes to commit any writer • CAS to release inevitability Inevitability Mechanisms for STM 22

  23. Read/Write Concurrency Read/Write Concurrency • Inevitable Read Locks – Add an inevitable read bit to each orec • Noninevitable writers can’t acquire orec if bit is set – CAS on every inevitable read • Cache misses for concurrent readers • Inevitable Read Filter – Approximate IRL bits as a Bloom filter • Less precise, but no misses for concurrent readers – WBR ordering to update filter • Write filter before checking if orec is held – WBR ordering to coordinate concurrent writers • Acquire orec before checking filter (PPC only) • Favors commit-time locking Inevitability Mechanisms for STM 23

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