shape_inference.cc 5.3 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
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

Y
Yi Wang 已提交
15
#include "paddle/fluid/framework/shape_inference.h"
16 17 18 19
#include <algorithm>
#include <string>
#include <vector>
#include "paddle/fluid/framework/grad_op_desc_maker.h"
Y
Yi Wang 已提交
20
#include "paddle/fluid/framework/operator.h"
21 22 23 24

namespace paddle {
namespace framework {

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

F
fengjiayi 已提交
33
std::vector<DDim> InferShapeContext::GetInputsDim(
34
    const std::string &name) const {
F
fengjiayi 已提交
35 36
  const std::vector<std::string> &arg_names = Inputs(name);
  return GetDims(arg_names);
37 38
}

F
fengjiayi 已提交
39 40 41 42 43 44 45 46 47 48
std::vector<DDim> InferShapeContext::GetReaderDims(
    const std::string &name) const {
  const std::vector<std::string> &arg_names = Inputs(name);
  PADDLE_ENFORCE_EQ(
      arg_names.size(), 1UL,
      "Reader input '%s' should hold one element, but now it holds %d", name,
      arg_names.size());
  return this->GetRepeatedDims(arg_names[0]);
}

C
chengduo 已提交
49 50 51 52 53 54 55 56 57 58
void InferShapeContext::ShareLoDs(const std::string &in,
                                  const std::string &out) const {
  PADDLE_ENFORCE_EQ(Inputs(in).size(), Outputs(out).size(),
                    "The number of arguments in %s and %s is not equal.", in,
                    out);
  for (size_t i = 0; i < in.size(); ++i) {
    ShareLoD(in, out, i, i);
  }
}

F
fengjiayi 已提交
59 60 61 62 63 64
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 已提交
65 66 67
void InferShapeContext::SetOutputDim(const std::string &name, const DDim &dim) {
  auto &arg_names = Outputs(name);
  PADDLE_ENFORCE_EQ(arg_names.size(), 1UL,
F
fengjiayi 已提交
68
                    "Output(%s) should hold one element, but now it holds %d",
F
fengjiayi 已提交
69 70 71 72
                    name, arg_names.size());
  SetDim(arg_names[0], dim);
}

F
fengjiayi 已提交
73 74
void InferShapeContext::SetOutputsDim(const std::string &name,
                                      const std::vector<DDim> &dims) {
75 76 77 78
  auto &names = Outputs(name);
  SetDims(names, dims);
}

F
fengjiayi 已提交
79 80 81 82 83 84 85 86 87 88
void InferShapeContext::SetReaderDims(const std::string &name,
                                      const std::vector<DDim> &dims) {
  const std::vector<std::string> &arg_names = Outputs(name);
  PADDLE_ENFORCE_EQ(
      arg_names.size(), 1UL,
      "Reader output '%s' should hold one element, but now it holds %d", name,
      arg_names.size());
  return this->SetRepeatedDims(arg_names[0], dims);
}

F
fengjiayi 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
std::vector<InferShapeVarPtr> InferShapeContext::GetInputVarPtrs(
    const std::string &name) {
  const std::vector<std::string> arg_names = Inputs(name);
  std::vector<InferShapeVarPtr> res;
  res.reserve(arg_names.size());
  std::transform(
      arg_names.begin(), arg_names.end(), std::back_inserter(res),
      [this](const std::string &name) { return this->GetVarPtr(name); });
  return res;
}

std::vector<InferShapeVarPtr> InferShapeContext::GetOutputVarPtrs(
    const std::string &name) {
  const std::vector<std::string> arg_names = Outputs(name);
  std::vector<InferShapeVarPtr> res;
  res.reserve(arg_names.size());
  std::transform(
      arg_names.begin(), arg_names.end(), std::back_inserter(res),
      [this](const std::string &name) { return this->GetVarPtr(name); });
  return res;
}

F
fengjiayi 已提交
111
std::vector<DDim> InferShapeContext::GetDims(
112
    const std::vector<std::string> &names) const {
F
fengjiayi 已提交
113
  std::vector<DDim> ret;
114 115 116 117 118 119
  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;
}
F
fengjiayi 已提交
120

121
void InferShapeContext::SetDims(const std::vector<std::string> &names,
F
fengjiayi 已提交
122
                                const std::vector<DDim> &dims) {
123 124 125
  size_t length = names.size();
  PADDLE_ENFORCE_EQ(length, dims.size());
  for (size_t i = 0; i < length; ++i) {
126 127 128
    if (names[i] == framework::kEmptyVarName) {
      continue;
    }
129 130 131
    SetDim(names[i], dims[i]);
  }
}
F
fengjiayi 已提交
132

133
std::vector<proto::VarType::Type> InferShapeContext::GetInputsVarType(
134 135 136
    const std::string &name) const {
  return GetVarTypes(Inputs(name));
}
F
fengjiayi 已提交
137

138
std::vector<proto::VarType::Type> InferShapeContext::GetOutputsVarType(
139 140 141
    const std::string &name) const {
  return GetVarTypes(Outputs(name));
}
F
fengjiayi 已提交
142

143
std::vector<proto::VarType::Type> InferShapeContext::GetVarTypes(
144
    const std::vector<std::string> &names) const {
145
  std::vector<proto::VarType::Type> retv;
146 147 148 149 150 151
  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;
}
152 153 154

}  // namespace framework
}  // namespace paddle