Home
last modified time | relevance | path

Searched refs:sorted_ops (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dhuman_readable_profile_builder.cc130 std::vector<OpInfo> sorted_ops(op_infos_); in ToString() local
131 absl::c_sort(sorted_ops, [](const OpInfo& a, const OpInfo& b) { in ToString()
134 for (const auto& op : sorted_ops) { in ToString()
/external/tensorflow/tensorflow/contrib/graph_editor/
Dtransform.py463 sorted_ops = sorted(info.sgv.ops, key=lambda op: op._id) # pylint: disable=protected-access
464 for op in sorted_ops:
/external/tensorflow/tensorflow/python/tpu/
Dtensor_tracer.py564 sorted_ops = []
571 sorted_ops.append(op)
592 assert len(g.get_operations()) == len(sorted_ops)
593 return (True, sorted_ops)