Home
last modified time | relevance | path

Searched refs:all_ops (Results 1 – 20 of 20) sorted by relevance

/external/tensorflow/tensorflow/python/profiler/
Dtfprof_logger.py172 all_ops = dict()
174 all_ops[entry.name] = entry
176 if op_name in all_ops:
177 all_ops[op_name].types.extend(entry.types)
178 if entry.float_ops > 0 and all_ops[op_name].float_ops == 0:
179 all_ops[op_name].float_ops = entry.float_ops
180 if entry.code_def.traces and not all_ops[op_name].code_def.traces:
181 all_ops[op_name].code_def.MergeFrom(entry.code_def)
183 all_ops[op_name] = entry
184 tmp_op_log.log_entries.extend(all_ops.values())
/external/tensorflow/tensorflow/contrib/
DBUILD209 "//tensorflow/contrib/coder:all_ops",
210 "//tensorflow/contrib/factorization:all_ops",
211 "//tensorflow/contrib/framework:all_ops",
216 "//tensorflow/contrib/rnn:all_ops",
221 "//tensorflow/contrib/text:all_ops",
/external/tensorflow/tensorflow/python/kernel_tests/
Dself_adjoint_eig_op_test.py56 all_ops = []
64 all_ops += [e1, v1, e2, v2]
68 all_ops += [e1, e2]
69 val = self.evaluate(all_ops)
Dmatrix_inverse_op_test.py146 all_ops = []
152 all_ops += [inv1, inv2]
153 inv = self.evaluate(all_ops)
Dmatrix_solve_op_test.py126 all_ops = []
134 all_ops += [s1, s2]
135 val = self.evaluate(all_ops)
Dqr_op_test.py58 all_ops = []
66 all_ops += [q1, r1, q2, r2]
67 val = self.evaluate(all_ops)
Dmatrix_square_root_op_test.py115 all_ops = [sqrt1, sqrt2]
116 sqrt = self.evaluate(all_ops)
Dsvd_op_test.py59 all_ops = []
69 all_ops += [s1, u1, v1, s2, u2, v2]
75 all_ops += [s1, s2]
76 val = self.evaluate(all_ops)
Dcontrol_flow_ops_py_test.py3605 all_ops = x.graph.get_operations()
3606 self.assertFalse(any(name in op.name for op in all_ops))
/external/tensorflow/tensorflow/contrib/periodic_resample/
DBUILD18 name = "all_ops",
99 ":all_ops",
/external/tensorflow/tensorflow/contrib/text/
DBUILD34 ":all_ops",
86 name = "all_ops",
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/serialization/
Ddataset_serialization_test_base.py651 all_ops = ops.get_collection("iterator_ops")
653 init_op, indices, values, dense_shape = all_ops
659 indices, values, dense_shape = all_ops[i:i + 3]
664 get_next_list.append(all_ops[i])
666 return all_ops[0], nest.pack_sequence_as(
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dgpu_hlo_schedule_test.cc316 const HloVec all_ops({d00, d10, d11, d20, d21, d22, d30, d31, d40}); in TEST_F() local
323 for (const HloInstruction* op : all_ops) { in TEST_F()
329 for (const HloInstruction* op : all_ops) { in TEST_F()
355 for (const HloInstruction* op : all_ops) { in TEST_F()
/external/tensorflow/tensorflow/python/framework/
Derror_interpolation.py302 def traceback_files_common_prefix(all_ops): argument
315 for ops in all_ops:
/external/tensorflow/tensorflow/contrib/factorization/
DBUILD34 ":all_ops",
95 name = "all_ops",
/external/tensorflow/tensorflow/contrib/rnn/
DBUILD24 name = "all_ops",
49 ":all_ops",
/external/tensorflow/tensorflow/contrib/graph_editor/tests/
Dtransform_test.py140 all_ops = graph.get_operations()
141 for op in all_ops:
/external/tensorflow/tensorflow/contrib/coder/
DBUILD133 name = "all_ops",
/external/tensorflow/tensorflow/contrib/framework/
DBUILD130 name = "all_ops",
/external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
Drnn_cell_test.py2071 all_ops = nest.flatten(ops_dict.values())
2072 all_ops_group = control_flow_ops.group(*all_ops)