In another question, someone showed a screenshot of his TensorBoard, displaying memory usage per node:
I never see those in my experiments with Tensorboard. All I'm doing is calling
writer = tf.summary.FileWriter('/tmp/tensorboard', sess.graph)
after sess.run(). Are there perhaps some "summaries" that I need to add to record memory usage?

