Tensorboard— Compute time of a High-level node is not the same as the summation of compute times of its sub-nodes
问题 Following the tutorial on TensorFlow, I am trying to understand run-time statistics using tensorboard. I find that the compute time of a High-level node representing a name scope is not equal to the sum of compute times of its sub-nodes. Why isn't it the same? For example, in the attached snapshot: Compute time of ConvLayer2 = 75.5 ms, while the Sub-nodes compute time = 55.2 (conv) + 1.73 (add) + 1 (other nodes) = 57.9 ms Snapshot of ConvLayer2 import numpy as np import tensorflow as tf from