a, b, c, d, e = abcde
dsk = {
(a, 0): 0,
(a, 1): 0,
(a, 2): 0,
(b, 0, 0, 0): (f, (a, 0), (1, 5, 5)),
(b, 0, 0, 1): (f, (a, 1), (1, 5, 5)),
(b, 0, 0, 2): (f, (a, 2), (1, 5, 5)),
(b, 0, 1, 0): (f, (a, 0), (1, 5, 5)),
(b, 0, 1, 1): (f, (a, 1), (1, 5, 5)),
(b, 0, 1, 2): (f, (a, 2), (1, 5, 5)),
(b, 1, 0, 0): (f, (a, 0), (1, 5, 5)),
(b, 1, 0, 1): (f, (a, 1), (1, 5, 5)),
(b, 1, 0, 2): (f, (a, 2), (1, 5, 5)),
(b, 1, 1, 0): (f, (a, 0), (1, 5, 5)),
(b, 1, 1, 1): (f, (a, 1), (1, 5, 5)),
(b, 1, 1, 2): (f, (a, 2), (1, 5, 5)),
(c, 0, 0, 1): (f, [(b, 0, 1, 0), (b, 0, 1, 1), (b, 0, 1, 2)]),
(c, 0, 1, 0): (f, [(b, 1, 0, 0), (b, 1, 0, 1), (b, 1, 0, 2)]),
(c, 0, 1, 1): (f, [(b, 1, 1, 0), (b, 1, 1, 1), (b, 1, 1, 2)]),
(c, 0, 0, 0): (f, [(b, 0, 0, 0), (b, 0, 0, 1), (b, 0, 0, 2)]),
(d, 0, 0, 0): (c, 0, 0, 0),
(d, 0, 0, 1): (c, 0, 0, 1),
(d, 0, 1, 0): (c, 0, 1, 0),
(d, 0, 1, 1): (c, 0, 1, 1),
}
Looks like I caught our first severe regression introduced by #10535
Pre #10535max_pressure: 6
Tasks are loaded as required and reducers are scheduled promptly. This is nice.
Main (w/ regression)max_pressure: 8

We can see that dependents of root tasks
1and2are scheduled greedily. This can become quite bad for very large graphs.Raw graph for testing