/* 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. */ #ifndef PADDLE_FLUID_FRAMEWORK_EXECUTOR_THREAD_WORKER_H_ #define PADDLE_FLUID_FRAMEWORK_EXECUTOR_THREAD_WORKER_H_ #include #include // NOLINT #include #include #include #include // NOLINT #include #include "paddle/fluid/framework/data_feed.h" #include "paddle/fluid/framework/datafeed_creator.h" #include "paddle/fluid/framework/executor.h" #include "paddle/fluid/framework/program_desc.h" #include "paddle/fluid/framework/scope.h" namespace paddle { namespace framework { void CreateTensor(Variable* var, proto::VarType::Type var_type); class ExecutorThreadWorker { public: ExecutorThreadWorker() {} ~ExecutorThreadWorker() {} void CreateThreadResource(const framework::ProgramDesc& program, const paddle::platform::Place& place); void SetThreadId(int tid); void SetRootScope(Scope* g_scope); void SetDevice(); void BindingDataFeedMemory(); void SetDataFeed(const std::shared_ptr& datafeed); private: void CreateThreadScope(const framework::ProgramDesc& program); void CreateThreadOperators(const framework::ProgramDesc& program); void SetMainProgram(const ProgramDesc& main_program_desc); void SetPlace(const paddle::platform::Place& place); protected: // thread index std::shared_ptr thread_reader_; // shared queue, thread buffer int thread_id_; // operator name std::vector op_names_; // thread level, local operators for forward and backward std::vector ops_; // main program for training std::unique_ptr main_program_; // execution place platform::Place place_; // root scope for model parameters Scope* root_scope_; // a thread scope, father scope is global score which is shared Scope* thread_scope_; }; } // namespace framework } // namespace paddle #endif // PADDLE_FLUID_FRAMEWORK_ASYNC_EXECUTOR_H_ /* vim: set expandtab ts=2 sw=2 sts=2 tw=100: */