Home
last modified time | relevance | path

Searched refs:execs_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_node.h291 if (execs_.empty()) { \
295 auto exec = execs_.find(step); \
296 if (exec == execs_.end()) return 0; \
301 for (const auto& exec : execs_) { \
304 return bytes / execs_.size(); \
371 auto exec = execs_.find(step); in trackable()
372 if (exec == execs_.end()) return false; in trackable()
396 for (auto& exec : execs_) { in ToProto()
450 execs_.clear(); in FromProto()
452 auto& exec = execs_[exec_pb.first]; in FromProto()
[all …]
Dtfprof_node.cc214 auto exec = execs_.find(step); in AddStepStat()
215 if (exec == execs_.end()) { in AddStepStat()
216 execs_.insert(std::pair<int64_t, ExecStep>(step, ExecStep())); in AddStepStat()
217 exec = execs_.find(step); in AddStepStat()