changes
[cdsspec-compiler.git] / correctness-model / writeup / figures / fence_sw_w_collapse.dot
1 digraph fence_sw_w_collapse {
2 margin=0
3 ranksep=.3;
4
5 N1 [label="A: store(release)", shape=none];
6 N3 [label="Y: v.store(2)", shape=none];
7 N4 [label="Z: v.load()", shape=none];
8 N5 [label="B: fence(acquire)", shape=none];
9 N6 [style=invis, shape=point];
10
11 //N1 -> N5 [label="sw", color=blue, penwidth=3, constraint=false];
12 N1 -> N3 [label="rs", color="#555555"];
13 N3 -> N4 [label="rf", color=red];
14 N4 -> N5 [label="sb", color=blue, weight=100];
15 N1 -> N6 [style=invis];
16 N6 -> N3 [style=invis];
17 {rank=same; N3 N4 N6}
18 }