runtime_graph.h 2.2 KB
Newer Older
L
LiYuRio 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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
16
#include <memory>
17
#include <string>
18 19 20 21 22
#include <unordered_map>
#include <vector>
#include "paddle/fluid/distributed/fleet_executor/fleet_executor_desc.pb.h"
#include "paddle/fluid/framework/op_proto_maker.h"
#include "paddle/fluid/platform/macros.h"
L
LiYuRio 已提交
23 24 25 26

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

namespace distributed {
31
class TaskNode;
L
LiYuRio 已提交
32 33 34

class RuntimeGraph final {
 public:
35 36
  using ProgramDesc = paddle::framework::ProgramDesc;
  using OperatorBase = paddle::framework::OperatorBase;
L
LiYuRio 已提交
37
  RuntimeGraph() = default;
38 39
  explicit RuntimeGraph(const ProgramDesc& program,
                        const FleetExecutorDesc& exe_desc);
L
LiYuRio 已提交
40
  ~RuntimeGraph() = default;
41 42 43 44 45 46
  const std::unordered_map<int64_t, TaskNode*>& intercepter_id_to_node() const {
    return intercepter_id_to_node_;
  }
  const std::unordered_map<int64_t, int64_t>& intercepter_id_to_rank() const {
    return intercepter_id_to_rank_;
  }
47
  std::string DebugString() const;
L
LiYuRio 已提交
48

49
 private:
L
LiYuRio 已提交
50
  DISABLE_COPY_AND_ASSIGN(RuntimeGraph);
51 52 53 54
  void SplitProgramBasedFunctionality(const ProgramDesc& program);
  void FakeDependence();
  void AssignTaskToIntercepter();
  void FakeRuntimeInfo();
55
  void OriginProgramCompile(const ProgramDesc& program);
56 57 58 59 60 61 62
  // LRSched, Forward, Backward, Optimize
  static std::vector<paddle::framework::OpRole> functionality_order;
  std::vector<std::unique_ptr<TaskNode>> task_nodes_;
  std::vector<std::unique_ptr<OperatorBase>> ops_;
  std::unordered_map<int64_t, TaskNode*> intercepter_id_to_node_;
  std::unordered_map<int64_t, int64_t> intercepter_id_to_rank_;
  FleetExecutorDesc exe_desc_;
L
LiYuRio 已提交
63 64 65 66
};

}  // namespace distributed
}  // namespace paddle