Ordered linked list implementation of a set By Lior Zibi abc - +

140
Ordered linked list implementation of a set By Lior Zibi a b c -∞ +∞

Transcript of Ordered linked list implementation of a set By Lior Zibi abc - +

Page 1: Ordered linked list implementation of a set By Lior Zibi abc - +

Ordered linked list implementation of a set

By Lior Zibi

a b c-∞ +∞

Page 2: Ordered linked list implementation of a set By Lior Zibi abc - +

Discussion Topics

• Defining the set and the linked list implementation.

• Some definitions.• Algorithms:

– 1. Coarse grained synchronization.– 2. Fine grained synchronization.– 3. Optimistic synchronization.– 4. Lazy synchronization.

Page 3: Ordered linked list implementation of a set By Lior Zibi abc - +

Defining the linked list

First, Set :

• Unordered collection of items

• No duplicates

Page 4: Ordered linked list implementation of a set By Lior Zibi abc - +

Defining the linked list

public interface Set<T> { public boolean add(T x); public boolean remove(T x); public boolean contains(T x);}

public class Node { public T item; public int key; public Node next;}

Now the linked implements:

Page 5: Ordered linked list implementation of a set By Lior Zibi abc - +

5

a b c

Sorted with Sentinel nodes(min & max possible keys)

-∞

+∞

Defining the linked list

Page 6: Ordered linked list implementation of a set By Lior Zibi abc - +

Defining concurrent methods properties

• Invariant:– Property that always holds.

• Established because– True when object is created.– Truth preserved by each method

• Each step of each method.

Page 7: Ordered linked list implementation of a set By Lior Zibi abc - +

Defining concurrent methods properties

• Rep-Invariant:– The invariant on our concrete

Representation = on the list.– Preserved by methods.– Relied on by methods.– Allows us to reason about each method in

isolation without considering how they interact.

Page 8: Ordered linked list implementation of a set By Lior Zibi abc - +

Defining concurrent methods properties

• Our Rep-invariant:– Sentinel nodes

• tail reachable from head.

– Sorted– No duplicates

• Depends on the implementation.

Page 9: Ordered linked list implementation of a set By Lior Zibi abc - +

Defining concurrent methods properties

• Abstraction Map:

• S(List) =– { x | there exists a such that

• a reachable from head and• a.item = x

– }

• Depends on the implementation.

Page 10: Ordered linked list implementation of a set By Lior Zibi abc - +

10

Abstract Data Types

• Example:

– S( ) = {a,b}a b

a b

• Concrete representation:

• Abstract Type:– {a, b}

Page 11: Ordered linked list implementation of a set By Lior Zibi abc - +

Defining concurrent methods properties

• Wait-free: Every call to the function finishes in a finite number of steps.

Supposing the Scheduler is fair:• Starvation-free: every thread calling the

method eventually returns.

Page 12: Ordered linked list implementation of a set By Lior Zibi abc - +

Algorithms• Next: going throw each algorithm.

• 1. Describing the algorithm.• 2. Explaining why every step of the algorithm is needed. • 3. Code review.• 4. Analyzing each method properties.• 5. Advantages / Disadvantages.• 6. Presenting running times for my implementation of

the algorithm.• + Example of proving correctness for Remove(x) in

FineGrained. Hopefully… “Formal proofs of correctness lie beyond the scope of this book”

Page 13: Ordered linked list implementation of a set By Lior Zibi abc - +

13

0.Sequential List Based Set

a c d

a b c

Add()

Remove()

Page 14: Ordered linked list implementation of a set By Lior Zibi abc - +

14

a c d

b

a b c

Add()

Remove()

0.Sequential List Based Set

Page 15: Ordered linked list implementation of a set By Lior Zibi abc - +

15

1.Course Grained

a b d

1. Describing the algorithm:

• Most common implementation today.

• Add(x) / Remove(x) / Contains(x): - Lock the entire list then perform the operation.

Page 16: Ordered linked list implementation of a set By Lior Zibi abc - +

16

1.Course Grained

a b d

c

• Most common implementation today

1. Describing the algorithm:

• All methods perform operations on the list while holding the lock, so the execution is essentially sequential.

Page 17: Ordered linked list implementation of a set By Lior Zibi abc - +

17

3. Code review:

Add:

public boolean add(T item) { Node pred, curr; int key = item.hashCode(); lock.lock(); try { pred = head; curr = pred.next; while (curr.key < key) { pred = curr; curr = curr.next; } if (key == curr.key) { return false; } else { Node node = new Node(item); node.next = curr; pred.next = node; return true; } } finally { lock.unlock(); } }

Finding the place to add the item

Adding the item if it wasn’t already in the list

1.Course Grained

Page 18: Ordered linked list implementation of a set By Lior Zibi abc - +

Art of Multiprocessor Programming 18

3. Code review:

Remove:

public boolean remove(T item) { Node pred, curr; int key = item.hashCode(); lock.lock(); try { pred = this.head; curr = pred.next; while (curr.key < key) { pred = curr; curr = curr.next; } if (key == curr.key) { pred.next = curr.next; return true; } else { return false; } } finally { lock.unlock(); } }

Finding the item

Removing the item

1.Course Grained

Page 19: Ordered linked list implementation of a set By Lior Zibi abc - +

19

3. Code review:

Contains:

public boolean contains(T item) { Node pred, curr; int key = item.hashCode(); lock.lock(); try { pred = head; curr = pred.next; while (curr.key < key) { pred = curr; curr = curr.next; } return (key == curr.key); } finally {lock.unlock(); } }

Finding the item

Returning true if found

1.Course Grained

Page 20: Ordered linked list implementation of a set By Lior Zibi abc - +

20

4. Methods properties:

• The implementation inherits its progress conditions from those of the Lock, and so assuming fair Scheduler:

- If the Lock implementation is Starvation free

Every thread will eventually get the lock and eventually the call to the function will return.

• So our implementation of Insert, Remove and Contains is Starvation-free

1.Course Grained

Page 21: Ordered linked list implementation of a set By Lior Zibi abc - +

21

5. Advantages / Disadvantages:

Advantages:

- Simple.

- Obviously correct.

Disadvantages:

- High Contention. (Queue locks help)

- Bottleneck!

1.Course Grained

Page 22: Ordered linked list implementation of a set By Lior Zibi abc - +

22

6. Running times:

1.Course Grained

• The tests were run on Aries – Supports 32 running threads. UltraSPARC T1 - Sun Fire T2000.

• Total of 200000 operations.

• 10% adds, 2% removes, 88% contains – normal work load percentages on a set.

• Each time the list was initialized with 100 elements.

• One run with a max of 20000 items in the list. Another with only 2000.

Page 23: Ordered linked list implementation of a set By Lior Zibi abc - +

23

6. Running times:

1.Course Grained

Speed up

0

5

10

15

20

25

30

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds 2000 max

items in list

20000 maxitems in list

Page 24: Ordered linked list implementation of a set By Lior Zibi abc - +

24

2.Fine Grained1. Describing the algorithm:

• Split object into pieces– Each piece has own lock.– Methods that work on disjoint pieces need

not exclude each other.

Page 25: Ordered linked list implementation of a set By Lior Zibi abc - +

25

2.Fine Grained

• Add(x) / Remove(x) / Contains(x):– Go throw the list, lock each node and release only

after the lock of the next element has been acquired.

– Once you have reached the right point of the list perform the Add / Remove / Contains operation.

1. Describing the algorithm:

Page 26: Ordered linked list implementation of a set By Lior Zibi abc - +

26

a b c d

remove(b)

2.Fine Grained1. Describing the algorithm: illustrated Remove.

Page 27: Ordered linked list implementation of a set By Lior Zibi abc - +

27

a b c d

remove(b)

2.Fine Grained1. Describing the algorithm: illustrated Remove.

Page 28: Ordered linked list implementation of a set By Lior Zibi abc - +

28

a b c d

remove(b)

2.Fine Grained1. Describing the algorithm: illustrated Remove.

Page 29: Ordered linked list implementation of a set By Lior Zibi abc - +

29

a b c d

remove(b)

2.Fine Grained1. Describing the algorithm: illustrated Remove.

Page 30: Ordered linked list implementation of a set By Lior Zibi abc - +

30

a b c d

remove(b)

2.Fine Grained1. Describing the algorithm: illustrated Remove.

Page 31: Ordered linked list implementation of a set By Lior Zibi abc - +

31

a c d

remove(b)

2.Fine Grained1. Describing the algorithm: illustrated Remove.

Page 32: Ordered linked list implementation of a set By Lior Zibi abc - +

32

Why do we need to always hold 2 locks?

2.Fine Grained2. Explaining why every step is needed.

Page 33: Ordered linked list implementation of a set By Lior Zibi abc - +

33

a b c d

remove(c)remove(

b)

2.Fine Grained

Concurrent removes

2. Explaining why every step is needed.

Page 34: Ordered linked list implementation of a set By Lior Zibi abc - +

34

a b c d

remove(b)

remove(c)

2.Fine Grained

Concurrent removes

2. Explaining why every step is needed.

Page 35: Ordered linked list implementation of a set By Lior Zibi abc - +

35

a b c d

remove(b)

remove(c)

2.Fine Grained

Concurrent removes

2. Explaining why every step is needed.

Page 36: Ordered linked list implementation of a set By Lior Zibi abc - +

36

a b c d

remove(b)

remove(c)

2.Fine Grained

Concurrent removes

2. Explaining why every step is needed.

Page 37: Ordered linked list implementation of a set By Lior Zibi abc - +

37

a b c d

remove(b)

remove(c)

2.Fine Grained

Concurrent removes

2. Explaining why every step is needed.

Page 38: Ordered linked list implementation of a set By Lior Zibi abc - +

38

a b c d

remove(b)

remove(c)

2.Fine Grained

Concurrent removes

2. Explaining why every step is needed.

Page 39: Ordered linked list implementation of a set By Lior Zibi abc - +

39

Concurrent Removes

a b c d

remove(b)

remove(c)

2. Explaining why every step is needed.

Page 40: Ordered linked list implementation of a set By Lior Zibi abc - +

40

Concurrent Removes

a b c d

remove(b)

remove(c)

2. Explaining why every step is needed.

Page 41: Ordered linked list implementation of a set By Lior Zibi abc - +

41

a c d

remove(b)

remove(c)

2.Fine Grained

Concurrent removes

2. Explaining why every step is needed.

Page 42: Ordered linked list implementation of a set By Lior Zibi abc - +

42

a c d

Bad news, C not

removed

remove(b)

remove(c)

2.Fine Grained

Concurrent removes

2. Explaining why every step is needed.

Page 43: Ordered linked list implementation of a set By Lior Zibi abc - +

43

a b c d

remove(b)

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 44: Ordered linked list implementation of a set By Lior Zibi abc - +

44

a b c d

remove(b)

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 45: Ordered linked list implementation of a set By Lior Zibi abc - +

45

a b c d

remove(b)

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 46: Ordered linked list implementation of a set By Lior Zibi abc - +

46

a b c d

remove(b)

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 47: Ordered linked list implementation of a set By Lior Zibi abc - +

47

a b c d

remove(b)

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 48: Ordered linked list implementation of a set By Lior Zibi abc - +

48

a b c d

remove(b)

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 49: Ordered linked list implementation of a set By Lior Zibi abc - +

49

a b c d

remove(b)

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 50: Ordered linked list implementation of a set By Lior Zibi abc - +

50

a b c d

remove(b)

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 51: Ordered linked list implementation of a set By Lior Zibi abc - +

51

a b c d

Must acquire Lock of

b

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 52: Ordered linked list implementation of a set By Lior Zibi abc - +

52

a b c d

Cannot acquire lock of b

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 53: Ordered linked list implementation of a set By Lior Zibi abc - +

53

a b c d

Wait!

remove(c)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 54: Ordered linked list implementation of a set By Lior Zibi abc - +

54

a b d

Proceed to

remove(b)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 55: Ordered linked list implementation of a set By Lior Zibi abc - +

55

a b d

remove(b)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 56: Ordered linked list implementation of a set By Lior Zibi abc - +

56

a b d

remove(b)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 57: Ordered linked list implementation of a set By Lior Zibi abc - +

57

a d

remove(b)

Concurrent removes

Now with 2 locks.

2.Fine Grained2. Explaining why every step is needed.

Page 58: Ordered linked list implementation of a set By Lior Zibi abc - +

58

2.Fine Grained

• Conclusion:

• Now that we hold 2 locks for Remove / Add / Contains. If a node is locked :– It can’t be removed and so does the next node in the list.– No new node can be added before it and after it.

2. Explaining why every step is needed.

Page 59: Ordered linked list implementation of a set By Lior Zibi abc - +

59

3. Code review:

Add:

public boolean add(T item) { int key = item.hashCode(); head.lock(); Node pred = head; try { Node curr = pred.next; curr.lock(); try { while (curr.key < key) { pred.unlock(); pred = curr; curr = curr.next; curr.lock(); }

Finding the place to add the item:

2.Fine Grained

if (curr.key == key) { return false; } Node newNode = new Node(item); newNode.next = curr; pred.next = newNode; return true; } finally { curr.unlock(); } } finally { pred.unlock(); } }

Adding the item:

Continued:

Page 60: Ordered linked list implementation of a set By Lior Zibi abc - +

60

3. Code review:

Remove:

Node pred = null, curr = null; int key = item.hashCode(); head.lock(); try { pred = head; curr = pred.next; curr.lock(); try { while (curr.key < key) { pred.unlock(); pred = curr; curr = curr.next; curr.lock(); }

2.Fine Grained

if (curr.key == key) { pred.next = curr.next; return true; }

return false; } finally { curr.unlock(); } } finally { pred.unlock(); } }

Removing the item:

Continued:

Finding the place to add the item:

Page 61: Ordered linked list implementation of a set By Lior Zibi abc - +

61

3. Code review:

Contains:

public boolean contains(T item) { Node pred = null, curr = null; int key = item.hashCode(); head.lock(); try { pred = head; curr = pred.next; curr.lock(); try { while (curr.key < key) { pred.unlock(); pred = curr; curr = curr.next; curr.lock(); }

2.Fine Grained

return (curr.key == key); } finally { curr.unlock(); } } finally { pred.unlock(); } }

Return true iff found

Continued:

Finding the place to add the item:

Page 62: Ordered linked list implementation of a set By Lior Zibi abc - +

62

Proving correctness for Remove(x) function:

2.Fine Grained

• So how do we prove correctness of a method in a concurrent environment?

1. Decide on a Rep-Invariant. Done!

2. Decide on an Abstraction map. Done!

3. Defining the operations: Remove(x): If x in the set => x won’t be in the set and return true.

If x isn’t in the set => don’t change the set and return false.

Done!

Page 63: Ordered linked list implementation of a set By Lior Zibi abc - +

63

Proving correctness for Remove(x) function:

2.Fine Grained

4. Proving that each function keeps the Rep-Invariant:

1. Tail reachable from head.

2. Sorted.

3. No duplicates.

1. The newly created empty list obviously keeps the Rep-invariant.

2. Easy to see from the code that for each function if the Rep-invariant was kept before the call it will still hold after it. Done!

Page 64: Ordered linked list implementation of a set By Lior Zibi abc - +

64

Proving correctness for Remove(x) function:

2.Fine Grained

5. Split the function to all possible run time outcomes.

In our case:

1. Successful remove. (x was in the list)

2. Failed remove. (x wasn’t in the list)

Done!

6. Proving for each possibility.

We will start with a successful remove. (failed remove is not much different)

Page 65: Ordered linked list implementation of a set By Lior Zibi abc - +

65

Proving correctness for Remove(x) function:

2.Fine Grained

6. Deciding on a linearization point for a successful remove.

Reminder: Linearization point – a point in time that we can say the function has happened in a running execution.

We will set the Linearization point to after the second lock was acquired. Done!

successful remove.

Page 66: Ordered linked list implementation of a set By Lior Zibi abc - +

66

Proving correctness for Remove(x) function:

2.Fine Grained

Node pred = null, curr = null; int key = item.hashCode(); head.lock(); try { pred = head; curr = pred.next; curr.lock(); try { while (curr.key < key) { pred.unlock(); pred = curr; curr = curr.next; curr.lock(); }

if (curr.key == key) { pred.next = curr.next; return true; }

return false; } finally { curr.unlock(); } } finally { pred.unlock(); } }

In the code its:

Here!

Remove:Continued:

successful remove.

Page 67: Ordered linked list implementation of a set By Lior Zibi abc - +

67

Proving correctness for Remove(x) function:

2.Fine Grained

67

y z x w

And in the list, for example: if the Set is {y,z,x,w} and we call Remove(x). After this lock is the linearization point:

successful remove.

Page 68: Ordered linked list implementation of a set By Lior Zibi abc - +

68

Proving correctness for Remove(x) function:

2.Fine Grained

7. Now that the linearization point is set we need to prove that:

7.1. Before the linearization point the set contained x.

7.2. After it the set won’t contain x.

successful remove.

Page 69: Ordered linked list implementation of a set By Lior Zibi abc - +

69

Proving correctness for Remove(x) function:

2.Fine Grained

7.1. Before the linearization point the set contained x.

1. Since we proved the Rep-Invariant holds then pred=z is accessible from the head.

2. Since z,x are locked. No other parallel call can remove them.

3. Since curr=x is pointed to by pred then x is also accessible from the head.

y z x w

successful remove.

Page 70: Ordered linked list implementation of a set By Lior Zibi abc - +

70

Proving correctness for Remove(x) function:

2.Fine Grained

– S( ) = {a,b}

y z x w

7.1. Before the linearization point the set contained x.

4. Now by the Abstraction map definition:

since x is reachable from the head => x is in the set! Done!

a b

successful remove.

Page 71: Ordered linked list implementation of a set By Lior Zibi abc - +

Proving correctness for Remove(x) function:

2.Fine Grained

7.1. After it the set won’t contain x.

1. after the linearization point: pred.next = curr.next;

Curr=x won’t be pointed to by pred=z and so won’t be accessible from head.

71

y z x w

successful remove.

Page 72: Ordered linked list implementation of a set By Lior Zibi abc - +

Proving correctness for Remove(x) function:

2.Fine Grained

7.1. After it the set won’t contain x.

2. Now by the Abstraction map definition:

since x is not reachable from the head => x is not in the set! Done!

72

y z x w

successful remove.

Page 73: Ordered linked list implementation of a set By Lior Zibi abc - +

Proving correctness for Remove(x) function:

2.Fine Grained

73

• Now quicker for an unsuccessful remove:– Linearization point again will be after the second lock was

acquired at: return false;

– Before x wasn’t in the list since pred is reachable from head & pred.key < key & curr.key > key. (x = key) and the rep-invariant property of an ordered list holds.

– After the linearization point since it just returns false nothing changed in the Rep-Invariant and so nothing changed in the Abstraction-Map and the Set.

73

y z w v

Done!

Page 74: Ordered linked list implementation of a set By Lior Zibi abc - +

Proving correctness for Remove(x) function:

2.Fine Grained

74

• In conclusion:– For every possible run time execution for Remove(x) we

found a linearization point that holds the remove function specification in the set using the Abstraction map while holding the Rep-Invariant.

Done!

Page 75: Ordered linked list implementation of a set By Lior Zibi abc - +

75

4. Methods properties:

2.Fine Grained

• Assuming fair scheduler. If the Lock implementation is Starvation free:

Every thread will eventually get the lock and since all methods move in the same direction in the list there won’t be deadlock and eventually the call to the function will return.

• So our implementation of Insert, Remove and Contains is Starvation-free.

Page 76: Ordered linked list implementation of a set By Lior Zibi abc - +

76

5. Advantages / Disadvantages:

Advantages:

- Better than coarse-grained lock

Threads can traverse in parallel.

Disadvantages:

- Long chain of acquire/release.

- Inefficient.

2.Fine Grained

Page 77: Ordered linked list implementation of a set By Lior Zibi abc - +

77

6. Running times:

Speed up

0

10

20

30

40

50

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds 2000 max

items in list

20000 maxitems in list

2.Fine Grained

Page 78: Ordered linked list implementation of a set By Lior Zibi abc - +

78

6. Running times:

Speed up max of 2000 items

02468

1012

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds Fine List

CoarseGrained

2.Fine Grained

Page 79: Ordered linked list implementation of a set By Lior Zibi abc - +

79

6. Running times:

Speed up max of 20000 items

0

1020

3040

50

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds Fine List

CoarseGrained

2.Fine Grained

Page 80: Ordered linked list implementation of a set By Lior Zibi abc - +

80

3 .Optimistic1. Describing the algorithm:

Add(x) / Remove (x) / Contains(x):

1. Find nodes without locking

2. Lock nodes

3. Check that everything is OK = Validation.

3.1 Check that pred is still reachable from head.

3.2 Check that pred still points to curr.

4. If validation passed => do the operation.

Page 81: Ordered linked list implementation of a set By Lior Zibi abc - +

81

b d ea

add(c)

Aha!

3 .Optimistic1. Describing the algorithm:

• Example of add(c):Finding without locking

Page 82: Ordered linked list implementation of a set By Lior Zibi abc - +

82

b d ea

add(c)

1. Describing the algorithm:

Locking• Example of add(c):

3 .Optimistic

Page 83: Ordered linked list implementation of a set By Lior Zibi abc - +

83

b d ea

add(c)

1. Describing the algorithm:

Validation 1• Example of add(c):

3 .Optimistic

Page 84: Ordered linked list implementation of a set By Lior Zibi abc - +

84

b d ea

add(c)

1. Describing the algorithm:

Validation 1• Example of add(c):

3 .Optimistic

Page 85: Ordered linked list implementation of a set By Lior Zibi abc - +

85

b d ea

add(c)

1. Describing the algorithm:

Validation 2• Example of add(c):

Yes. b is still reachable from head.

3 .Optimistic

Page 86: Ordered linked list implementation of a set By Lior Zibi abc - +

86

b d ea

add(c)

1. Describing the algorithm:

Validation 2• Example of add(c):

Yes. b still points to d.

3 .Optimistic

Page 87: Ordered linked list implementation of a set By Lior Zibi abc - +

87

b d ea

add(c)

c

3 .Optimistic1. Describing the algorithm:

Add c.• Example of add(c):

Page 88: Ordered linked list implementation of a set By Lior Zibi abc - +

88

Why do we need to Validate?

3 .Optimistic2. Explaining why every step is needed.

Page 89: Ordered linked list implementation of a set By Lior Zibi abc - +

3 .Optimistic

• First: Why do we need to validate that pred is accessible from head?

• Thread A Adds(c). • After thread A found b, before A locks. Another

thread removes b.

2. Explaining why every step is needed.

b d ea

Page 90: Ordered linked list implementation of a set By Lior Zibi abc - +

90

b d ea

add(c)

Aha!

3 .Optimistic

• Adds(c).Finding without locking

2. Explaining why every step is needed.

Page 91: Ordered linked list implementation of a set By Lior Zibi abc - +

91

d ea

add(c)

3 .Optimistic

b

Another thread removed b

• Adds(c).

2. Explaining why every step is needed.

Page 92: Ordered linked list implementation of a set By Lior Zibi abc - +

92

d ea

add(c)

3 .Optimistic

b

Now A locks b and d

• Adds(c).

2. Explaining why every step is needed.

Page 93: Ordered linked list implementation of a set By Lior Zibi abc - +

93

d ea

add(c)

3 .Optimistic

b

And adds c

c

• Adds(c).

2. Explaining why every step is needed.

Page 94: Ordered linked list implementation of a set By Lior Zibi abc - +

94

d ea

3 .Optimistic

b

Now frees the locks.

But c isn’t added!

c

• Adds(c).

2. Explaining why every step is needed.

Page 95: Ordered linked list implementation of a set By Lior Zibi abc - +

3 .Optimistic

• Second: Why do we need to validate that pred Still points to curr?

• Thread A removes(d). • then thread A found b, before A locks. Another

thread adds(c).

2. Explaining why every step is needed.

b d ea

Page 96: Ordered linked list implementation of a set By Lior Zibi abc - +

96

b d ea

add(c)

Aha!

3 .Optimistic

• Removes(d)Finding without locking

2. Explaining why every step is needed.

Page 97: Ordered linked list implementation of a set By Lior Zibi abc - +

97

d ea

add(c)

3 .Optimistic

b

Another thread Adds(c)

c

• Removes(d)

2. Explaining why every step is needed.

Page 98: Ordered linked list implementation of a set By Lior Zibi abc - +

98

d ea

add(c)

3 .Optimistic

b

Now A locks.

c

• Removes(d)

2. Explaining why every step is needed.

Page 99: Ordered linked list implementation of a set By Lior Zibi abc - +

99

d ea

add(c)

3 .Optimistic

b

pred.next = curr.next;

• Removes(d)

c

2. Explaining why every step is needed.

Page 100: Ordered linked list implementation of a set By Lior Zibi abc - +

100

3 .Optimistic

Instead c and d were deleted!

• Removes(d)

d ea b

c

Now frees the locks.

2. Explaining why every step is needed.

Page 101: Ordered linked list implementation of a set By Lior Zibi abc - +

101

3 .Optimistic

• Do notice that threads might traverse deleted nodes. May cause problems to our Rep-Invariant.

• Careful not to recycle to the lists nodes that were deleted while threads are in a middle of an operation.

• With a garbage collection language like java – ok.• For C – you need to solve this manually.

Important comment.

Page 102: Ordered linked list implementation of a set By Lior Zibi abc - +

102

3. Code review:

Add:

public boolean add(T item) { int key = item.hashCode(); while (true) { Entry pred = this.head; Entry curr = pred.next; while (curr.key <= key) { pred = curr; curr = curr.next; } pred.lock(); curr.lock();

Search the list from the

beginning each time, until validation succeeds

try { if (validate(pred, curr)) { if (curr.key == key) { return false; } else { Entry entry = new Entry(item); entry.next = curr; pred.next = entry; return true; } } } finally { pred.unlock(); curr.unlock(); } } }

If validation succeedsAttempt Add

Continued:

3 .Optimistic

Page 103: Ordered linked list implementation of a set By Lior Zibi abc - +

103

3. Code review:

Remove:

public boolean add(T item) { int key = item.hashCode(); while (true) { Entry pred = this.head; Entry curr = pred.next; while (curr.key <= key) { pred = curr; curr = curr.next; } pred.lock(); curr.lock();

Search the list from the

beginning each time, until validation succeeds

try { if (validate(pred, curr)) { if (curr.key == key) { pred.next = curr.next; return true; } else { return false; } } } finally { pred.unlock(); curr.unlock(); } } }

If validation succeedsAttempt remove

Continued:

3 .Optimistic

Page 104: Ordered linked list implementation of a set By Lior Zibi abc - +

104

3. Code review:

Contains:

public boolean contains(T item) { int key = item.hashCode(); while (true) { Entry pred = this.head; Entry curr = pred.next; while (curr.key < key) { pred = curr; curr = curr.next; } try { pred.lock(); curr.lock(); if (validate(pred, curr)) { return (curr.key == key); } } finally { pred.unlock(); curr.unlock(); } } }

Search the list from the

beginning each time, until validation succeeds

If validation succeedsReturn the result

3 .Optimistic

Page 105: Ordered linked list implementation of a set By Lior Zibi abc - +

105

4. Methods properties:

• Assuming fair scheduler. Even if all the lock implementations are Starvation free. We will show a scenario in which the methods Remove / Add / Contains do not return.

• And so our implementation won’t be starvation free.

3 .Optimistic

Page 106: Ordered linked list implementation of a set By Lior Zibi abc - +

106

4. Methods properties:

• Assuming Thread A operation is Remove(d) / Add(c) / Contains(c).

• If the following sequence of operations will happen:

3 .Optimistic

d ea b

Page 107: Ordered linked list implementation of a set By Lior Zibi abc - +

107

4. Methods properties:

The sequence:• 1. Thread A will find b. • 2. Thread B will remove b.• 3. The validation of thread A will fail.

3 .Optimistic

The thread call to the function won’t return!

d ea b

• 4. Thread C will add b.

now go to 1.

Page 108: Ordered linked list implementation of a set By Lior Zibi abc - +

108

5. Advantages / Disadvantages:

Advantages:

- Limited hot-spots• Targets of add(), remove(), contains().• No contention on traversals.

- Much less lock acquisition/releases.– Better concurrency.

Disadvantages:

- Need to traverse list twice!

- Contains() method acquires locks.

2.Optimistic

Page 109: Ordered linked list implementation of a set By Lior Zibi abc - +

109

5. Advantages / Disadvantages:

2.Optimistic

• Optimistic is effective if:– The cost of scanning twice without locks is less

than the cost of scanning once with locks

• Drawback:– Contains() acquires locks. Normally, about 90% of

the calls are contains.

Page 110: Ordered linked list implementation of a set By Lior Zibi abc - +

110

6. Running times:

Speed up

0

5

10

15

20

25

30

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds 2000 max

items in list

20000 maxitems in list

3 .Optimistic

Page 111: Ordered linked list implementation of a set By Lior Zibi abc - +

111

6. Running times:

Speed up max of 2000 items

0

510

1520

25

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds Fine List

CoarseGrained

Optimistic

3 .Optimistic

Page 112: Ordered linked list implementation of a set By Lior Zibi abc - +

112

6. Running times:

Speed up max of 20000 items

0

1020

3040

50

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds Fine List

CoarseGrained

Optimistic

3 .Optimistic

Page 113: Ordered linked list implementation of a set By Lior Zibi abc - +

113

4 .Lazy1. Describing the algorithm:

Validate:– Pred is not marked as deleted.– Curr is not marked as deleted.– Pred points to curr.

Page 114: Ordered linked list implementation of a set By Lior Zibi abc - +

114

4 .Lazy1. Describing the algorithm:

Remove(x):• Find the node to remove.• Lock pred and curr.• Validate. (New validation!)• Logical delete

– Marks current node as removed (new!).• Physical delete

– Redirects predecessor’s next.

Page 115: Ordered linked list implementation of a set By Lior Zibi abc - +

115

4 .Lazy1. Describing the algorithm:

Add(x):• Find the node to remove.• Lock pred and curr.• Validate. (New validation!)• Physical add

– The same as Optimistic.

Page 116: Ordered linked list implementation of a set By Lior Zibi abc - +

116

4 .Lazy1. Describing the algorithm:

Contains(x):• Find the node to remove without locking!• Return true if found the node and it isn’t marked as

deleted.

• No locks!

Page 117: Ordered linked list implementation of a set By Lior Zibi abc - +

117

aa b c d

4 .Lazy1. Describing the algorithm:

• Remove(c):

Page 118: Ordered linked list implementation of a set By Lior Zibi abc - +

c

118

aa b d

Present in list

4 .Lazy1. Describing the algorithm:

• Remove(c):

1. Find the node

Page 119: Ordered linked list implementation of a set By Lior Zibi abc - +

c

119

aa b d

Present in list

4 .Lazy1. Describing the algorithm:

• Remove(c):

2. lock

Page 120: Ordered linked list implementation of a set By Lior Zibi abc - +

c

120

aa b d

Present in list

4 .Lazy1. Describing the algorithm:

• Remove(c):

3. Validate

Page 121: Ordered linked list implementation of a set By Lior Zibi abc - +

c

121

aa b d

Set as marked

4 .Lazy1. Describing the algorithm:

• Remove(c):

4. Logically delete

Page 122: Ordered linked list implementation of a set By Lior Zibi abc - +

122

aa b c d

Pred.next = curr.next

4 .Lazy1. Describing the algorithm:

• Remove(c):

5. Physically delete

Page 123: Ordered linked list implementation of a set By Lior Zibi abc - +

123

aa b d

Cleaned

4 .Lazy1. Describing the algorithm:

• Remove(c):

5. Physically delete

Page 124: Ordered linked list implementation of a set By Lior Zibi abc - +

124

4 .Lazy1. Describing the algorithm:

Given the Lazy Synchronization algorithm.

What else should we change?

Page 125: Ordered linked list implementation of a set By Lior Zibi abc - +

125

4 .Lazy1. Describing the algorithm:

• New Abstraction map!

• S(head) =– { x | there exists node a such that

• a reachable from head and• a.item = x and• a is unmarked

– }

Page 126: Ordered linked list implementation of a set By Lior Zibi abc - +

126

Why do we need to Validate?

2. Explaining why every step is needed.

4 .Lazy

Page 127: Ordered linked list implementation of a set By Lior Zibi abc - +

• First: Why do we need to validate that pred Still points to curr?

• The same as in Optimistic:• Thread A removes(d). • Then thread A found b, before A locks. Another

thread adds(c). – c and d will be removed instead of just d.

2. Explaining why every step is needed.

4 .Lazy

b d ea

Page 128: Ordered linked list implementation of a set By Lior Zibi abc - +

• Second: Why do we need to validate that pred and curr aren’t marked logically removed?

• To make sure a thread hasn’t removed them between our find and our lock.

• The same scenario we showed for validating that pred is still accessible from head holds here:– After thread A found b, before A locks. Another thread

removes b. (our operation won’t take place).

2. Explaining why every step is needed.

4 .Lazy

d eba

Page 129: Ordered linked list implementation of a set By Lior Zibi abc - +

129

3. Code review:

Add:

public boolean add(T item) { int key = item.hashCode(); while (true) { Node pred = this.head; Node curr = head.next; while (curr.key < key) { pred = curr; curr = curr.next; } pred.lock(); try { curr.lock();

Search the list from the

beginning each time, until validation succeeds

try { if (validate(pred, curr)) { if (curr.key == key) { return false; } else { Node Node = new Node(item); Node.next = curr; pred.next = Node; return true; } } } finally { curr.unlock(); } } finally { pred.unlock(); } } }

If validation succeedsAttempt Add

Continued:

4 .Lazy

Page 130: Ordered linked list implementation of a set By Lior Zibi abc - +

130

3. Code review:

Remove:

public boolean remove(T item) { int key = item.hashCode(); while (true) { Node pred = this.head; Node curr = head.next; while (curr.key < key) { pred = curr; curr = curr.next; } pred.lock(); try { curr.lock(); try {

Search the list from the

beginning each time, until validation succeeds

try{ if (validate(pred, curr)) { if (curr.key != key) { return false; } else { curr.marked = true; pred.next = curr.next; return true; } } } finally { curr.unlock(); } } finally { pred.unlock(); } } }

Validation

Continued:

4 .Lazy

Logically remove

Physically remove

Page 131: Ordered linked list implementation of a set By Lior Zibi abc - +

131

3. Code review:

Contains:

public boolean contains(T item) { int key = item.hashCode(); Node curr = this.head; while (curr.key < key) curr = curr.next; return curr.key == key && !curr.marked; }

Check if its there and not marked

4 .Lazy

No Lock!

Page 132: Ordered linked list implementation of a set By Lior Zibi abc - +

132

4. Methods properties:

Remove and Add:• Assuming fair scheduler. Even if all the lock

implementations are Starvation free. The same scenario we showed for optimistic holds here.

• (only here the validation will fail because the node will be marked and not because it can’t be reached from head)

• And so our implementation won’t be starvation free.

4 .Lazy

Page 133: Ordered linked list implementation of a set By Lior Zibi abc - +

133

4. Methods properties:

But… Contains:• Contains does not lock!

• In fact it isn’t dependent on other threads to work.

• And so… Contains is Wait-free.

• Do notice that other threads can’t increase the list forever while the thread is in contains because we have a maximum size to the list (<tail).

4 .Lazy

Page 134: Ordered linked list implementation of a set By Lior Zibi abc - +

134

5. Advantages / Disadvantages:

• Advantages:– Contains is Wait-free. Usually 90% of the calls!– Validation doesn’t rescan the list.

• Drawbacks:– Failure to validate restarts the function call.– Add and Remove use locks.

Next implementation: (not today) Lock free list.

4 .Lazy

Page 135: Ordered linked list implementation of a set By Lior Zibi abc - +

135

6. Running times:

Speed up

0

2

4

6

8

10

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds 2000 max

items in list

20000 maxitems in list

4 .Lazy

Page 136: Ordered linked list implementation of a set By Lior Zibi abc - +

136

6. Running times:

Speed up max of 2000 items

0

510

1520

25

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds

Fine List

CoarseGrained

Optimistic

Lazy

4 .Lazy

Page 137: Ordered linked list implementation of a set By Lior Zibi abc - +

137

6. Running times:

Speed up max of 20000 items

0

1020

3040

50

4 8 12 16 20 24 28 32

No. Threads

Sec

on

ds

Fine List

CoarseGrained

Optimistic

Lazy

4 .Lazy

Page 138: Ordered linked list implementation of a set By Lior Zibi abc - +

Art of Multiprocessor Programming 138

Summary

Our winner: Lazy.

Second best: Optimistic.

Third: Fine-Grained.

Last: Coarse-Grained.

?

Page 139: Ordered linked list implementation of a set By Lior Zibi abc - +

Art of Multiprocessor Programming 139

Summary

Answer: No.

Choose your implementation carefully based on your requirements.

Page 140: Ordered linked list implementation of a set By Lior Zibi abc - +

140

The end