threadpool.cc 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
//
// 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
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// 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.

#include "paddle/phi/core/threadpool.h"
D
dzhwinter 已提交
16

17 18
#include <thread>

T
typhoonzero 已提交
19
#include "gflags/gflags.h"
20
#include "glog/logging.h"
21
#include "paddle/phi/core/enforce.h"
Y
Yi Wang 已提交
22

23
DECLARE_int32(dist_threadpool_size);
24 25
DEFINE_int32(io_threadpool_size,
             100,
T
typhoonzero 已提交
26 27
             "number of threads used for doing IO, default 100");

28
namespace phi {
G
gongweibao 已提交
29

Y
Yi Wang 已提交
30 31 32 33 34 35 36 37 38 39 40 41
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 已提交
42 43
    if (FLAGS_dist_threadpool_size > 0) {
      num_threads = FLAGS_dist_threadpool_size;
M
minqiyang 已提交
44
      VLOG(1) << "set dist_threadpool_size to " << num_threads;
G
gongweibao 已提交
45
    }
46
    PADDLE_ENFORCE_GT(
47 48
        num_threads,
        0,
49
        phi::errors::InvalidArgument("The number of threads is 0."));
50
    threadpool_ = std::make_unique<ThreadPool>(num_threads);
Y
Yi Wang 已提交
51 52 53
  }
}

X
Xin Pan 已提交
54
ThreadPool::ThreadPool(int num_threads) : running_(true) {
Y
Yi Wang 已提交
55
  threads_.resize(num_threads);
Y
Yancey1989 已提交
56
  for (auto& thread : threads_) {
57 58 59
    // TODO(Yancey1989): binding the thread on the specify CPU numberw
    thread =
        std::make_unique<std::thread>(std::bind(&ThreadPool::TaskLoop, this));
Y
Yi Wang 已提交
60 61 62 63 64 65
  }
}

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

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

Y
Yancey1989 已提交
77
void ThreadPool::TaskLoop() {
78
  while (true) {
Q
Qiao Longfei 已提交
79
    Task task;
Y
Yi Wang 已提交
80

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

Q
Qiao Longfei 已提交
86 87 88
      if (!running_ && tasks_.empty()) {
        return;
      }
89

Q
Qiao Longfei 已提交
90
      if (tasks_.empty()) {
91 92
        PADDLE_THROW(
            phi::errors::Unavailable("Current thread has no task to Run."));
Q
Qiao Longfei 已提交
93
      }
Q
Qiao Longfei 已提交
94

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

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

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

T
typhoonzero 已提交
112
void ThreadPoolIO::InitIO() {
T
typhoonzero 已提交
113 114
  if (io_threadpool_.get() == nullptr) {
    // TODO(typhoonzero1986): make this configurable
115
    io_threadpool_ = std::make_unique<ThreadPool>(FLAGS_io_threadpool_size);
T
typhoonzero 已提交
116 117
  }
}
118
}  // namespace phi