Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/distributed_runtime/
Dpartial_run_mgr.cc50 auto run_it = step_id_to_partial_run_.find(step_id); in ExecutorDone() local
51 if (run_it == step_id_to_partial_run_.end()) { in ExecutorDone()
58 done = std::move(run_it->second->final_callback); in ExecutorDone()
60 run_it->second->final_status = executor_status; in ExecutorDone()
62 callback_status = run_it->second->final_status; in ExecutorDone()
63 run_it->second->executor_done = true; in ExecutorDone()
77 auto run_it = step_id_to_partial_run_.find(step_id); in PartialRunDone() local
78 if (run_it == step_id_to_partial_run_.end()) { in PartialRunDone()
81 run_it->second->final_status.Update(status); in PartialRunDone()
82 if (!run_it->second->executor_done) { in PartialRunDone()
[all …]