You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.0 KiB
69 lines
2.0 KiB
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
|
|
|
|
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. */
|
|
|
|
#include "paddle/framework/program_desc.h"
|
|
#include "paddle/framework/block_desc.h"
|
|
|
|
namespace paddle {
|
|
namespace framework {
|
|
|
|
BlockDesc *ProgramDesc::AppendBlock(const BlockDesc &parent) {
|
|
auto *b = desc_.add_blocks();
|
|
b->set_parent_idx(parent.ID());
|
|
b->set_idx(desc_.blocks_size() - 1);
|
|
blocks_.emplace_back(new BlockDesc(this, b));
|
|
return blocks_.back().get();
|
|
}
|
|
|
|
proto::ProgramDesc *ProgramDesc::Proto() {
|
|
for (auto &block : blocks_) {
|
|
block->Flush();
|
|
}
|
|
return &desc_;
|
|
}
|
|
|
|
ProgramDesc::ProgramDesc() {
|
|
auto *block = desc_.mutable_blocks()->Add();
|
|
block->set_idx(kRootBlockIndex);
|
|
block->set_parent_idx(kNoneBlockIndex);
|
|
blocks_.emplace_back(new BlockDesc(this, block));
|
|
}
|
|
|
|
ProgramDesc::ProgramDesc(const ProgramDesc &o) {
|
|
desc_ = o.desc_;
|
|
|
|
for (int i = 0; i < desc_.blocks_size(); ++i) {
|
|
auto *block = desc_.mutable_blocks(i);
|
|
blocks_.emplace_back(new BlockDesc(*o.blocks_[i], block, this));
|
|
}
|
|
}
|
|
|
|
ProgramDesc::ProgramDesc(const proto::ProgramDesc &desc) {
|
|
desc_ = desc;
|
|
for (auto &block_desc : *desc_.mutable_blocks()) {
|
|
blocks_.emplace_back(new BlockDesc(this, &block_desc));
|
|
}
|
|
}
|
|
|
|
ProgramDesc::ProgramDesc(const std::string &binary_str) {
|
|
PADDLE_ENFORCE(desc_.ParseFromString(binary_str),
|
|
"Fail to parse program_desc from binary string.");
|
|
for (auto &block_desc : *desc_.mutable_blocks()) {
|
|
blocks_.emplace_back(new BlockDesc(this, &block_desc));
|
|
}
|
|
}
|
|
|
|
} // namespace framework
|
|
} // namespace paddle
|