interpolate_op.cc 4.1 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
// Copyright (c) 2019 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 "lite/operators/interpolate_op.h"
#include <string>
#include <vector>
#include "lite/core/op_lite.h"
#include "lite/core/op_registry.h"
#include "lite/core/tensor.h"

namespace paddle {
namespace lite {
namespace operators {

bool InterpolateOp::CheckShape() const {
  auto* X = param_.X;
  auto* OutSize = param_.OutSize;
  CHECK_OR_FALSE(X);
  if (OutSize != nullptr) {
    CHECK_OR_FALSE(OutSize);
  }
  CHECK_OR_FALSE(param_.Out);
  return true;
}

bool InterpolateOp::InferShape() const {
  auto* X = param_.X;
  auto* OutSize = param_.OutSize;

  int n = X->dims()[0];
  int c = X->dims()[1];
  int h = X->dims()[2];
  int w = X->dims()[3];
  int out_h;
  int out_w;

L
liu zhengxi 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  auto SizeTensor = param_.SizeTensor;
  if (!SizeTensor.empty()) {
    CHECK(SizeTensor.size() == 2)
        << "Input(SizeTensor)'size of Op(interpolate) must be 2. "
           "Attr(out_shape)'s length must be 2 for 4-D input tensor.";
    out_h = param_.out_h;
    out_w = param_.out_w;
    param_.Out->Resize({n, c, out_h, out_w});
    return true;
  }

  auto Scale = param_.Scale;
  if (Scale) {
    auto scale_dims = Scale->dims();
    CHECK(scale_dims.size() == 1) << "Scale's dimension size must be 1.";
    out_h = -1;
    out_w = -1;
Y
Yan Chunwei 已提交
65
  } else {
L
liu zhengxi 已提交
66 67 68 69
    auto scale = param_.scale;
    if (scale > 0) {
      out_h = static_cast<int>(h * scale);
      out_w = static_cast<int>(w * scale);
Y
Yan Chunwei 已提交
70 71 72 73 74 75 76
      out_h = out_h > 0 ? out_h : -1;
      out_w = out_w > 0 ? out_w : -1;
    } else {
      out_h = param_.out_h;
      out_w = param_.out_w;
    }
  }
L
liu zhengxi 已提交
77 78 79 80 81 82 83

  if (OutSize != nullptr) {
    auto out_lod = param_.Out->mutable_lod();
    *out_lod = param_.X->lod();
  }
  param_.Out->Resize({n, c, out_h, out_w});

Y
Yan Chunwei 已提交
84 85 86 87 88
  return true;
}

bool InterpolateOp::AttachImpl(const cpp::OpDesc& op_desc, lite::Scope* scope) {
  auto X = op_desc.Input("X").front();
Y
Yan Chunwei 已提交
89 90 91 92 93 94
  if (op_desc.HasInput("OutSize")) {
    auto out_size_var_names = op_desc.Input("OutSize");
    if (out_size_var_names.size() > 0) {
      param_.OutSize = scope->FindVar(out_size_var_names.front())
                           ->GetMutable<lite::Tensor>();
    }
Y
Yan Chunwei 已提交
95 96 97
  } else {
    param_.OutSize = nullptr;
  }
L
liu zhengxi 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115

  if (op_desc.HasInput("SizeTensor")) {
    auto size_tensor = op_desc.Input("SizeTensor");
    for (auto var : size_tensor) {
      param_.SizeTensor.push_back(
          scope->FindVar(var)->GetMutable<lite::Tensor>());
    }
  }

  if (op_desc.HasInput("Scale")) {
    auto scale_var_names = op_desc.Input("Scale");
    if (scale_var_names.size() > 0) {
      param_.Scale =
          scope->FindVar(scale_var_names.front())->GetMutable<lite::Tensor>();
    }
  } else {
    param_.Scale = nullptr;
  }
Y
Yan Chunwei 已提交
116 117 118
  auto Out = op_desc.Output("Out").front();
  param_.X = scope->FindVar(X)->GetMutable<lite::Tensor>();
  param_.Out = scope->FindVar(Out)->GetMutable<lite::Tensor>();
119 120 121 122 123 124 125 126 127
  if (op_desc.HasAttr("scale")) {
    param_.scale = op_desc.GetAttr<float>("scale");
  }
  if (op_desc.HasAttr("out_w")) {
    param_.out_w = op_desc.GetAttr<int>("out_w");
  }
  if (op_desc.HasAttr("out_h")) {
    param_.out_h = op_desc.GetAttr<int>("out_h");
  }
128 129 130
  if (op_desc.HasAttr("align_mode")) {
    param_.align_mode = op_desc.GetAttr<int>("align_mode");
  }
Y
Yan Chunwei 已提交
131 132 133 134 135 136 137 138 139 140 141
  param_.align_corners = op_desc.GetAttr<bool>("align_corners");
  param_.interp_method = op_desc.GetAttr<std::string>("interp_method");
  return true;
}

} /* namespace operators */
} /* namespace lite */
} /* namespace paddle */

REGISTER_LITE_OP(nearest_interp, paddle::lite::operators::InterpolateOp);
REGISTER_LITE_OP(bilinear_interp, paddle::lite::operators::InterpolateOp);