Concurrent Computing

Similar documents
Process Synchronization. Mehdi Kargahi School of ECE University of Tehran Spring 2008

Semaphores INF4140. Lecture 3. 0 Book: Andrews - ch.04 ( ) INF4140 ( ) Semaphores Lecture 3 1 / 34

Process Synchronization

Mutual Exclusion: Classical Algorithms for Locks

Chapter 6: Synchronization. Operating System Concepts 8 th Edition,

CS370 Operating Systems

Semaphores. Jinkyu Jeong Computer Systems Laboratory Sungkyunkwan University

Chapter 5: Process Synchronization. Operating System Concepts Essentials 2 nd Edition

Module 6: Process Synchronization. Operating System Concepts with Java 8 th Edition

Chapter 6: Process Synchronization

Lecture 7: Mutual Exclusion 2/16/12. slides adapted from The Art of Multiprocessor Programming, Herlihy and Shavit

Operating Systems. Designed and Presented by Dr. Ayman Elshenawy Elsefy

Concept of a process

Lecture Topics. Announcements. Today: Concurrency (Stallings, chapter , 5.7) Next: Exam #1. Self-Study Exercise #5. Project #3 (due 9/28)

CSE Traditional Operating Systems deal with typical system software designed to be:

Peterson s Algorithm

Solution: a lock (a/k/a mutex) public: virtual void unlock() =0;

Chapter 6: Process Synchronization. Module 6: Process Synchronization

Chapter 6: Process Synchronization

Chapter 6: Synchronization. Chapter 6: Synchronization. 6.1 Background. Part Three - Process Coordination. Consumer. Producer. 6.

Chapter 7: Process Synchronization!

Module 6: Process Synchronization

PROCESS SYNCHRONIZATION

Mutual Exclusion. Companion slides for The Art of Multiprocessor Programming by Maurice Herlihy & Nir Shavit

Synchronization: Semaphores

Chapter 6: Process Synchronization. Operating System Concepts 8 th Edition,

Module 6: Process Synchronization

Dept. of CSE, York Univ. 1

Chapter 5: Process Synchronization. Operating System Concepts 9 th Edition

Process Management And Synchronization

Lecture. DM510 - Operating Systems, Weekly Notes, Week 11/12, 2018

CS370 Operating Systems

Dealing with Issues for Interprocess Communication

Process Synchronization

CS 153 Design of Operating Systems Winter 2016

Chapter 7: Process Synchronization. Background. Illustration

Synchronization. Race Condition. The Critical-Section Problem Solution. The Synchronization Problem. Typical Process P i. Peterson s Solution

CSC501 Operating Systems Principles. Process Synchronization

Chapter 5: Process Synchronization. Operating System Concepts 9 th Edition

Process Synchronization

Process Coordination

Concurrency. On multiprocessors, several threads can execute simultaneously, one on each processor.

Introduction to Operating Systems

Programming Paradigms for Concurrency Lecture 2 - Mutual Exclusion

Synchronization for Concurrent Tasks

Lesson 6: Process Synchronization

Process Synchronization

Threading and Synchronization. Fahd Albinali

Silberschatz and Galvin Chapter 6

Synchronization. CS 475, Spring 2018 Concurrent & Distributed Systems

Chapter 7: Process Synchronization. Background

Chapter 6 Synchronization

Learning Outcomes. Concurrency and Synchronisation. Textbook. Concurrency Example. Inter- Thread and Process Communication. Sections & 2.

Concurrency: Mutual Exclusion and Synchronization

Concurrency. Chapter 5

Chapters 5 and 6 Concurrency

Concurrency. On multiprocessors, several threads can execute simultaneously, one on each processor.

Synchronization Principles

Concurrency and Synchronisation

Concurrency and Synchronisation

ENGR 3950U / CSCI 3020U UOIT, Fall 2012 Quiz on Process Synchronization SOLUTIONS

CHAPTER 6: PROCESS SYNCHRONIZATION

Interprocess Communication By: Kaushik Vaghani

Process Synchronization

Process Synchronization. CISC3595, Spring 2015 Dr. Zhang

Process Synchronization

G52CON: Concepts of Concurrency

OS Process Synchronization!

Process Synchronization: Semaphores. CSSE 332 Operating Systems Rose-Hulman Institute of Technology

Lecture 3: Synchronization & Deadlocks

Dining Philosophers, Semaphores

Process synchronization

MULTITHREADING AND SYNCHRONIZATION. CS124 Operating Systems Fall , Lecture 10

Concurrency: Deadlock and Starvation. Chapter 6

Concurrency: Mutual Exclusion and

Reminder from last time

Process Synchronization

UNIT 2 Basic Concepts of CPU Scheduling. UNIT -02/Lecture 01

6.852: Distributed Algorithms Fall, Class 15

Synchronization Principles II

What is the Race Condition? And what is its solution? What is a critical section? And what is the critical section problem?

Chapter 6 Synchronization

Chapter 6: Process Synchronization. Operating System Concepts 8 th Edition,

CSE 153 Design of Operating Systems

Concurrent & Distributed Systems Supervision Exercises

Mutual Exclusion. 1 Formal problem definitions. Time notion CSE /17/2015. Outline of this lecture:

Operating Systems ECE344

CS370 Operating Systems

Synchronization Basic Problem:

Part II Process Management Chapter 6: Process Synchronization

Concurrency pros and cons. Concurrent Programming Problems. Mutual Exclusion. Concurrency is good for users

Lecture 3: Intro to Concurrent Processing using Semaphores

Deadlock. Disclaimer: some slides are adopted from Dr. Kulkarni s and book authors slides with permission 1

Operating Systems. Thread Synchronization Primitives. Thomas Ropars.

Background. The Critical-Section Problem Synchronisation Hardware Inefficient Spinning Semaphores Semaphore Examples Scheduling.

Concurrency Terminology

Chapter 6: Process Synchronization

Deadlock. Concurrency: Deadlock and Starvation. Reusable Resources

Concurrency pros and cons. Concurrent Programming Problems. Linked list example. Linked list example. Mutual Exclusion. Concurrency is good for users

Deadlock. Disclaimer: some slides are adopted from Dr. Kulkarni s and book authors slides with permission 1

Transcription:

Concurrent Computing Introduction SE205, P1, 2017

Administrivia Language: (fr)anglais? Lectures: Fridays (15.09-03.11), 13:30-16:45, Amphi Grenat Web page: https://se205.wp.imt.fr/ Exam: 03.11, 15:15-16:45 Office hours (Petr Kuznetsov) ü C213-2, appointments by email to petr.kuznetsov@telecomparistech.fr 2

Literature (for my part) Lecture notes: Concurrent computing. R. Guerraoui, P. Kuznetsov (https://www.dropbox.com/s/oiu6wp7oesngh8c/ book-ln.pdf?dl=0) M. Herlihy and N. Shavit. The art of multiprocessor programming. Morgan Kaufman, 2008 (library) 3

Concurrency is everywhere! Multi-core processors Sensor networks Internet Basically everything related computing 4

Communication models Shared memory ü Processes apply (read write) operations on shared variables ü Failures and asynchrony Message passing ü Processes send and receive messages ü Communication graphs ü Message delays 5

The concurrency challenge 6

The case against the washing machine science Single-processor performance does not improve But we can add more cores Run concurrent code on multiple processors Can we expect a proportional speedup? (ratio between sequential time and parallel time for executing a job) 7

Example: painting in parallel 5 friends want to paint 5 equal-size rooms, one friend per room ü Speedup = 5 What if one room is twice as big? 8

Amdahl s Law p fraction of the work that can be done in parallel (no synchronization) n - the number of processors Time one processor needs to complete the job = 1 9

A better solution When done, help the others ü All 5 paint the remaining half-room in parallel Communication and agreement is required! This is a hard task And this is what synchronization algorithms try to achieve! 10

Challenges What is a correct implementation? ü Safety and liveness What is the cost of synchronization? ü Time and space lower bounds Failures/asynchrony ü Fault-tolerant concurrency? How to distinguish possible from impossible? ü Impossibility results 11

Distributed Parallel The main challenge is synchronization you know you have a distributed system when the crash of a computer you ve never heard of stops you from getting any work done (Lamport) 12

History Dining philosophers, mutual exclusion (Dijkstra )~60 s Distributed computing, logical clocks (Lamport), distributed transactions (Gray) ~70 s Consensus (Lynch) ~80 s Distributed programming models, since ~90 s Multicores/manycores now 13

Why synchronize? Race condition: results depend on the scheduling Synchronization: resolving the races A race-prone portion of code critical section ü Must be executed sequentially Synchronization problems: mutual exclusion, readers-writers, producerconsumer, 14

Edsger Dijkstra 1930-2002 Dining philosophers (Dijkstra, 1965) To make progress (to eat) each process (philosopher) needs two resources (forks) Mutual exclusion: no fork can be shared Progress conditions: ü Some philosopher does not starve (deadlockfreedom) ü No philosopher starves (starvation-freedom) 15

Mutual exclusion No two processes are in their critical sections (CS) at the same time + Deadlock-freedom: at least one process eventually enters its CS Starvation-freedom: every process eventually enters its CS ü Assuming no process blocks in CS or Entry section Originally: implemented by reading and writing ü Peterson s lock, Lamport s bakery algorithm Currently: in hardware (mutex, semaphores) 16

Peterson s lock: 2 processes bool flag[0] bool flag[1] int turn; = false; = false; P0: P1: flag[0] = true; turn = 1; while (flag[1] and turn==1) { } // busy wait // critical section // end of critical section flag[0] = false; flag[1] = true; turn = 0; while (flag[0] and turn==0) { } // busy wait // critical section // end of critical section flag[1] = false; 17

Peterson s lock: N 2 processes // initialization level[0..n-1] = {-1}; // current level of processes 0...N-1 waiting[0..n-2] = {-1}; // the waiting process in each level // 0...N-2 // code for process i that wishes to enter CS for (m = 0; m < N-1; m++) { level[i] = m; waiting[m] = i; while(waiting[m] == i &&(exists k i: level[k] m)) { // busy wait } } // critical section level[i] = -1; // exit section 18

Bakery [Lamport 74,simplified] // initialization flag: array [1..N] of bool = {false}; label: array [1..N] of integer = {0}; //assume no bound // code for process i that wishes to enter CS flag[i] = true; //enter the doorway label[i] = 1 + max(label[1],..., lebel[n]); //pick a ticket while (for some k i: flag[k] and (label[k],k)<<(label[i],i)); // wait until all processes ahead are served // critical section flag[i] = false; // exit section Processes are served in the ticket order : first-come-first-serve 19

Readers-writers problem Writer updates a file Reader keeps itself up-to-date Reads and writes are non-atomic! Why synchronization? Inconsistent values might be read Writer T=0: write( sell the cat ) T=2: write( wash the dog ) Reader T=1: read( sell ) T=3: read( the dog ) Sell the dog? 20

Producer-consumer (bounded buffer) problem Producers put items in the buffer (of bounded size) Consumers get items from the buffer Every item is consumed, no item is consumed twice (Client-server, multi-threaded web servers, pipes, ) Why synchronization? Items can get lost or consumed twice: Producer /* produce item */ while (counter==max); buffer[in] = item; in = (in+1) % MAX; counter++; Race! Consumer /* to consume item */ while (counter==0); item=buffer[out]; out=(out+1) % MAX; counter--; /* consume item */ 21

Synchronization tools Busy-waiting (TAS) Semaphores (locks), monitors Nonblocking synchronization Transactional memory 22

Busy-wait: Test and Set TAS(X) tests if X = 1, sets X to 1 if not, and returns the old value of X ü Instruction available on almost all processors TAS(X): atomic if X == 1 return 1; X = 1; return 0; atomic yes X == 1? no 1 X := 1 0 23

Busy-wait: Test and Set shared X:=0 Producer Consumer atomic yes X == 1? no X := 1 0 1 while(counter==max);... buffer[in] = item;... while TAS(X); counter++; X:=0;... while (counter==0);... item = buffer[out];... while TAS(X); counter--; X:=0;... Problems: busy waiting no record of request order (for multiple producers and consumers) 24

Semaphores [Dijkstra 1968]: specification A semaphore S is an integer variable accessed (apart from initialization) with two atomic operations P(S) and V(S) ü Stands for passeren (to pass) and vrijgeven (to release) in Dutch The value of S indicates the number of resource elements available (if positive), or the number of processes waiting to acquire a resource element (if negative) Init(S,v){ S := v; } P(S){ } while S<=0; /* wait until a resource is available */ S--; /* pass to a resource */ V(S){ } S++; /* release a resource */ 25

Semaphores: implementation S is associated with a composite object: ü S.counter: the value of the semaphore ü S.wq: the waiting queue, memorizing the processes having requested a resource element Init(S,R_nb) { S.counter=R_nb; } S.wq=empty; P(S) { } S.counter--; if S.counter<0{ put the process in S.wq and wait until READY;} V(S) { } S.counter++ if S.counter>=0{ mark 1st process in S.wq as READY;} 26

Lock A semaphore initialized to 1, is called a lock (or mutex) When a process is in a critical section, no other process can come in shared semaphore S := 1 Producer while (counter==max);... buffer[in] = item;... P(S); counter++; V(S)... Consumer while (counter==0);... item = buffer[out];... P(S); counter--; V(S);... Problem: still waiting until the buffer is ready 27

Semaphores for producer-consumer 2 semaphores used : ü empty: indicates empty slots in the buffer (to be used by the producer) ü full: indicates full slots in the buffer (to be read by the consumer) shared semaphores empty := MAX, full := 0; Producer P(empty) buffer[in] = item; in = (in+1) % MAX; V(full) Consumer P(full); item = buffer[out]; out=(out+1) % MAX; V(empty); 28

Potential problems with semaphores/locks Blocking: progress of a process is conditional (depends on other processes) Deadlock: no progress ever made X1:=1; X2:=1 Process 1 Process 2... P(X1) P(X2) critical section V(X2) V(X1)...... P(X2) P(X1) critical section V(X1) V(X2)... Starvation: waiting in the waiting queue forever 29

Other problems of blocking synchronization Priority inversion ü High-priority threads blocked No robustness ü Page faults, cache misses etc. Not composable Can we think of anything else? 30

Non-blocking algorithms A process makes progress, regardless of the other processes shared buffer[max]:=empty; head:=0; tail:=0; Producer put(item) if (tail-head == MAX){ return(full); } buffer[tail%max]=item; tail++; return(ok); Consumer get() if (tail-head == 0){ return(empty); } item=buffer[head%max]; head++; return(item); Problems: works for 2 processes but hard to say why it works J multiple producers/consumers? Other synchronization pbs? (stay in class to learn more) 31

Transactional memory Mark sequences of instructions as an atomic transaction, e.g., the resulting producer code: atomic { } return ok; if (tail-head == MAX){ return full; } items[tail%max]=item; tail++; A transaction can be either committed or aborted ü Committed transactions are serializable ü Let the transactional memory (TM) care about the conflicts ü Easy to program, but performance may be problematic 32

Summary Concurrency is indispensable in programming: ü Every system is now concurrent ü Every parallel program needs to synchronize ü Synchronization cost is high ( Amdahl s Law ) Tools: ü Synchronization primitives (e.g., monitors, TAS, CAS, LL/SC) ü Synchronization libraries (e.g., java.util.concurrent) ü Transactional memory, also in hardware (Intel Haswell, IBM Blue Gene, ) Coming later: ü Read-write transformations and snapshot memory ü Nonblocking synchronization 33

Quiz What if we reverse the order of the first two lines the 2- process Peterson s algorithm P0: turn = 1; flag[0] = true; Would it work? P1: turn = 0; flag[1] = true; Prove that Peterson s N-process algorithm ensures: ü mutual exclusion: no two processes are in the critical section at a time ü starvation freedom: every process in the trying section eventually reaches the critical section (assuming no process fails in the trying, critical, or exit sections) 34

Bakery [Lamport 74,original] // initialization flag: array [1..N] of bool = {false}; label: array [1..N] of integer = {0}; //assume no bound // code for process i that wishes to enter CS flag[i] = true; //enter the doorway label[i] = 1 + max(label[1],..., label[n]); //pick a ticket flag[i] = false; //exit the doorway for j=1 to N do { while (flag[j]); //wait until j is not in the doorway while (label[j] 0 and (label[j],j)<<(label[i],i)); // wait until j is not ahead } // critical section label[i] = 0; // exit section Ticket withdrawal is protected with flags: a very useful trick 35