File:Fork-join computation.svg

Summary

Description
English: Graph representation of a fork–join computation.
Date
Source Own work
Author Qwertyus

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-4.0#Fork-join%20computation.svg
Category:Self-published work

Graphviz source code

digraph "Fork–join" {
    rankdir=LR;

    { node[style=invis] start end; }
    { node[label="join"] join1 join2; }

    start -> "fork g(1)"        [label="f(1, 2)"];
    "fork g(1)" -> join1        [label="1 × 2"];

    "fork g(1)" -> "fork g(2)"  [label="h(2)"];
    "fork g(2)" -> join2        [label="2 × 2"];

    "fork g(2)" -> join2        [label="2 + 1"];

    join2 -> join1              [label="4 + 3"];

    join1 -> end                [label="2 + 7"];
}
Category:Graph theory Category:Parallel computing
Category:CC-BY-SA-4.0 Category:Graph theory Category:Parallel computing Category:Self-published work