program_desc.cc 4.6 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
F
fengjiayi 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Y
Yi Wang 已提交
15 16 17
#include "paddle/fluid/framework/program_desc.h"
#include "paddle/fluid/framework/block_desc.h"
#include "paddle/fluid/framework/feed_fetch_type.h"
F
fengjiayi 已提交
18 19 20 21

namespace paddle {
namespace framework {

Y
Yu Yang 已提交
22
BlockDesc *ProgramDesc::AppendBlock(const BlockDesc &parent) {
23
  auto *b = desc_.add_blocks();
F
fengjiayi 已提交
24
  b->set_parent_idx(parent.ID());
25
  b->set_idx(desc_.blocks_size() - 1);
Y
Yu Yang 已提交
26
  blocks_.emplace_back(new BlockDesc(this, b));
F
fengjiayi 已提交
27 28 29
  return blocks_.back().get();
}

30
void ProgramDesc::Flush() {
F
fengjiayi 已提交
31
  for (auto &block : blocks_) {
32
    block->Flush();
F
fengjiayi 已提交
33
  }
34 35 36 37
}

proto::ProgramDesc *ProgramDesc::Proto() {
  Flush();
38
  return &desc_;
F
fengjiayi 已提交
39 40
}

Y
Yu Yang 已提交
41
ProgramDesc::ProgramDesc() {
42
  auto *block = desc_.mutable_blocks()->Add();
43 44
  block->set_idx(kRootBlockIndex);
  block->set_parent_idx(kNoneBlockIndex);
Y
Yu Yang 已提交
45
  blocks_.emplace_back(new BlockDesc(this, block));
F
fengjiayi 已提交
46
}
Y
Yu Yang 已提交
47

Y
Yu Yang 已提交
48
ProgramDesc::ProgramDesc(const ProgramDesc &o) {
49 50 51
  desc_ = o.desc_;
  for (int i = 0; i < desc_.blocks_size(); ++i) {
    auto *block = desc_.mutable_blocks(i);
Y
Yu Yang 已提交
52
    blocks_.emplace_back(new BlockDesc(*o.blocks_[i], block, this));
Y
Yu Yang 已提交
53
  }
K
Kexin Zhao 已提交
54 55 56 57 58 59 60 61 62 63
  for (auto &block : blocks_) {
    for (auto *op : block->AllOps()) {
      for (const auto &attr : op->Proto()->attrs()) {
        if (attr.type() == proto::AttrType::BLOCK) {
          size_t blk_idx = attr.block_idx();
          op->SetBlockAttr(attr.name(), *this->MutableBlock(blk_idx));
        }
      }
    }
  }
Y
Yu Yang 已提交
64
}
65

Y
Yu Yang 已提交
66
ProgramDesc::ProgramDesc(const proto::ProgramDesc &desc) {
67 68
  desc_ = desc;
  for (auto &block_desc : *desc_.mutable_blocks()) {
Y
Yu Yang 已提交
69
    blocks_.emplace_back(new BlockDesc(this, &block_desc));
70
  }
71 72
  for (auto &block : blocks_) {
    for (auto *op : block->AllOps()) {
K
Kexin Zhao 已提交
73 74 75 76
      for (const auto &attr : op->Proto()->attrs()) {
        if (attr.type() == proto::AttrType::BLOCK) {
          size_t blk_idx = attr.block_idx();
          op->SetBlockAttr(attr.name(), *this->MutableBlock(blk_idx));
77 78 79 80
        }
      }
    }
  }
81 82
}

Y
Yu Yang 已提交
83
ProgramDesc::ProgramDesc(const std::string &binary_str) {
84 85 86
  PADDLE_ENFORCE(desc_.ParseFromString(binary_str),
                 "Fail to parse program_desc from binary string.");
  for (auto &block_desc : *desc_.mutable_blocks()) {
Y
Yu Yang 已提交
87
    blocks_.emplace_back(new BlockDesc(this, &block_desc));
88 89 90
  }
}

91
const std::vector<std::string> ProgramDesc::GetFeedTargetNames() {
92
  auto &global_block = Block(0);
93
  std::vector<std::string> feed_target_names;
94
  for (auto *op : global_block.AllOps()) {
95 96
    if (op->Type() == kFeedOpType) {
      feed_target_names.insert(feed_target_names.begin(), op->Output("Out")[0]);
97 98
    }
  }
99
  return feed_target_names;
100 101
}

102
const std::vector<std::string> ProgramDesc::GetFetchTargetNames() {
103
  auto &global_block = Block(0);
104
  std::vector<std::string> fetch_target_names;
105
  for (auto *op : global_block.AllOps()) {
106 107
    if (op->Type() == kFetchOpType) {
      fetch_target_names.push_back(op->Input("X")[0]);
108 109
    }
  }
110
  return fetch_target_names;
111 112
}

113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
void ProgramDesc::SetFeedHolderName(const std::string &feed_holder_name) {
  auto *global_block = MutableBlock(0);
  int index = 0;
  for (auto *op : global_block->AllOps()) {
    if (op->Type() == kFeedOpType) {
      // Unify the input's name of all feed_ops to feed_holder_name
      global_block->RemoveVar(op->Input("X")[0]);
      op->SetInput("X", {feed_holder_name});
      op->SetAttr("col", {index});
      op->CheckAttrs();
      index++;
    }
  }

  auto *feed_holder = global_block->Var(feed_holder_name);
  feed_holder->SetType(proto::VarType::FEED_MINIBATCH);
  feed_holder->SetPersistable(true);
}

void ProgramDesc::SetFetchHolderName(const std::string &fetch_holder_name) {
  auto *global_block = MutableBlock(0);
  int index = 0;
  for (auto *op : global_block->AllOps()) {
    if (op->Type() == kFetchOpType) {
      // Unify the output's name of all fetch_ops to fetch_holder_name
      global_block->RemoveVar(op->Output("Out")[0]);
      op->SetOutput("Out", {fetch_holder_name});
      op->SetAttr("col", {index});
      op->CheckAttrs();
      index++;
    }
  }

  auto *fetch_holder = global_block->Var(fetch_holder_name);
  fetch_holder->SetType(proto::VarType::FETCH_LIST);
  fetch_holder->SetPersistable(true);
}

F
fengjiayi 已提交
151 152
}  // namespace framework
}  // namespace paddle