/* Copyright (c) 2018 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. */ #pragma once #include #include #include #include // NOLINT #include #include // NOLINT #include // NOLINT #include // NOLINT #include #include #if defined(PADDLE_WITH_PSLIB) && !defined(PADDLE_WITH_HETERPS) #include "bthread/bthread.h" #endif #include "paddle/fluid/framework/program_desc.h" #include "paddle/fluid/framework/scope.h" #include "paddle/fluid/platform/timer.h" namespace paddle { namespace framework { class DataFeed; enum HeterTaskState { PULL_SPARSE, OP_RUN, XPU, OP_RUN_END, PUSH_GRAD, DONE }; class HeterTask { public: HeterTask() {} virtual ~HeterTask() {} void Update() { if (state_ == PULL_SPARSE) { state_ = OP_RUN; } else if (state_ == OP_RUN) { state_ = XPU; // state_ = PUSH_GRAD; // state_ = PUSH_GRAD; } else if (state_ == XPU) { state_ = OP_RUN_END; } else if (state_ == OP_RUN_END) { state_ = PUSH_GRAD; } else if (state_ == PUSH_GRAD) { state_ = DONE; } } void Reset() { total_time = 0; read_time = 0; pack_time = 0; pull_sparse_local_time = 0; op_all_time = 0; xpu_op_time = 0; xpu_wait_time = 0; cpu_op_time = 0; collect_label_time = 0; fill_sparse_time = 0; push_sparse_time = 0; gpu_2_cpu_time = 0; cpu_2_gpu_time = 0; timeline.Reset(); } void Show() { std::cout << "features size " << features_.size() << std::endl; for (size_t i = 0; i < features_.size(); ++i) { std::cout << "features[" << i << "] size " << features_[i].size() << std::endl; } } void PackTask(Scope* scope, int taskid, DataFeed* reader, int cur_batch, const ProgramDesc& program); void PackGpuTask(Scope* thread_scope, DataFeed* reader, const ProgramDesc& program); Scope* scope_{nullptr}; int taskid_; int cur_batch_; HeterTaskState state_; // cache std::map> features_; std::map> feature_labels_; std::map>> feature_values_; std::map>> feature_grads_; std::map> sparse_push_keys_; double total_time{0}; double read_time{0}; double pack_time{0}; double pull_sparse_local_time{0}; double op_all_time{0}; double xpu_op_time{0}; double xpu_wait_time{0}; double cpu_op_time{0}; double collect_label_time{0}; double fill_sparse_time{0}; double push_sparse_time{0}; double gpu_2_cpu_time{0}; double cpu_2_gpu_time{0}; platform::Timer timeline; }; template class HeterObjectPool { public: HeterObjectPool() {} virtual ~HeterObjectPool() {} std::shared_ptr Get() { std::lock_guard lock(mutex_); if (pool_.empty()) { num_ += 1; return std::make_shared(); } else { auto ret = pool_.back(); pool_.pop_back(); return ret; } } void Push(std::shared_ptr data) { std::lock_guard lock(mutex_); pool_.push_back(std::move(data)); } int Size() { std::lock_guard lock(mutex_); return pool_.size(); } bool Empty() { std::lock_guard lock(mutex_); return pool_.empty(); } std::shared_ptr& GetElement(int i) { return pool_[i]; } private: std::vector> pool_; std::mutex mutex_; int num_{0}; }; #if defined(PADDLE_WITH_PSLIB) && !defined(PADDLE_WITH_HETERPS) struct BthreadMutextGuard { explicit BthreadMutextGuard(bthread_mutex_t* rho) { mutex_ = rho; bthread_mutex_lock(mutex_); } ~BthreadMutextGuard() { bthread_mutex_unlock(mutex_); } bthread_mutex_t* mutex_; }; template class BtObjectPool { public: BtObjectPool() { bthread_mutex_init(&mutex_, NULL); bthread_cond_init(&cond_, NULL); } virtual ~BtObjectPool() { bthread_cond_destroy(&cond_); bthread_mutex_destroy(&mutex_); } std::shared_ptr Get() { BthreadMutextGuard guard(&mutex_); while (pool_.empty()) { bthread_cond_wait(&cond_, &mutex_); } auto ret = pool_.back(); pool_.pop_back(); return ret; } void Push(std::shared_ptr data) { BthreadMutextGuard guard(&mutex_); pool_.push_back(std::move(data)); bthread_cond_signal(&cond_); } int Size() { return pool_.size(); } std::shared_ptr& GetElement(int i) { return pool_[i]; } private: std::vector> pool_; bthread_mutex_t mutex_; bthread_cond_t cond_; int num_{0}; }; template struct HeterNode { K key; T value; HeterNode* prev; HeterNode* next; }; template class HeterList { public: HeterList() : head_(new HeterNode), tail_(new HeterNode) { head_->prev = NULL; head_->next = tail_; tail_->prev = head_; tail_->next = NULL; size = 0; cap_ = 1e9; } ~HeterList() { delete head_; delete tail_; } void SetCap(int num) { cap_ = num; } bool TryPut(const K& key, const T& value) { std::unique_lock lock(mutex_); cond_.wait(lock, [this] { return size < cap_; }); if (task_map_.find(key) != task_map_.end()) { task_map_.erase(key); return false; } else { HeterNode* node = new HeterNode; node->key = key; node->value = value; map_[node->key] = node; attach(node); return true; } } bool Put(const K& key, const T& value) { std::unique_lock lock(mutex_); cond_.wait(lock, [this] { return size < cap_; }); HeterNode* node = new HeterNode; node->key = key; node->value = value; map_[node->key] = node; attach(node); return true; } T TryGet(const K& key) { std::lock_guard lock(mutex_); auto iter = map_.find(key); if (iter != map_.end()) { HeterNode* node = iter->second; detach(node); cond_.notify_one(); T ret = std::move(node->value); map_.erase(key); delete node; return ret; } task_map_.insert(key); return nullptr; } T Get(const K& key) { std::lock_guard lock(mutex_); auto iter = map_.find(key); if (iter != map_.end()) { HeterNode* node = iter->second; detach(node); cond_.notify_one(); T ret = std::move(node->value); map_.erase(key); delete node; return ret; } return nullptr; } T Get() { std::lock_guard lock(mutex_); HeterNode* node = head_->next; if (node == tail_) { return nullptr; } else { detach(node); cond_.notify_one(); T ret = std::move(node->value); map_.erase(node->key); delete node; return ret; } } bool Empty() { std::lock_guard lock(mutex_); return head_->next == tail_; } int Size() { std::lock_guard lock(mutex_); return size; } private: void detach(HeterNode* node) { node->prev->next = node->next; node->next->prev = node->prev; size--; } void attach(HeterNode* node) { node->prev = head_; node->next = head_->next; head_->next->prev = node; head_->next = node; size++; } private: HeterNode* head_; HeterNode* tail_; std::unordered_map*> map_; std::unordered_set task_map_; std::mutex mutex_; std::condition_variable cond_; int cap_; int size; }; #endif } // namespace framework } // namespace paddle