/* 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 "program_desc.h" namespace paddle_mobile { namespace framework { ProgramDesc::ProgramDesc(const proto::ProgramDesc &desc) { for (auto &block_desc : desc.blocks()) { // new framework::BlockDesc(block_desc) blocks_.emplace_back(std::make_shared(block_desc)); } } void ProgramDesc::Description(std::string header) { #ifdef PADDLE_MOBILE_DEBUG if (header.size()){ LOG(kLOG_INFO) << header; } for (const auto &block : this->blocks_) { LOG(kLOG_DEBUG) << "block: " << block->ID(); LOG(kLOG_INFO) << "block ops size: " << block->Ops().size(); for (int j = 0; j < block->Ops().size(); ++j) { const 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()) { LOG(kLOG_DEBUG2) << "attr name:: " << attr.first; LOG(kLOG_DEBUG3) << "argument - " << attr.second; } } } #endif } std::shared_ptr ProgramDesc::Block(size_t idx) { return blocks_[idx]; } } // namespace framework } // namespace paddle_mobile