1 / 14

Paralelní programování

Paralelní programování. Synchronizační vzory – bariéra. Synchronizační vzory – mutex. kolik semaforů? jaká počáteční hodnota?. Synchronizační vzory – mutex. kritická sekce acquire = wait, release = signal multiplex?. Synchronizační vzory – multiplex. semafor <> zámek

carney
Download Presentation

Paralelní programování

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Paralelní programování Synchronizační vzory – bariéra

  2. Synchronizační vzory – mutex • kolik semaforů? • jaká počáteční hodnota?

  3. Synchronizační vzory – mutex • kritická sekce • acquire = wait, release = signal • multiplex?

  4. Synchronizační vzory – multiplex • semafor <> zámek • token, místnost, povolenka, permanentka • symetrické

  5. Dežo v mutexu

  6. Synchronizační vzory – bariéra • symetrické rendezvous pro libovolný počet vláken • všechna vlákna musí počkat až projdou bodem setkání • po příchodu posledního vlákna mohou všichni pokračovat dál • realizace • n vláken • poslední vlákno otevře bariéru

  7. Synchronizační vzory – bariéra • mutex.wait() • count = count + 1 • mutex.signal() • if count == n • barrier.signal() • barrier.wait() kdy funguje? kdy nefunguje?

  8. Bariéra – turniket • mutex.wait() • count = count + 1 • mutex.signal() • if count == n • barrier.signal() • barrier.wait() • barrier.signal()

  9. Synchronizační vzory – bariéra • praktické využití • pracovní vlákna • po dokončení práce se výsledky spojí • rozdá se nová práce • spouští se v cyklu • potřebujeme bariéru, kterou lze znovu použít • wait v kritické sekci (uvnitř mutexu) je nepoužitelný • turniket – bod, kterým vlákna prochází po jednom, ale bez zdržení

  10. Deadlock - drobná chybka • mutex.wait() • count = count + 1 • if count == n • barrier.signal() barrier.wait() • barrier.signal() • mutex.signal()

  11. Bariéra – další (ne)řešení • mutex.wait() • count = count + 1 • mutex.signal() • if count == n • turnstile.signal() • turnstile.wait() • turnstile.signal() • mutex.wait() • count = count – 1 • mutex.signal() • if count == 0 • turnstile.wait(); problem?

  12. Bariéra – další řešení • mutex.wait() • count = count + 1 • if count == n • turnstile2.wait() • turnstile.signal() • mutex.signal() • turnstile.wait() • turnstile.signal() • /* process */ • mutex.wait() • count = count – 1 • if count == 0 • turnstile.wait(); • turnstile2.signal(); • mutex.signal() • turnstile2.wait() • turnstile2.signal(); počáteční hodnoty?

  13. Bariéra – další řešení • mutex.wait() • count = count + 1 • if count == n • turnstile.signal(n) • mutex.signal() • turnstile.wait() • /* process */ • mutex.wait() • count = count – 1 • if count == 0 • turnstile2.signal(n); • mutex.signal() • turnstile2.wait()

More Related