/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve. 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/framework/threadpool.h" #include "paddle/platform/enforce.h" namespace paddle { namespace framework { std::unique_ptr 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(); PADDLE_ENFORCE_GT(num_threads, 0); threadpool_.reset(new ThreadPool(num_threads)); } } ThreadPool::ThreadPool(int num_threads) : total_threads_(num_threads), idle_threads_(num_threads), running_(true) { threads_.resize(num_threads); for (auto& thread : threads_) { // TODO(Yancey1989): binding the thread on the specify CPU number thread.reset(new std::thread(std::bind(&ThreadPool::TaskLoop, this))); } } ThreadPool::~ThreadPool() { { // notify all threads to stop running running_ = false; scheduled_.notify_all(); } for (auto& t : threads_) { t->join(); t.reset(nullptr); } } void ThreadPool::Wait() { std::unique_lock lock(mutex_); completed_.wait(lock, [=] { return Done() == true; }); } void ThreadPool::TaskLoop() { while (running_) { std::unique_lock lock(mutex_); scheduled_.wait(lock, [=] { return !tasks_.empty() || !running_; }); if (!running_) { break; } // pop a task from the task queue auto task = std::move(tasks_.front()); tasks_.pop(); --idle_threads_; lock.unlock(); // run the task task(); { std::unique_lock lock(mutex_); ++idle_threads_; if (Done()) { completed_.notify_all(); } } } } } // namespace framework } // namespace paddle