1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
#!./tesh
$ ./pj_dump --dot ../traces/categories.trace
> digraph PajeTypes {
> "0" [shape=folder, label="0 (0)"];
> "0" -> "0-LINK3-HOST1";
> "0" -> "0-LINK3-LINK3";
> "0" -> "0-HOST1-LINK3";
> "0" -> "LINK";
> "0" -> "HOST";
> "HOST" [shape=folder, label="HOST (1)"];
> "HOST" -> "power";
> "HOST" -> "pfinalize";
> "HOST" -> "pdata";
> "HOST" -> "prequest";
> "HOST" -> "pcompute";
> "pcompute" [shape=plaintext, label="pcompute (10)"];
> "prequest" [shape=plaintext, label="prequest (12)"];
> "pdata" [shape=plaintext, label="pdata (14)"];
> "pfinalize" [shape=plaintext, label="pfinalize (16)"];
> "power" [shape=plaintext, label="power (2)"];
> "LINK" [shape=folder, label="LINK (3)"];
> "LINK" -> "bcompute";
> "LINK" -> "latency";
> "LINK" -> "bandwidth";
> "LINK" -> "bfinalize";
> "LINK" -> "bdata";
> "LINK" -> "brequest";
> "brequest" [shape=plaintext, label="brequest (11)"];
> "bdata" [shape=plaintext, label="bdata (13)"];
> "bfinalize" [shape=plaintext, label="bfinalize (15)"];
> "bandwidth" [shape=plaintext, label="bandwidth (4)"];
> "latency" [shape=plaintext, label="latency (5)"];
> "bcompute" [shape=plaintext, label="bcompute (9)"];
> "0-HOST1-LINK3" [shape=rarrow, label="0-HOST1-LINK3 (6)"];
> "0-LINK3-LINK3" [shape=rarrow, label="0-LINK3-LINK3 (7)"];
> "0-LINK3-HOST1" [shape=rarrow, label="0-LINK3-HOST1 (8)"];
> }
$ ./pj_dump -f --dot ../traces/categories.trace
> digraph PajeTypes {
> "0" [shape=folder, label="0 (0)"];
> "0" -> "0-LINK3-HOST1";
> "0" -> "0-LINK3-LINK3";
> "0" -> "0-HOST1-LINK3";
> "0" -> "LINK";
> "0" -> "HOST";
> "HOST" [shape=folder, label="HOST (1)"];
> "HOST" -> "power";
> "HOST" -> "pfinalize";
> "HOST" -> "pdata";
> "HOST" -> "prequest";
> "HOST" -> "pcompute";
> "pcompute" [shape=plaintext, label="pcompute (10)"];
> "prequest" [shape=plaintext, label="prequest (12)"];
> "pdata" [shape=plaintext, label="pdata (14)"];
> "pfinalize" [shape=plaintext, label="pfinalize (16)"];
> "power" [shape=plaintext, label="power (2)"];
> "LINK" [shape=folder, label="LINK (3)"];
> "LINK" -> "bcompute";
> "LINK" -> "latency";
> "LINK" -> "bandwidth";
> "LINK" -> "bfinalize";
> "LINK" -> "bdata";
> "LINK" -> "brequest";
> "brequest" [shape=plaintext, label="brequest (11)"];
> "bdata" [shape=plaintext, label="bdata (13)"];
> "bfinalize" [shape=plaintext, label="bfinalize (15)"];
> "bandwidth" [shape=plaintext, label="bandwidth (4)"];
> "latency" [shape=plaintext, label="latency (5)"];
> "bcompute" [shape=plaintext, label="bcompute (9)"];
> "0-HOST1-LINK3" [shape=rarrow, label="0-HOST1-LINK3 (6)"];
> "0-LINK3-LINK3" [shape=rarrow, label="0-LINK3-LINK3 (7)"];
> "0-LINK3-HOST1" [shape=rarrow, label="0-LINK3-HOST1 (8)"];
> }
|