Home
last modified time | relevance | path

Searched refs:graph_op_creation (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_events_writer_test.py108 graph_op_creation = debug_event_pb2.GraphOpCreation()
109 graph_op_creation.op_type = "Conv2D"
110 graph_op_creation.op_name = "Conv2D_%d" % i
111 writer.WriteGraphOpCreation(graph_op_creation)
122 self.assertEqual(actuals[i].graph_op_creation.op_type, "Conv2D")
123 self.assertEqual(actuals[i].graph_op_creation.op_name, "Conv2D_%d" % i)
159 graph_op_creation = debug_event_pb2.GraphOpCreation()
161 graph_op_creation.op_name = "Op%d" % graph_op_state["counter"]
163 writer.WriteGraphOpCreation(graph_op_creation)
201 actuals = list(item.debug_event.graph_op_creation
[all …]
Ddebug_events_writer.py86 def WriteGraphOpCreation(self, graph_op_creation): argument
94 graph_op_creation=graph_op_creation)
Ddumping_callback.py573 graph_op_creation = debug_event_pb2.GraphOpCreation(
584 writer.WriteGraphOpCreation(graph_op_creation)
Ddebug_events_reader.py1000 if debug_event.graph_op_creation.ByteSize():
1001 op_creation_proto = debug_event.graph_op_creation
/external/tensorflow/tensorflow/core/util/
Ddebug_events_writer_test.cc390 GraphOpCreation* graph_op_creation = new GraphOpCreation(); in TEST_F() local
391 graph_op_creation->set_op_type("MatMul"); in TEST_F()
392 graph_op_creation->set_op_name("Dense_1/MatMul"); in TEST_F()
393 TF_ASSERT_OK(writer->WriteGraphOpCreation(graph_op_creation)); in TEST_F()
409 GraphOpCreation actual_op_creation = actuals[0].graph_op_creation(); in TEST_F()
574 op_types.push_back(actuals[i].graph_op_creation().op_type()); in TEST_F()
575 op_names.push_back(actuals[i].graph_op_creation().op_name()); in TEST_F()
Ddebug_events_writer.h137 Status WriteGraphOpCreation(GraphOpCreation* graph_op_creation);
Ddebug_events_writer.cc215 GraphOpCreation* graph_op_creation) { in WriteGraphOpCreation() argument
217 debug_event.set_allocated_graph_op_creation(graph_op_creation); in WriteGraphOpCreation()
/external/tensorflow/tensorflow/core/protobuf/
Ddebug_event.proto89 GraphOpCreation graph_op_creation = 7; field