Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/graph_transforms/
Dinsert_logging.cc115 NodeDef* print_node = logged_graph_def.mutable_node()->Add(); in InsertLogging() local
116 print_node->set_op("Print"); in InsertLogging()
117 print_node->set_name(strings::StrCat(node.name(), name_suffix)); in InsertLogging()
123 node_message += ";" + print_node->name() + ";"; in InsertLogging()
126 SetNodeAttr("message", node_message, print_node); in InsertLogging()
127 SetNodeAttr("first_n", first_n, print_node); in InsertLogging()
128 SetNodeAttr("summarize", summarize, print_node); in InsertLogging()
129 print_node->add_input(node.name() + ":0"); in InsertLogging()
130 SetNodeAttr("T", output_types[0], print_node); in InsertLogging()
132 print_node->add_input(strings::StrCat(node.name(), ":", output_index)); in InsertLogging()
[all …]
/external/python/cpython2/Lib/lib2to3/
Dbtm_matcher.py147 def print_node(node): function
154 print_node(subnode)
155 print_node(self.root)
/external/python/cpython3/Lib/lib2to3/
Dbtm_matcher.py142 def print_node(node): function
149 print_node(subnode)
150 print_node(self.root)
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/
Dactivity_test.py152 print_node = node.body[2]
153 if isinstance(print_node, gast.Print):
155 print_args_scope = anno.getanno(print_node, NodeAnno.ARGS_SCOPE)
158 assert isinstance(print_node, gast.Expr)
160 print_node = print_node.value
161 print_args_scope = anno.getanno(print_node, NodeAnno.ARGS_SCOPE)
/external/strace/
Dnuma.c33 print_node(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data) in print_node() function
62 tfetch_mem, print_node, 0); in print_nodemask()
DChangeLog21195 * numa.c (print_node, print_addr): Add kernel_ureg_t support.
29913 * numa.c (print_node): New function.
/external/tensorflow/tensorflow/core/grappler/optimizers/data/
Dvectorization_utils_test.cc483 const NodeDef& print_node = map_defun_fn->node_def( in TEST() local
487 string control_input = strings::StrCat("^", print_node.name()); in TEST()