Searched refs:get_operations (Results 1 – 25 of 90) sorted by relevance
1234
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | control_flow_util_test.py | 111 for n in g.get_operations(): 133 for n in g.get_operations(): 157 for n in g.get_operations(): 172 for n in g.get_operations():
|
D | partitioned_variables_test.py | 566 ops_before_read = session.graph.get_operations() 569 op for op in session.graph.get_operations() 589 ops_before_concat = session.graph.get_operations() 592 op for op in session.graph.get_operations()
|
D | matmul_op_test.py | 156 for op in g.get_operations(): 167 for op in g.get_operations():
|
/external/tensorflow/tensorflow/python/profiler/ |
D | pprof_profiler_test.py | 40 graph.get_operations.return_value = [] 56 graph.get_operations.return_value = [op1] 85 graph.get_operations.return_value = [op1]
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | debug_utils.py | 154 ops = graph.get_operations() 263 ops = graph.get_operations()
|
D | source_utils.py | 195 for op in py_graph.get_operations(): 274 for op in py_graph.get_operations():
|
D | debug_grappler_test.py | 91 original_node_names = set(op.name for op in sess.graph.get_operations())
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | util_with_v1_optimizers_test.py | 116 before_ops = graph.get_operations() 118 self.assertEqual(before_ops, graph.get_operations()) 134 before_ops = graph.get_operations() 136 self.assertEqual(before_ops, graph.get_operations())
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | profile_analyzer_cli_test.py | 111 graph.get_operations.return_value = [op1, op2] 141 graph.get_operations.return_value = [op] 208 graph.get_operations.return_value = [op1, op2] 260 graph.get_operations.return_value = [op1, op2] 314 graph.get_operations.return_value = [op1, op2]
|
/external/tensorflow/tensorflow/python/keras/tests/ |
D | saver_test.py | 129 before_second_restore_ops = restore_graph.get_operations() 133 restore_graph.get_operations())
|
/external/tensorflow/tensorflow/python/ops/ |
D | critical_section_ops.py | 274 existing_ops = ops.get_default_graph().get_operations() 280 created_ops = (set(ops.get_default_graph().get_operations())
|
D | numerics.py | 114 for op in ops.get_default_graph().get_operations():
|
D | op_selector.py | 75 for op in graph.get_operations(): 215 return tops.get_operations()
|
D | cond_v2.py | 262 op for op in true_graph.get_operations() if op._is_stateful 265 op for op in false_graph.get_operations() if op._is_stateful 454 for op in func_graph.get_operations(): 950 {op.name: op.node_def for op in self._forward_graph.get_operations()}, 1155 op for op in bg.get_operations() if auto_control_deps.op_is_stateful(op)
|
/external/tensorflow/tensorflow/python/tpu/ |
D | tensor_tracer_report.py | 104 op_in_degree = {op: _in_op_degree(op) for op in g.get_operations()} 132 assert len(g.get_operations()) == len(sorted_ops) 189 operations = graph.get_operations()
|
D | feature_column_v2_test.py | 214 x.type for x in ops.get_default_graph().get_operations() 218 x.type for x in ops.get_default_graph().get_operations() 438 x.type for x in ops.get_default_graph().get_operations() 442 x.type for x in ops.get_default_graph().get_operations()
|
D | bfloat16_test.py | 61 g_ops = g.get_operations()
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_placeholder_op_test.py | 73 self.assertEqual([op.type for op in graph.get_operations()],
|
/external/tensorflow/tensorflow/python/framework/ |
D | function_def_to_graph_test.py | 52 g.get_operations(), 132 g.get_operations(),
|
D | auto_control_deps.py | 245 self._n_operations = len(self._graph.get_operations()) 343 new_operations = self._graph.get_operations()[self._n_operations:]
|
/external/tensorflow/tensorflow/python/eager/ |
D | lift_to_graph_test.py | 79 ops = g.get_operations()
|
/external/tensorflow/tensorflow/python/training/saving/ |
D | functional_saver_test.py | 99 for op in ops.get_default_graph().get_operations(): 189 for op in ops.get_default_graph().get_operations():
|
/external/tensorflow/tensorflow/python/tools/ |
D | freeze_graph.py | 71 for op in sess.graph.get_operations(): 171 for op in sess.graph.get_operations()
|
/external/tensorflow/tensorflow/python/distribute/ |
D | test_util_test.py | 102 order = test_util.topological_sort_operations(graph.get_operations())
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | control_flow_ops.py | 274 existing_ops = set(ops.get_default_graph().get_operations()) 308 new_ops = set(ops.get_default_graph().get_operations()) - existing_ops
|
1234