Home
last modified time | relevance | path

Searched refs:debugged_graph (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_events_writer_test.py112 debugged_graph = debug_event_pb2.DebuggedGraph()
113 debugged_graph.graph_id = "deadbeaf"
114 debugged_graph.graph_name = "MyGraph1"
115 writer.WriteDebuggedGraph(debugged_graph)
124 self.assertEqual(actuals[num_op_creations].debugged_graph.graph_id,
305 debugged_graph = debug_event_pb2.DebuggedGraph(graph_id="graph1",
307 writer.WriteDebuggedGraph(debugged_graph)
464 debugged_graph = debug_event_pb2.DebuggedGraph(graph_id="graph1",
466 writer.WriteDebuggedGraph(debugged_graph)
507 debugged_graph = debug_event_pb2.DebuggedGraph(graph_id="graph1",
[all …]
Ddebug_events_writer.py99 def WriteDebuggedGraph(self, debugged_graph): argument
106 debug_event = debug_event_pb2.DebugEvent(debugged_graph=debugged_graph)
Ddebug_events_reader.py1013 debugged_graph = self._graph_by_id[op_creation_proto.graph_id]
1014 debugged_graph.add_op(op_digest)
1017 debugged_graph.add_op_consumer(src_op_name, int(src_slot),
1020 elif debug_event.debugged_graph.ByteSize():
1021 graph_proto = debug_event.debugged_graph
/external/tensorflow/tensorflow/core/util/
Ddebug_events_writer_test.cc395 DebuggedGraph* debugged_graph = new DebuggedGraph(); in TEST_F() local
396 debugged_graph->set_graph_id("deadbeaf"); in TEST_F()
397 debugged_graph->set_graph_name("my_func_graph"); in TEST_F()
398 TF_ASSERT_OK(writer->WriteDebuggedGraph(debugged_graph)); in TEST_F()
413 DebuggedGraph actual_debugged_graph = actuals[1].debugged_graph(); in TEST_F()
Ddebug_events_writer.h140 Status WriteDebuggedGraph(DebuggedGraph* debugged_graph);
Ddebug_events_writer.cc221 Status DebugEventsWriter::WriteDebuggedGraph(DebuggedGraph* debugged_graph) { in WriteDebuggedGraph() argument
223 debug_event.set_allocated_debugged_graph(debugged_graph); in WriteDebuggedGraph()
/external/tensorflow/tensorflow/core/protobuf/
Ddebug_event.proto92 DebuggedGraph debugged_graph = 8; field