| 34 | } |
| 35 | |
| 36 | void TF_StartPrefetchRunners(const char* graph_key, TF_Session* session, |
| 37 | TF_Status* status) { |
| 38 | auto prefetch_runner_mgr = tensorflow::PrefetchRunnerMgr::singleton(); |
| 39 | status->status = |
| 40 | prefetch_runner_mgr->StartRunners(graph_key, session->session); |
| 41 | } |
| 42 | |
| 43 | void TF_StopPrefetchRunners(const char* graph_key, TF_Session* session, |
| 44 | TF_Status* status) { |
nothing calls this directly
no test coverage detected