Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/common_runtime/
Ddirect_session.cc291 thread_pools_.emplace_back(pool, owned); in DirectSession()
294 thread_pools_.emplace_back(NewThreadPoolFromSessionOptions(options_), in DirectSession()
297 thread_pools_.emplace_back(GlobalThreadPool(options), false /* owned */); in DirectSession()
349 for (const auto& p_and_owned : thread_pools_) { in ~DirectSession()
578 static_cast<int32>(thread_pools_.size())) { in RunInternal()
604 ? thread_pools_[run_options.inter_op_thread_pool()].first in RunInternal()
611 pool = thread_pools_[0].first; in RunInternal()
842 thread::ThreadPool* pool = thread_pools_[0].first; in PRunSetup()
1241 func_info->flib_def.get(), optimizer_opts, thread_pools_[0].first)); in CreateExecutors()
Ddirect_session.h327 std::vector<std::pair<thread::ThreadPool*, bool>> thread_pools_; variable