infer_shape_context.h 14.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// Copyright (c) 2020 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.

#pragma once

#include <string>
#include <vector>
19

20
#include "paddle/fluid/framework/ddim.h"
21
#include "paddle/fluid/framework/operator.h"
22 23 24
#include "paddle/fluid/framework/shape_inference.h"
#include "paddle/fluid/framework/type_defs.h"
#include "paddle/fluid/imperative/type_defs.h"
J
Jiabin Yang 已提交
25
#include "paddle/fluid/imperative/var_helper.h"
26 27 28 29 30 31 32 33 34 35
#include "paddle/fluid/imperative/variable_wrapper.h"

namespace paddle {
namespace imperative {

template <typename VarType>
class DygraphInferShapeContext : public framework::InferShapeContext {
  using DDim = framework::DDim;

 public:
36 37 38 39 40
  DygraphInferShapeContext(
      const NameVarMap<VarType>* in, const NameVarMap<VarType>* out,
      const framework::AttributeMap* attr,
      const framework::AttributeMap* default_attr, const std::string op_type,
      const framework::OpKernelType* op_kernel_type = nullptr)
J
Jiabin Yang 已提交
41 42
      : var_map_in_(in),
        var_map_out_(out),
43
        attrs_(attr),
44
        default_attrs_(default_attr),
45 46
        op_type_(op_type),
        op_kernel_type_(op_kernel_type) {}
47 48 49

  bool HasInput(const std::string& name) const override {
    // has only one input
J
Jiabin Yang 已提交
50
    auto it = var_map_in_->find(name);
51

J
Jiabin Yang 已提交
52
    if (it == var_map_in_->end()) {
53 54 55 56 57 58 59 60 61 62 63 64 65
      return false;
    }
    const auto& in = it->second;
    if (in.size() == 0) return false;
    PADDLE_ENFORCE_EQ(
        in.size(), 1UL,
        platform::errors::PreconditionNotMet(
            "Input %s should not have more than one inputs", name));
    return in[0] != nullptr;
  }

  bool HasOutput(const std::string& name) const override {
    // has only one output
J
Jiabin Yang 已提交
66 67
    auto it = var_map_out_->find(name);
    if (it == var_map_out_->end()) {
68 69 70 71 72 73 74 75 76 77 78 79 80 81
      return false;
    }
    const auto& out = it->second;
    if (out.size() == 0) {
      return false;
    }
    PADDLE_ENFORCE_EQ(
        out.size(), 1UL,
        platform::errors::PreconditionNotMet(
            "Output %s should not have more than one outputs", name));
    return out[0] != nullptr;
  }

  bool HasInputs(const std::string& name) const override {
J
Jiabin Yang 已提交
82 83
    auto it = var_map_in_->find(name);
    if (it == var_map_in_->end() || it->second.empty()) {
84 85 86 87 88 89 90 91 92 93 94
      return false;
    }
    for (auto& input : it->second) {
      if (input == nullptr) {
        return false;
      }
    }
    return true;
  }

  bool HasOutputs(const std::string& name) const override {
J
Jiabin Yang 已提交
95 96
    auto it = var_map_out_->find(name);
    if (it == var_map_out_->end() || it->second.empty()) {
97 98 99 100 101 102 103 104 105 106 107
      return false;
    }
    for (auto& output : it->second) {
      if (output == nullptr) {
        return false;
      }
    }
    return true;
  }

  framework::AttrReader Attrs() const override {
108
    return framework::AttrReader(*attrs_, *default_attrs_);
109 110 111 112
  }

  std::vector<std::string> Inputs(const std::string& name) const override {
    std::vector<std::string> vec_res;
J
Jiabin Yang 已提交
113
    auto it = var_map_in_->find(name);
114
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
115
        it, var_map_in_->end(),
116 117 118 119 120
        platform::errors::NotFound("can not find [%s] in input", name));

    vec_res.reserve(it->second.size());
    for (auto& var : it->second) {
      if (var) {
J
Jiabin Yang 已提交
121
        vec_res.push_back(GetNameFromVar(var));
122 123 124 125 126 127 128 129 130 131
      } else {
        vec_res.push_back(framework::kEmptyVarName);
      }
    }

    return vec_res;
  }

  std::vector<std::string> Outputs(const std::string& name) const override {
    std::vector<std::string> vec_res;
J
Jiabin Yang 已提交
132
    auto it = var_map_out_->find(name);
133
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
134
        it, var_map_out_->end(),
135 136 137 138 139
        platform::errors::NotFound("can not find [%s] in output", name));

    vec_res.reserve(it->second.size());
    for (auto& var : it->second) {
      if (var) {
J
Jiabin Yang 已提交
140
        vec_res.push_back(GetNameFromVar(var));
141 142 143 144 145 146 147
      } else {
        vec_res.push_back(framework::kEmptyVarName);
      }
    }

    return vec_res;
  }
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
  std::string GetInputNameByIdx(size_t idx) const override {
    auto& op_proto =
        paddle::framework::OpInfoMap::Instance().Get(op_type_).proto_;
    PADDLE_ENFORCE_LT(idx, op_proto->inputs().size(),
                      platform::errors::OutOfRange(
                          "The index should be less than the size of inputs of "
                          "operator %s, but got index is %d and size is %d",
                          op_type_, idx, op_proto->inputs().size()));
    return op_proto->inputs()[idx].name();
  }

  std::string GetOutputNameByIdx(size_t idx) const override {
    auto& op_proto =
        paddle::framework::OpInfoMap::Instance().Get(op_type_).proto_;
    PADDLE_ENFORCE_LT(
        idx, op_proto->outputs().size(),
        platform::errors::OutOfRange(
            "The index should be less than the size of outputs of "
            "operator %s, but got index is %d and size is %d",
            op_type_, idx, op_proto->outputs().size()));
    return op_proto->outputs()[idx].name();
  }
170 171 172

  void ShareDim(const std::string& in, const std::string& out, size_t i = 0,
                size_t j = 0) override {
J
Jiabin Yang 已提交
173 174
    auto in_it = var_map_in_->find(in);
    auto out_it = var_map_out_->find(out);
175
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
176
        in_it, var_map_in_->end(),
177 178 179 180 181
        platform::errors::NotFound("can not found [%s] in input", in));
    PADDLE_ENFORCE_GT(in_it->second.size(), i,
                      platform::errors::PreconditionNotMet(
                          "Inputs %s should have %llu argument", in, i));
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
182
        out_it, var_map_out_->end(),
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
        platform::errors::NotFound("can not found [%s] in input", in));
    PADDLE_ENFORCE_GT(out_it->second.size(), j,
                      platform::errors::PreconditionNotMet(
                          "Outputs %s should have %llu argument", out, j));

    framework::Variable* in_var = in_it->second[i]->MutableVar();
    framework::Variable* out_var = out_it->second[j]->MutableVar();

    PADDLE_ENFORCE_EQ(in_var->Type(), out_var->Type(),
                      platform::errors::PreconditionNotMet(
                          "The type of %s and %s is not the same.", in, out));

    if (in_var->IsType<framework::LoDTensor>()) {
      auto& in_lod_tensor = in_var->Get<framework::LoDTensor>();
      auto* out_lod_tensor = out_var->GetMutable<framework::LoDTensor>();
      out_lod_tensor->Resize(in_lod_tensor.dims());
    } else {
200 201
      auto& in_sele_rows = in_var->Get<pten::SelectedRows>();
      auto out_sele_rows = out_var->GetMutable<pten::SelectedRows>();
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
      out_sele_rows->mutable_value()->Resize(in_sele_rows.value().dims());
      out_sele_rows->set_rows(in_sele_rows.rows());
      out_sele_rows->set_height(in_sele_rows.height());
    }
  }

  void ShareAllLoD(const std::string& in,
                   const std::string& out) const override {
    // do nothing
  }
  void ShareLoD(const std::string& in, const std::string& out, size_t i = 0,
                size_t j = 0) const override {
    // do nothing
  }

  bool IsRuntime() const override { return true; }

219 220 221 222 223
  bool IsRunMKLDNNKernel() const override {
    return (op_kernel_type_ &&
            (op_kernel_type_->data_layout_ == framework::DataLayout::kMKLDNN));
  }

224
  std::vector<framework::InferShapeVarPtr> GetInputVarPtrs(
225
      const std::string& name) const override {
226
    std::vector<framework::InferShapeVarPtr> res;
J
Jiabin Yang 已提交
227
    auto it = var_map_in_->find(name);
228
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
229
        it, var_map_in_->end(),
230 231 232 233 234
        platform::errors::NotFound("Can not find [%s] in inputs.", name));
    for (auto& var : it->second) {
      res.emplace_back(var->MutableVar());
    }
    return res;
235 236 237
  }

  std::vector<framework::InferShapeVarPtr> GetOutputVarPtrs(
238
      const std::string& name) const override {
239
    std::vector<framework::InferShapeVarPtr> res;
J
Jiabin Yang 已提交
240
    auto it = var_map_out_->find(name);
241
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
242
        it, var_map_out_->end(),
243 244 245 246 247
        platform::errors::NotFound("Can not find [%s] in outputs.", name));
    for (auto& var : it->second) {
      res.emplace_back(var->MutableVar());
    }
    return res;
248 249 250
  }

  DDim GetInputDim(const std::string& name) const override {
J
Jiabin Yang 已提交
251
    auto it = var_map_in_->find(name);
252
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
253
        it, var_map_in_->end(),
254 255 256 257 258 259 260 261 262 263 264 265
        platform::errors::NotFound("can not find [%s] in input", name));
    PADDLE_ENFORCE_EQ(
        it->second.size(), 1UL,
        platform::errors::PreconditionNotMet(
            "Input(%s) should hold one element, but now it holds %d", name,
            it->second.size()));
    return this->GetDim(it->second[0]->MutableVar());
  }

  std::vector<DDim> GetInputsDim(const std::string& name) const override {
    // const std::vector<Variable*>& vars = InputVars(name);
    std::vector<DDim> vec_res;
J
Jiabin Yang 已提交
266
    auto it = var_map_in_->find(name);
267
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
268
        it, var_map_in_->end(),
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
        platform::errors::NotFound("can not find [%s] in output", name));
    vec_res.reserve(it->second.size());
    for (size_t i = 0; i < it->second.size(); ++i) {
      if (it->second[i]) {
        vec_res.emplace_back(GetDim(it->second[i]->MutableVar()));
      } else {
        vec_res.emplace_back();
      }
    }

    return vec_res;
  }

  std::vector<framework::proto::VarType::Type> GetInputsVarType(
      const std::string& name) const override {
    std::vector<framework::proto::VarType::Type> vec_res;
J
Jiabin Yang 已提交
285
    auto it = var_map_in_->find(name);
286
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
287
        it, var_map_in_->end(),
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
        platform::errors::NotFound("can not find [%s] in input", name));
    vec_res.reserve(it->second.size());
    for (size_t i = 0; i < it->second.size(); ++i) {
      if (it->second[i]) {
        vec_res.emplace_back(
            framework::ToVarType(it->second[i]->MutableVar()->Type()));
      } else {
        vec_res.emplace_back();
      }
    }
    return vec_res;
  }

  std::vector<framework::proto::VarType::Type> GetOutputsVarType(
      const std::string& name) const override {
    std::vector<framework::proto::VarType::Type> vec_res;
J
Jiabin Yang 已提交
304
    auto it = var_map_out_->find(name);
305
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
306
        it, var_map_out_->end(),
307 308 309 310 311 312 313 314 315 316 317 318 319 320
        platform::errors::NotFound("can not find [%s] in output", name));
    vec_res.reserve(it->second.size());
    for (size_t i = 0; i < it->second.size(); ++i) {
      if (it->second[i]) {
        vec_res.emplace_back(
            framework::ToVarType(it->second[i]->MutableVar()->Type()));
      } else {
        vec_res.emplace_back(static_cast<framework::proto::VarType::Type>(-1));
      }
    }
    return vec_res;
  }

  void SetOutputDim(const std::string& name, const DDim& dim) override {
J
Jiabin Yang 已提交
321
    auto it = var_map_out_->find(name);
322
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
323
        it, var_map_out_->end(),
324 325 326 327 328 329 330 331 332
        platform::errors::NotFound("can not find [%s] in output", name));

    if (it->second[0]) {
      SetDim(it->second[0]->MutableVar(), dim);
    }
  }

  void SetOutputsDim(const std::string& name,
                     const std::vector<DDim>& dims) override {
J
Jiabin Yang 已提交
333
    auto it = var_map_out_->find(name);
334
    PADDLE_ENFORCE_NE(
J
Jiabin Yang 已提交
335
        it, var_map_out_->end(),
336 337
        platform::errors::NotFound("can not find [%s] in output", name));

338 339 340 341 342 343
    PADDLE_ENFORCE_EQ(dims.size(), it->second.size(),
                      platform::errors::InvalidArgument(
                          "The number of dims is expected to be equal to the "
                          "number of Outputs(%s). But receieved: the number of "
                          "dims = %d, the number of Outputs(%s) = %d.",
                          name, dims.size(), name, it->second.size()));
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368

    for (size_t i = 0; i < dims.size(); ++i) {
      if (it->second[i]) {
        SetDim(it->second[i]->MutableVar(), dims[i]);
      }
    }
  }

  int32_t GetLoDLevel(const std::string& in, size_t i = 0) const override {
    PADDLE_THROW(platform::errors::PermissionDenied(
        "GetLoDLevel function not support in dygraph mode"));
  }

  void SetLoDLevel(const std::string& out, int32_t lod_level,
                   size_t j = 0) const override {
    PADDLE_THROW(platform::errors::PermissionDenied(
        "SetLoDLevel function not support in dygraph mode"));
  }

 protected:
  DDim GetDim(framework::Variable* var) const {
    PADDLE_ENFORCE_NOT_NULL(var, platform::errors::PreconditionNotMet(
                                     "Input variable should not be null"));
    if (var->IsType<framework::LoDTensor>()) {
      return var->Get<framework::LoDTensor>().dims();
369 370
    } else if (var->IsType<pten::SelectedRows>()) {
      return var->Get<pten::SelectedRows>().GetCompleteDims();
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
    } else {
      PADDLE_THROW(platform::errors::PermissionDenied(
          "Only LoDTensor/SelectedRows support 'GetDim', but Variables "
          "type_id is xx."));
    }
  }

  std::vector<DDim> GetRepeatedDims(const std::string& name) const override {
    PADDLE_THROW(platform::errors::PermissionDenied(
        "GetRepeatedDims not support in dygraph runtime"));
  }

  void SetDim(framework::Variable* var, const DDim& dim) {
    if (var->IsType<framework::LoDTensor>()) {
      var->GetMutable<framework::LoDTensor>()->Resize(dim);
386 387
    } else if (var->IsType<pten::SelectedRows>()) {
      var->GetMutable<pten::SelectedRows>()->set_height(dim[0]);
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
    } else {
      PADDLE_THROW(platform::errors::PermissionDenied(
          "Variable type_id %s, expect LoDTensor/SelectedRows."));
    }
  }

  void SetDims(const std::vector<framework::Variable*>& vars,
               const std::vector<DDim>& dims) {
    size_t length = vars.size();
    PADDLE_ENFORCE_EQ(
        length, dims.size(),
        platform::errors::PreconditionNotMet(
            "Vars number [%d] should be equal with dims number [%d]", length,
            dims.size()));
    for (size_t i = 0; i < length; ++i) {
      if (vars[i] == nullptr) {
        continue;
      }
      SetDim(vars[i], dims[i]);
    }
  }

  void SetRepeatedDims(const std::string& name,
                       const std::vector<DDim>& dims) override {
    PADDLE_THROW(platform::errors::PermissionDenied(
        "SetRepeatedDims not support in dygraph runtime"));
  }

 private:
J
Jiabin Yang 已提交
417 418
  const NameVarMap<VarType>* var_map_in_;
  const NameVarMap<VarType>* var_map_out_;
419
  const framework::AttributeMap* attrs_;
420
  const framework::AttributeMap* default_attrs_;
421
  const std::string op_type_;
422
  const framework::OpKernelType* op_kernel_type_;
423 424 425 426
};

}  // namespace imperative
}  // namespace paddle