threadpool.cc 3.4 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2

Y
Yi Wang 已提交
3 4 5
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
D
dzhwinter 已提交
6

Y
Yi Wang 已提交
7
   http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8

Y
Yi Wang 已提交
9 10 11 12 13
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License. */
D
dzhwinter 已提交
14

Y
Yi Wang 已提交
15
#include "paddle/fluid/framework/threadpool.h"
D
dzhwinter 已提交
16

T
typhoonzero 已提交
17
#include "gflags/gflags.h"
Y
Yi Wang 已提交
18
#include "paddle/fluid/platform/enforce.h"
Y
Yi Wang 已提交
19

T
typhoonzero 已提交
20 21 22
DEFINE_int32(io_threadpool_size, 100,
             "number of threads used for doing IO, default 100");

G
gongweibao 已提交
23 24 25
DEFINE_int32(dist_threadpool_size, 0,
             "number of threads used for distributed executed.");

D
dzhwinter 已提交
26 27
namespace paddle {
namespace framework {
Y
Yi Wang 已提交
28 29 30 31 32 33 34 35 36 37 38 39
std::unique_ptr<ThreadPool> ThreadPool::threadpool_(nullptr);
std::once_flag ThreadPool::init_flag_;

ThreadPool* ThreadPool::GetInstance() {
  std::call_once(init_flag_, &ThreadPool::Init);
  return threadpool_.get();
}

void ThreadPool::Init() {
  if (threadpool_.get() == nullptr) {
    // TODO(Yancey1989): specify the max threads number
    int num_threads = std::thread::hardware_concurrency();
G
gongweibao 已提交
40 41
    if (FLAGS_dist_threadpool_size > 0) {
      num_threads = FLAGS_dist_threadpool_size;
M
minqiyang 已提交
42
      VLOG(1) << "set dist_threadpool_size to " << num_threads;
G
gongweibao 已提交
43
    }
Y
Yi Wang 已提交
44 45 46 47 48
    PADDLE_ENFORCE_GT(num_threads, 0);
    threadpool_.reset(new ThreadPool(num_threads));
  }
}

X
Xin Pan 已提交
49
ThreadPool::ThreadPool(int num_threads) : running_(true) {
Y
Yi Wang 已提交
50
  threads_.resize(num_threads);
Y
Yancey1989 已提交
51 52
  for (int i = 0; i < num_threads; ++i) {
    // for (auto& thread : threads_) {
Y
Yi Wang 已提交
53
    // TODO(Yancey1989): binding the thread on the specify CPU number
Y
Yancey1989 已提交
54 55 56 57 58 59 60 61 62
    threads_[i].reset(
        new std::thread(std::bind(&ThreadPool::TaskLoop, this, i)));
    /**
    sched_param sch;
    int policy;
    pthread_getschedparam(threads_[i]->native_handle(), &policy, &sch);
    if (pthread_setschedparam(threads_[i]->native_handle(), SCHED_FIFO, &sch)) {
      VLOG(1) << "Failed to setschedparam: " << errno;
    }**/
Y
Yi Wang 已提交
63 64 65 66 67 68
  }
}

ThreadPool::~ThreadPool() {
  {
    // notify all threads to stop running
Q
Qiao Longfei 已提交
69
    std::unique_lock<std::mutex> l(mutex_);
Y
Yi Wang 已提交
70 71
    running_ = false;
  }
Q
Qiao Longfei 已提交
72
  scheduled_.notify_all();
Y
Yi Wang 已提交
73 74 75 76 77 78 79

  for (auto& t : threads_) {
    t->join();
    t.reset(nullptr);
  }
}

Y
Yancey1989 已提交
80
void ThreadPool::TaskLoop(int i) {
81
  while (true) {
Q
Qiao Longfei 已提交
82
    Task task;
Y
Yi Wang 已提交
83

Q
Qiao Longfei 已提交
84 85 86 87
    {
      std::unique_lock<std::mutex> lock(mutex_);
      scheduled_.wait(
          lock, [this] { return !this->tasks_.empty() || !this->running_; });
88

Q
Qiao Longfei 已提交
89 90 91
      if (!running_ && tasks_.empty()) {
        return;
      }
92

Q
Qiao Longfei 已提交
93 94 95
      if (tasks_.empty()) {
        PADDLE_THROW("This thread has no task to Run");
      }
Q
Qiao Longfei 已提交
96

Q
Qiao Longfei 已提交
97 98 99 100
      // pop a task from the task queue
      task = std::move(tasks_.front());
      tasks_.pop();
    }
Y
Yi Wang 已提交
101 102 103 104
    // run the task
    task();
  }
}
D
dzhwinter 已提交
105

T
typhoonzero 已提交
106 107
std::unique_ptr<ThreadPool> ThreadPoolIO::io_threadpool_(nullptr);
std::once_flag ThreadPoolIO::io_init_flag_;
T
typhoonzero 已提交
108

T
typhoonzero 已提交
109 110
ThreadPool* ThreadPoolIO::GetInstanceIO() {
  std::call_once(io_init_flag_, &ThreadPoolIO::InitIO);
T
typhoonzero 已提交
111
  return io_threadpool_.get();
T
typhoonzero 已提交
112 113
}

T
typhoonzero 已提交
114
void ThreadPoolIO::InitIO() {
T
typhoonzero 已提交
115 116
  if (io_threadpool_.get() == nullptr) {
    // TODO(typhoonzero1986): make this configurable
T
typhoonzero 已提交
117
    io_threadpool_.reset(new ThreadPool(FLAGS_io_threadpool_size));
T
typhoonzero 已提交
118 119 120
  }
}

D
dzhwinter 已提交
121 122
}  // namespace framework
}  // namespace paddle