batch_norm_fork.dot 856 字节
Newer Older
_青葱's avatar
_青葱 已提交
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
digraph ImageBatchNormForkGragh {
  subgraph cluster_before {
    Prev [label="...", shape=plaintext];
    Rnn [label="rnn_op", shape=box];
    BatchNorm [label="batch_norm_op", shape=box];
    Fc [label="fc_op", shape=box];
    After [label="...", shape=plaintext];
    Prev -> Rnn -> BatchNorm -> Fc -> After;
    label="original";
  }

  subgraph cluster_after {
    Prev2 [label="...", shape=plaintext];
    Rnn2 [label="rnn_op", shape=box];
    BatchNorm2_1 [label="train_batch_norm_op", shape=box];
    BatchNorm2_2 [label="infer_batch_norm_op", shape=box];
    Fc2_1 [label="fc_op", shape=box];
    Fc2_2 [label="fc_op", shape=box];
    After2_1 [label="...", shape=plaintext];
    After2_2 [label="...", shape=plaintext];
    Prev2 -> Rnn2 -> BatchNorm2_1 -> Fc2_1 -> After2_1;
    Rnn2 -> BatchNorm2_2 ->Fc2_2 ->After2_2
    label="forked";
  }
}