program_desc.cpp 2.8 KB
Newer Older
L
liuruilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

L
liuruilong 已提交
15
#include <string>
L
liuruilong 已提交
16
#include <vector>
L
liuruilong 已提交
17

L
liuruilong 已提交
18
#include "framework/program/tensor_desc.h"
L
liuruilong 已提交
19
#include "program_desc.h"
L
liuruilong 已提交
20 21 22 23

namespace paddle_mobile {
namespace framework {

L
liuruilong 已提交
24 25 26
ProgramDesc::ProgramDesc(PaddleMobile__Framework__Proto__ProgramDesc *desc) {
  for (int i = 0; i < desc->n_blocks; ++i) {
    blocks_.emplace_back(std::make_shared<BlockDesc>(desc->blocks[i]));
L
liuruilong 已提交
27 28 29 30 31
  }
}

void ProgramDesc::Description(std::string header) {
#ifdef PADDLE_MOBILE_DEBUG
L
liuruilong 已提交
32
  if (header.size()) {
L
liuruilong 已提交
33 34
    LOG(kLOG_INFO) << header;
  }
L
liuruilong 已提交
35 36 37

  for (int i = 0; i < this->blocks_.size(); ++i) {
    auto block = this->blocks_[i];
L
liuruilong 已提交
38 39 40
    LOG(kLOG_DEBUG) << "block: " << block->ID();
    LOG(kLOG_INFO) << "block ops size: " << block->Ops().size();
    for (int j = 0; j < block->Ops().size(); ++j) {
L
liuruilong 已提交
41
      auto op = block->Ops()[j];
L
liuruilong 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54
      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;
        }
      }
E
eclipsycn 已提交
55 56 57 58
           for (auto &attr : op->GetAttrMap()) {
             LOG(kLOG_DEBUG2) << "attr name:: " << attr.first;
             LOG(kLOG_DEBUG3) << "argument - " << attr.second;
           }
L
liuruilong 已提交
59
    }
L
liuruilong 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74

    for (const auto &var_desc : block->Vars()) {
      if (var_desc->Type() == VARTYPE_TYPE_LOD_TENSOR) {
        LOG(kLOG_DEBUG1) << "var name: " << var_desc->Name();

        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];
        }
      }
    }
L
liuruilong 已提交
75
  }
L
liuruilong 已提交
76 77 78

  for (const auto &block : this->blocks_) {
  }
L
liuruilong 已提交
79 80 81 82 83 84 85 86 87
#endif
}

std::shared_ptr<BlockDesc> ProgramDesc::Block(size_t idx) {
  return blocks_[idx];
}

}  // namespace framework
}  // namespace paddle_mobile