// Copyright (c) 2021 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 #include #include #include #include "paddle/fluid/distributed/fleet_executor/interceptor.h" #include "paddle/fluid/distributed/fleet_executor/interceptor_message.pb.h" #include "paddle/fluid/distributed/fleet_executor/task_loop_thread_pool.h" #include "paddle/fluid/platform/device_context.h" #include "paddle/fluid/platform/enforce.h" #include "paddle/fluid/platform/errors.h" #include "paddle/fluid/platform/macros.h" #include "paddle/fluid/platform/place.h" namespace paddle { namespace framework { class Scope; } namespace distributed { class TaskNode; class InterceptorMessageServiceImpl; class RuntimeGraph; class MessageBus; class Carrier final { public: explicit Carrier(int64_t carrier_id) : carrier_id_(carrier_id) {} ~Carrier(); void Init(int64_t rank, const std::unordered_map& interceptor_id_to_rank, const std::unordered_set& interceptor_ids); void Init( int64_t rank, const std::unordered_map& interceptor_id_to_rank, const std::unordered_set& interceptor_ids, const std::unordered_map& interceptor_id_to_node, framework::Scope* root_scope, framework::Scope* minibatch_scope, const std::vector& microbatch_scopes, const platform::Place& place); void Release(); void Wait(); void WakeUp(); // Enqueue a message to corresponding interceptor id bool EnqueueInterceptorMessage(const InterceptorMessage& interceptor_message); // get interceptor based on the interceptor id Interceptor* GetInterceptor(int64_t interceptor_id); // set interceptor with interceptor id Interceptor* SetInterceptor(int64_t interceptor_id, std::unique_ptr); void SetMsgBus(const std::shared_ptr& msg_bus) { msg_bus_ = msg_bus; } void Start(); bool IsInit() const; bool Send(const InterceptorMessage& msg); private: DISABLE_COPY_AND_ASSIGN(Carrier); Carrier() = delete; // create each Interceptor void CreateInterceptors(); int64_t GetRank(int64_t interceptor_id) const; // interceptor logic id to actually interceptor std::unordered_map> interceptor_idx_to_interceptor_; std::vector source_interceptor_ids_; bool is_init_{false}; std::mutex running_mutex_; std::condition_variable cond_var_; std::vector microbatch_scopes_; framework::Scope* root_scope_; framework::Scope* minibatch_scope_; paddle::platform::Place place_; paddle::platform::DeviceContext* dev_ctx_{nullptr}; std::shared_ptr msg_bus_; int64_t rank_; int64_t carrier_id_; std::unordered_map interceptor_id_to_node_; std::unordered_map interceptor_id_to_rank_; int thread_num_; TaskLoopThreadPool thread_pool_; std::unordered_set interceptor_ids_; }; } // namespace distributed } // namespace paddle