program_desc.cc 7.4 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
#include "paddle/fluid/framework/program_desc.h"
16

Y
Yi Wang 已提交
17
#include "paddle/fluid/framework/feed_fetch_type.h"
X
version  
Xin Pan 已提交
18
#include "paddle/fluid/framework/version.h"
F
fengjiayi 已提交
19 20 21 22

namespace paddle {
namespace framework {

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

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

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

42 43
proto::OpVersionMap *ProgramDesc::OpVersionMap() {
  return desc_.mutable_op_version_map();
44 45
}

X
clean  
Xin Pan 已提交
46
int64_t ProgramDesc::Version() const { return desc_.version().version(); }
X
version  
Xin Pan 已提交
47

48 49 50 51
void ProgramDesc::SetVersion(const int64_t version) {
  desc_.mutable_version()->set_version(version);
}

Y
Yu Yang 已提交
52
ProgramDesc::ProgramDesc() {
53
  SetVersion(kCurProgramVersion);
54
  auto *block = desc_.mutable_blocks()->Add();
55 56
  block->set_idx(kRootBlockIndex);
  block->set_parent_idx(kNoneBlockIndex);
Y
Yu Yang 已提交
57
  blocks_.emplace_back(new BlockDesc(this, block));
F
fengjiayi 已提交
58
}
Y
Yu Yang 已提交
59

Y
Yu Yang 已提交
60
ProgramDesc::ProgramDesc(const ProgramDesc &o) {
61
  desc_ = o.desc_;
62
  std::vector<framework::BlockDesc *> old_block_desc;
63 64
  for (int i = 0; i < desc_.blocks_size(); ++i) {
    auto *block = desc_.mutable_blocks(i);
Y
Yu Yang 已提交
65
    blocks_.emplace_back(new BlockDesc(*o.blocks_[i], block, this));
66 67
    // record all block desc's ptr from origin program
    old_block_desc.emplace_back(o.blocks_[i].get());
Y
Yu Yang 已提交
68
  }
F
fengjiayi 已提交
69 70 71 72
  for (size_t block_id = 0; block_id < blocks_.size(); ++block_id) {
    auto all_ops = blocks_[block_id]->AllOps();
    for (size_t op_id = 0; op_id < all_ops.size(); ++op_id) {
      auto &op = all_ops[op_id];
X
Xin Pan 已提交
73

F
fengjiayi 已提交
74 75
      for (const std::string &attr_name : op->AttrNames()) {
        if (op->GetAttrType(attr_name) == proto::AttrType::BLOCK) {
76 77
          framework::BlockDesc *block_desc =
              BOOST_GET_CONST(framework::BlockDesc *, op->GetAttr(attr_name));
78 79
          if (std::find(old_block_desc.begin(),
                        old_block_desc.end(),
80 81 82 83 84 85 86 87 88 89 90 91
                        block_desc) != old_block_desc.end()) {
            // The block is owned by the origin program. Just use id to get
            // the corresponding block.
            int sub_block_id =
                o.Block(block_id).Op(op_id)->GetBlockAttrId(attr_name);
            op->SetBlockAttr(attr_name, MutableBlock(sub_block_id));
          } else {
            // The block is not owned by the origin program. Should copy
            // the real block desc instead of logical block in the program.
            VLOG(3) << "Set op's block attr with the original block";
            op->SetBlockAttr(attr_name, block_desc);
          }
X
Xin Pan 已提交
92 93 94 95 96 97 98 99
        } else if (op->GetAttrType(attr_name) == proto::AttrType::BLOCKS) {
          std::vector<int> sub_block_ids =
              o.Block(block_id).Op(op_id)->GetBlocksAttrIds(attr_name);
          std::vector<BlockDesc *> block_descs;
          for (int block_id : sub_block_ids) {
            block_descs.push_back(MutableBlock(block_id));
          }
          op->SetBlocksAttr(attr_name, block_descs);
K
Kexin Zhao 已提交
100 101 102 103
        }
      }
    }
  }
Y
Yu Yang 已提交
104
}
105

Y
Yu Yang 已提交
106
ProgramDesc::ProgramDesc(const proto::ProgramDesc &desc) {
107
  desc_ = desc;
X
Xin Pan 已提交
108
  InitFromProto();
109 110
}

X
Xin Pan 已提交
111 112 113 114 115 116
void ProgramDesc::CopyFrom(const proto::ProgramDesc &desc) {
  blocks_.clear();
  desc_ = desc;
  InitFromProto();
}

Y
Yu Yang 已提交
117
ProgramDesc::ProgramDesc(const std::string &binary_str) {
118 119
  PADDLE_ENFORCE_EQ(desc_.ParseFromString(binary_str),
                    true,
120 121
                    platform::errors::InvalidArgument(
                        "Failed to parse program_desc from binary string."));
X
Xin Pan 已提交
122 123 124 125
  InitFromProto();
}

void ProgramDesc::InitFromProto() {
126
  for (auto &block_desc : *desc_.mutable_blocks()) {
Y
Yu Yang 已提交
127
    blocks_.emplace_back(new BlockDesc(this, &block_desc));
128
  }
F
fengjiayi 已提交
129 130 131 132 133 134
  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));
X
Xin Pan 已提交
135 136 137 138 139 140 141
        } else if (attr.type() == proto::AttrType::BLOCKS) {
          auto blks_idx = attr.blocks_idx();
          std::vector<BlockDesc *> block_descs;
          for (int blk_idx : blks_idx) {
            block_descs.push_back(this->MutableBlock(blk_idx));
          }
          op->SetBlocksAttr(attr.name(), block_descs);
F
fengjiayi 已提交
142 143 144 145
        }
      }
    }
  }
146 147
}

148
const std::vector<std::string> ProgramDesc::GetFeedTargetNames() {
149
  auto &global_block = Block(0);
150 151
  // The order of feed_target_names must follow the index specified in `col`.
  // since feed operator's order doesn't necessary follow 'col'.
152
  std::vector<std::string> feed_target_names;
153
  for (auto *op : global_block.AllOps()) {
154
    if (op->Type() == kFeedOpType) {
155
      size_t col = BOOST_GET_CONST(int, op->GetAttr("col"));
156 157 158 159
      if (col >= feed_target_names.size()) {
        feed_target_names.resize(col + 1);
      }
      feed_target_names[col] = op->Output("Out")[0];
160 161
    }
  }
162
  return feed_target_names;
163 164
}

165
const std::vector<std::string> ProgramDesc::GetFetchTargetNames() {
166
  auto &global_block = Block(0);
167 168
  // The order of fetch_target_names must follow the index specified in `col`.
  // since fetch operator's order doesn't necessary follow 'col'.
169
  std::vector<std::string> fetch_target_names;
170
  for (auto *op : global_block.AllOps()) {
171
    if (op->Type() == kFetchOpType) {
172
      size_t col = BOOST_GET_CONST(int, op->GetAttr("col"));
173 174 175 176
      if (col >= fetch_target_names.size()) {
        fetch_target_names.resize(col + 1);
      }
      fetch_target_names[col] = op->Input("X")[0];
177 178
    }
  }
179
  return fetch_target_names;
180 181
}

182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
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 已提交
220 221
}  // namespace framework
}  // namespace paddle