Searched refs:debugged_graph (Results 1 – 7 of 7) sorted by relevance
112 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 …]
99 def WriteDebuggedGraph(self, debugged_graph): argument106 debug_event = debug_event_pb2.DebugEvent(debugged_graph=debugged_graph)
1013 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
395 DebuggedGraph* debugged_graph = new DebuggedGraph(); in TEST_F() local396 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()
140 Status WriteDebuggedGraph(DebuggedGraph* debugged_graph);
221 Status DebugEventsWriter::WriteDebuggedGraph(DebuggedGraph* debugged_graph) { in WriteDebuggedGraph() argument223 debug_event.set_allocated_debugged_graph(debugged_graph); in WriteDebuggedGraph()
92 DebuggedGraph debugged_graph = 8; field