Searched refs:all_ops (Results 1 – 20 of 20) sorted by relevance
/external/tensorflow/tensorflow/python/profiler/ |
D | tfprof_logger.py | 172 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/ |
D | BUILD | 209 "//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/ |
D | self_adjoint_eig_op_test.py | 56 all_ops = [] 64 all_ops += [e1, v1, e2, v2] 68 all_ops += [e1, e2] 69 val = self.evaluate(all_ops)
|
D | matrix_inverse_op_test.py | 146 all_ops = [] 152 all_ops += [inv1, inv2] 153 inv = self.evaluate(all_ops)
|
D | matrix_solve_op_test.py | 126 all_ops = [] 134 all_ops += [s1, s2] 135 val = self.evaluate(all_ops)
|
D | qr_op_test.py | 58 all_ops = [] 66 all_ops += [q1, r1, q2, r2] 67 val = self.evaluate(all_ops)
|
D | matrix_square_root_op_test.py | 115 all_ops = [sqrt1, sqrt2] 116 sqrt = self.evaluate(all_ops)
|
D | svd_op_test.py | 59 all_ops = [] 69 all_ops += [s1, u1, v1, s2, u2, v2] 75 all_ops += [s1, s2] 76 val = self.evaluate(all_ops)
|
D | control_flow_ops_py_test.py | 3605 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/ |
D | BUILD | 18 name = "all_ops", 99 ":all_ops",
|
/external/tensorflow/tensorflow/contrib/text/ |
D | BUILD | 34 ":all_ops", 86 name = "all_ops",
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/serialization/ |
D | dataset_serialization_test_base.py | 651 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/ |
D | gpu_hlo_schedule_test.cc | 316 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/ |
D | error_interpolation.py | 302 def traceback_files_common_prefix(all_ops): argument 315 for ops in all_ops:
|
/external/tensorflow/tensorflow/contrib/factorization/ |
D | BUILD | 34 ":all_ops", 95 name = "all_ops",
|
/external/tensorflow/tensorflow/contrib/rnn/ |
D | BUILD | 24 name = "all_ops", 49 ":all_ops",
|
/external/tensorflow/tensorflow/contrib/graph_editor/tests/ |
D | transform_test.py | 140 all_ops = graph.get_operations() 141 for op in all_ops:
|
/external/tensorflow/tensorflow/contrib/coder/ |
D | BUILD | 133 name = "all_ops",
|
/external/tensorflow/tensorflow/contrib/framework/ |
D | BUILD | 130 name = "all_ops",
|
/external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/ |
D | rnn_cell_test.py | 2071 all_ops = nest.flatten(ops_dict.values()) 2072 all_ops_group = control_flow_ops.group(*all_ops)
|