| 41 | } |
| 42 | |
| 43 | void TF_StopPrefetchRunners(const char* graph_key, TF_Session* session, |
| 44 | TF_Status* status) { |
| 45 | auto prefetch_runner_mgr = tensorflow::PrefetchRunnerMgr::singleton(); |
| 46 | status->status = |
| 47 | prefetch_runner_mgr->StopRunners(graph_key, session->session); |
| 48 | } |
| 49 | |
| 50 | } // end of namespace tensorflow |
nothing calls this directly
no test coverage detected