/* Copyright (c) 2018 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. */ #include #include #include "framework/program/program_desc.h" #include "framework/program/tensor_desc.h" namespace paddle_mobile { namespace framework { ProgramDesc::ProgramDesc(PaddleMobile__Framework__Proto__ProgramDesc *desc) { for (int i = 0; i < desc->n_blocks; ++i) { blocks_.emplace_back(std::make_shared(desc->blocks[i])); } for (auto &block : blocks_) { for (auto op : block->Ops()) { for (const auto &attr : op->GetProtoAttr()) { if (attr.type == PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__BLOCK) { size_t blk_idx = attr.block_idx; op->SetBlockAttr(attr.name, this->MutableBlock(blk_idx)); } else if (attr.type == PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__BLOCKS) { size_t n_blocks_idx = attr.n_blocks_idx; int32_t *blks_idx = attr.blocks_idx; std::vector block_descs; for (size_t i = 0; i < n_blocks_idx; ++i) { block_descs.push_back(this->MutableBlock(blks_idx[i])); } op->SetBlocksAttr(attr.name, block_descs); } } } } } void ProgramDesc::Description(std::string header) const { #ifdef PADDLE_MOBILE_DEBUG if (header.size()) { LOG(kLOG_INFO) << header; } for (int i = 0; i < this->blocks_.size(); ++i) { auto block = this->blocks_[i]; LOG(kLOG_DEBUG) << "block: " << block->ID(); LOG(kLOG_INFO) << "block ops size: " << block->Ops().size(); for (int j = 0; j < block->Ops().size(); ++j) { auto op = block->Ops()[j]; LOG(kLOG_DEBUG1) << "op: " << op->Type(); for (auto &input : op->GetInputs()) { LOG(kLOG_DEBUG2) << "input parameter: " << input.first; for (auto &n : input.second) { LOG(kLOG_DEBUG3) << "argument - " << n; } } for (auto &output : op->GetOutputs()) { LOG(kLOG_DEBUG2) << "output parameter: " << output.first; for (auto &n : output.second) { LOG(kLOG_DEBUG3) << "argument - " << n; } } for (auto &attr : op->GetAttrMap()) { if (attr.first == "op_callstack") continue; LOG(kLOG_DEBUG2) << "attr name: " << attr.first; LOG(kLOG_DEBUG3) << "argument - " << attr.second; } } for (const auto &var_desc : block->Vars()) { LOG(kLOG_DEBUG1) << "var name: " << var_desc->Name(); if (var_desc->Type() == VARTYPE_TYPE_LOD_TENSOR) { const TensorDesc &tensor_desc = var_desc->Tensor_desc(); LOG(kLOG_DEBUG2) << "in var tensor desc dims size: " << tensor_desc.Dims().size(); for (int l = 0; l < tensor_desc.Dims().size(); ++l) { LOG(kLOG_DEBUG3) << "var tensor desc dim " << l << " value: " << tensor_desc.Dims()[l]; } } } } for (const auto &block : this->blocks_) { } #endif } std::shared_ptr ProgramDesc::Block(size_t idx) { return blocks_[idx]; } } // namespace framework } // namespace paddle_mobile