/* 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_ASYNC_EXECUTOR_H_ #define PADDLE_FLUID_FRAMEWORK_ASYNC_EXECUTOR_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() {} /** * Create thread level scope which is a child of root scope */ void CreateThreadScope(const framework::ProgramDesc& program); void SetThreadId(int tid); /** * Create */ void CreateThreadOperators(const framework::ProgramDesc& program); /** * Set current root scope */ void SetRootScope(Scope* g_scope); void SetDevice(); void SetMainProgram(const ProgramDesc& main_program_desc); void SetPlace(const paddle::platform::Place& place); /** * current DataFeed is defined in class **/ void BindingDataFeedMemory(); void SetDataFeed(const std::shared_ptr& datafeed); 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_; }; class AsyncExecutor { public: explicit AsyncExecutor(const platform::Place& place); virtual ~AsyncExecutor() {} void SetRootScope(const Scope* root_scope); Scope* GetRootScope() { return root_scope_; } void CheckFiles( const std::vector& files); void RunFromFiles( const ProgramDesc& main_program, const std::vector& files, const int thread_num); public: Scope* root_scope_; platform::Place place_; }; } // namespace framework } // namespace paddle #endif // PADDLE_FLUID_FRAMEWORK_ASYNC_EXECUTOR_H_ /* vim: set expandtab ts=2 sw=2 sts=2 tw=100: */