HomeSort by relevance Sort by last modified time
    Searched defs:EnvThread (Results 1 - 2 of 2) sorted by null

  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
ThreadEnvironment.h 20 // EnvThread constructor must start the thread,
22 class EnvThread {
24 EnvThread(std::function<void()> f) : thr_(std::move(f)) {}
25 ~EnvThread() { thr_.join(); }
31 EnvThread* CreateThread(std::function<void()> f) { return new EnvThread(std::move(f)); }
  /external/tensorflow/tensorflow/core/lib/core/
threadpool.cc 32 typedef Thread EnvThread;
50 EnvThread* CreateThread(std::function<void()> f) {

Completed in 211 milliseconds