fleet_executor.h 1.4 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

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

namespace paddle {
namespace framework {
class ProgramDesc;
}

namespace distributed {
class RuntimeGraph;
29 30
class Carrier;
class MessageBus;
L
LiYuRio 已提交
31 32 33 34

class FleetExecutor final {
 public:
  FleetExecutor() = delete;
35
  explicit FleetExecutor(const std::string& exe_desc_str);
L
LiYuRio 已提交
36 37 38 39 40 41 42 43 44
  ~FleetExecutor();
  void Init(const paddle::framework::ProgramDesc& program_desc);
  void Run();
  void Release();

 private:
  DISABLE_COPY_AND_ASSIGN(FleetExecutor);
  FleetExecutorDesc exe_desc_;
  std::unique_ptr<RuntimeGraph> runtime_graph_;
45
  void InitMessageBus();
46
  void InitCarrier();
L
LiYuRio 已提交
47 48 49 50
};

}  // namespace distributed
}  // namespace paddle