aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/backend/event_processing/event_accumulator.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/tensorboard/backend/event_processing/event_accumulator.py')
-rw-r--r--tensorflow/tensorboard/backend/event_processing/event_accumulator.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tensorflow/tensorboard/backend/event_processing/event_accumulator.py b/tensorflow/tensorboard/backend/event_processing/event_accumulator.py
index beba28da06..d5a91bbb6a 100644
--- a/tensorflow/tensorboard/backend/event_processing/event_accumulator.py
+++ b/tensorflow/tensorboard/backend/event_processing/event_accumulator.py
@@ -438,6 +438,14 @@ class EventAccumulator(object):
"""
return self._health_pills.Items(node_name)
+ def GetOpsWithHealthPills(self):
+ """Determines which ops have at least 1 health pill event.
+
+ Returns:
+ A list of names of ops with at least 1 health pill event.
+ """
+ return self._health_pills.Keys()
+
def Graph(self):
"""Return the graph definition, if there is one.