fleet_executor.h 2.2 KB
Newer Older
L
LiYuRio 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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 <memory>
17
#include <string>
18

19
#include "paddle/fluid/distributed/fleet_executor/carrier.h"
L
LiYuRio 已提交
20 21
#include "paddle/fluid/distributed/fleet_executor/fleet_executor_desc.pb.h"
#include "paddle/fluid/platform/macros.h"
22
#include "paddle/fluid/platform/place.h"
L
LiYuRio 已提交
23 24 25 26

namespace paddle {
namespace framework {
class ProgramDesc;
27
class Scope;
28
}  // namespace framework
L
LiYuRio 已提交
29 30 31

namespace distributed {
class RuntimeGraph;
32
class MessageBus;
33
class TaskNode;
L
LiYuRio 已提交
34 35 36 37

class FleetExecutor final {
 public:
  FleetExecutor() = delete;
38
  explicit FleetExecutor(const std::string& exe_desc_str);
39
  explicit FleetExecutor(const FleetExecutorDesc& exe_desc);
L
LiYuRio 已提交
40
  ~FleetExecutor();
41
  void Init(const std::string& carrier_id,
42 43 44 45
            const framework::ProgramDesc& program_desc,
            framework::Scope* scope,
            const platform::Place& place,
            int64_t num_micro_batches,
46
            const std::vector<TaskNode*>& task_nodes,
47 48
            const std::unordered_map<int64_t, int64_t>& task_id_to_rank,
            const std::vector<std::string>& inference_root_scope_vars = {});
49
  void Run(const std::string& carrier_id);
L
LiYuRio 已提交
50 51 52

 private:
  DISABLE_COPY_AND_ASSIGN(FleetExecutor);
53
  void InitMessageBus();
54
  void InitCarrier(
55 56 57 58 59
      Carrier* carrier,
      framework::Scope* scope,
      const platform::Place& place,
      int64_t num_micro_batches,
      const framework::ProgramDesc& program_desc,
60
      const std::vector<std::string>& inference_root_scope_vars = {});
61
  FleetExecutorDesc exe_desc_;
62
  std::shared_ptr<RuntimeGraph> runtime_graph_;
63
  std::unordered_set<std::string> carrier_ids_;
L
LiYuRio 已提交
64 65 66 67
};

}  // namespace distributed
}  // namespace paddle