plan.h 1.4 KB
Newer Older
L
LiYuRio 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2023 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
L
LiYuRio 已提交
16
#include <memory>
L
LiYuRio 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29
#include <string>
#include <unordered_map>
#include <vector>
#include "paddle/phi/core/macros.h"

namespace paddle {
namespace framework {

class ProgramDesc;
class Job;

class Plan final {
 public:
L
LiYuRio 已提交
30
  Plan(const std::vector<std::shared_ptr<Job>>& job_list,
L
LiYuRio 已提交
31 32 33 34
       const std::unordered_map<std::string, ProgramDesc*>& type_to_program)
      : job_list_(job_list), type_to_program_(type_to_program) {}
  ~Plan() = default;

L
LiYuRio 已提交
35
  const std::vector<std::shared_ptr<Job>>& GetJobList() const;
L
LiYuRio 已提交
36 37 38 39 40
  const std::unordered_map<std::string, ProgramDesc*>& GetTypeToProgram() const;

 private:
  DISABLE_COPY_AND_ASSIGN(Plan);

L
LiYuRio 已提交
41
  std::vector<std::shared_ptr<Job>> job_list_;
L
LiYuRio 已提交
42 43 44 45 46
  std::unordered_map<std::string, ProgramDesc*> type_to_program_;
};

}  // namespace framework
}  // namespace paddle