shape_inference.cc 3.4 KB
Newer Older
L
Luo Tao 已提交
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
2

L
Luo Tao 已提交
3 4 5
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
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
14
#include "paddle/framework/shape_inference.h"
15 16
#include "grad_op_desc_maker.h"
#include "paddle/framework/operator.h"
17 18 19 20

namespace paddle {
namespace framework {

F
fengjiayi 已提交
21 22 23 24 25 26 27 28
framework::DDim InferShapeContext::GetInputDim(const std::string &name) const {
  const std::vector<std::string> &arg_names = Inputs(name);
  PADDLE_ENFORCE_EQ(arg_names.size(), 1UL,
                    "Input(%s) shoudl holds one element, but now it holds %d",
                    name, arg_names.size());
  return this->GetDim(arg_names[0]);
}

29 30
std::vector<framework::DDim> InferShapeContext::GetInputsDim(
    const std::string &name) const {
F
fengjiayi 已提交
31 32
  const std::vector<std::string> &arg_names = Inputs(name);
  return GetDims(arg_names);
33 34
}

F
fengjiayi 已提交
35 36 37 38 39 40
DDim InferShapeContext::GetInputsElementDim(const std::string &name,
                                            int idx) const {
  const std::vector<std::string> &names = Inputs(name);
  return this->GetDim(names[idx]);
}

F
fengjiayi 已提交
41 42 43 44 45 46 47 48
void InferShapeContext::SetOutputDim(const std::string &name, const DDim &dim) {
  auto &arg_names = Outputs(name);
  PADDLE_ENFORCE_EQ(arg_names.size(), 1UL,
                    "Output(%s) shoudl holds one element, but now it holds %d",
                    name, arg_names.size());
  SetDim(arg_names[0], dim);
}

49 50 51 52 53 54
void InferShapeContext::SetOutputsDim(
    const std::string &name, const std::vector<framework::DDim> &dims) {
  auto &names = Outputs(name);
  SetDims(names, dims);
}

F
fengjiayi 已提交
55
std::vector<DDim> InferShapeContext::GetDims(
56 57 58 59 60 61 62 63 64 65 66 67 68
    const std::vector<std::string> &names) const {
  std::vector<framework::DDim> ret;
  ret.reserve(names.size());
  std::transform(
      names.begin(), names.end(), std::back_inserter(ret),
      [this](const std::string &name) { return this->GetDim(name); });
  return ret;
}
void InferShapeContext::SetDims(const std::vector<std::string> &names,
                                const std::vector<framework::DDim> &dims) {
  size_t length = names.size();
  PADDLE_ENFORCE_EQ(length, dims.size());
  for (size_t i = 0; i < length; ++i) {
69 70 71
    if (names[i] == framework::kEmptyVarName) {
      continue;
    }
72 73 74
    SetDim(names[i], dims[i]);
  }
}
75
std::vector<proto::VarDesc::VarType> InferShapeContext::GetInputsVarType(
76 77 78
    const std::string &name) const {
  return GetVarTypes(Inputs(name));
}
79
std::vector<proto::VarDesc::VarType> InferShapeContext::GetOutputsVarType(
80 81 82
    const std::string &name) const {
  return GetVarTypes(Outputs(name));
}
83
std::vector<proto::VarDesc::VarType> InferShapeContext::GetVarTypes(
84
    const std::vector<std::string> &names) const {
85
  std::vector<proto::VarDesc::VarType> retv;
86 87 88 89 90 91
  retv.resize(names.size());
  std::transform(names.begin(), names.end(), retv.begin(),
                 std::bind(std::mem_fn(&InferShapeContext::GetVarType), this,
                           std::placeholders::_1));
  return retv;
}
92 93 94

}  // namespace framework
}  // namespace paddle