conv_transpose_op.cc 5.9 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
// 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.
14

Y
Yan Chunwei 已提交
15
#include "lite/operators/conv_transpose_op.h"
H
HappyAngel 已提交
16
#include <memory>
Y
Yan Chunwei 已提交
17 18
#include "lite/core/op_lite.h"
#include "lite/core/op_registry.h"
19
#include "lite/operators/conv_op.h"
Y
Yan Chunwei 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

namespace paddle {
namespace lite {
namespace operators {

bool ConvTransposeOpLite::CheckShape() const {
  CHECK_OR_FALSE(param_.x);
  CHECK_OR_FALSE(param_.filter);
  CHECK_OR_FALSE(param_.output);

  const auto in_dims = param_.x->dims();
  const auto filter_dims = param_.filter->dims();

  CHECK_OR_FALSE(in_dims.size() == 4 || in_dims.size() == 5);

  CHECK_EQ_OR_FALSE(in_dims.size(), filter_dims.size());
  CHECK_OR_FALSE(in_dims.size() - param_.strides.size() == 2U);

  CHECK_OR_FALSE(in_dims[1] % param_.groups == 0);
39
  CHECK_EQ_OR_FALSE(filter_dims.size(), 4UL);
Y
Yan Chunwei 已提交
40 41 42
  return true;
}

43 44 45 46 47 48 49 50 51 52 53 54
inline int ConvTransposeOutputSize(int input_size,
                                   int filter_size,
                                   int dilation,
                                   int pad_left,
                                   int pad_right,
                                   int stride) {
  const int dkernel = dilation * (filter_size - 1) + 1;
  int output_size = (input_size - 1) * stride - pad_left - pad_right + dkernel;

  return output_size;
}

Y
Yan Chunwei 已提交
55 56 57 58
bool ConvTransposeOpLite::InferShape() const {
  const auto in_dims = param_.x->dims();
  const auto filter_dims = param_.filter->dims();

59 60 61 62 63 64
  UpdatePaddingAndDilation(param_.paddings.get(),
                           param_.dilations.get(),
                           param_.strides,
                           padding_algorithm_,
                           in_dims,
                           filter_dims);
H
HappyAngel 已提交
65 66 67
  auto paddings = *param_.paddings;
  auto dilations = *param_.dilations;

Y
Yan Chunwei 已提交
68 69
  std::vector<int64_t> output_shape;
  output_shape.push_back(in_dims[0]);
Y
Yan Chunwei 已提交
70
  output_shape.push_back(filter_dims[1] * param_.groups);
71 72 73 74 75 76 77
  for (size_t i = 0; i < param_.strides.size(); ++i) {
    output_shape.push_back(ConvTransposeOutputSize(in_dims[i + 2],
                                                   filter_dims[i + 2],
                                                   dilations[i],
                                                   paddings[i * 2],
                                                   paddings[i * 2 + 1],
                                                   param_.strides[i]));
Y
Yan Chunwei 已提交
78
  }
79 80 81 82 83 84 85 86 87 88 89 90 91
  if (!param_.output_size.empty()) {
    for (size_t i = 0; i < param_.output_size.size(); ++i) {
      CHECK_LT(param_.output_size[i], output_shape[i + 2] + param_.strides[i])
          << "set output_size error, the output_size should less than "
          << output_shape[i + 2] + param_.strides[i] << ", but the value is "
          << param_.output_size[i];
      CHECK_GE(param_.output_size[i], output_shape[i + 2])
          << "set output_size error, the output_size should greater than or "
          << "equal to " << output_shape[i + 2] << ", but the value is "
          << param_.output_size[i];
      output_shape[i + 2] = param_.output_size[i];
    }
  }
Y
Yan Chunwei 已提交
92 93 94 95 96 97 98

  // Set output dims
  param_.output->Resize(lite::DDim(output_shape));
  return true;
}

// TODO(Superjomn) replace framework::OpDesc with a lite one.
99 100
bool ConvTransposeOpLite::AttachImpl(const cpp::OpDesc& op_desc,
                                     lite::Scope* scope) {
Y
Yan Chunwei 已提交
101 102 103
  auto X = op_desc.Input("Input").front();
  auto Filter = op_desc.Input("Filter").front();
  auto Out = op_desc.Output("Output").front();
Y
Yan Chunwei 已提交
104 105 106 107 108
  param_.x = scope->FindVar(X)->GetMutable<lite::Tensor>();
  param_.filter = scope->FindVar(Filter)->GetMutable<lite::Tensor>();
  param_.output = scope->FindVar(Out)->GetMutable<lite::Tensor>();

  param_.strides = op_desc.GetAttr<std::vector<int>>("strides");
H
HappyAngel 已提交
109
  auto paddings = op_desc.GetAttr<std::vector<int>>("paddings");
Y
Yan Chunwei 已提交
110
  param_.groups = op_desc.GetAttr<int>("groups");
H
HappyAngel 已提交
111 112
  auto dilations = op_desc.GetAttr<std::vector<int>>("dilations");

113 114 115
  if (op_desc.HasAttr("padding_algorithm")) {
    padding_algorithm_ = op_desc.GetAttr<std::string>("padding_algorithm");
  }
H
HappyAngel 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129
  // 2-pad to 4-pad
  if (paddings.size() == 2L) {
    for (size_t i = 0; i < 2L; ++i) {
      int copy_pad = *(paddings.begin() + 2 * i);
      paddings.insert(paddings.begin() + 2 * i + 1, copy_pad);
    }
  } else {
    if (paddings.size() != 4L) {
      LOG(FATAL)
          << "Paddings size should be the same or twice as the input size.";
    }
  }
  param_.paddings = std::make_shared<std::vector<int>>(paddings);
  param_.dilations = std::make_shared<std::vector<int>>(dilations);
Y
Yan Chunwei 已提交
130 131 132

  // optional params
  std::vector<std::string> input_arg_names = op_desc.InputArgumentNames();
Y
Yan Chunwei 已提交
133
  if (std::find(input_arg_names.begin(), input_arg_names.end(), "Bias") !=
Y
Yan Chunwei 已提交
134
      input_arg_names.end()) {
Y
Yan Chunwei 已提交
135
    auto bias_arguments = op_desc.Input("Bias");
Y
Yan Chunwei 已提交
136 137 138 139
    if (bias_arguments.size() > 0) {
      auto bias_var = scope->FindVar(bias_arguments.front());
      if (bias_var != nullptr) {
        param_.bias =
140
            const_cast<lite::Tensor*>(&(bias_var->Get<lite::Tensor>()));
Y
Yan Chunwei 已提交
141 142 143
      }
    }
  }
T
TianXiaogang 已提交
144 145
  if (op_desc.HasAttr("fuse_relu")) {
    param_.fuse_relu = op_desc.GetAttr<bool>("fuse_relu");
146
    param_.activation_param.active_type = lite_api::ActivationType::kRelu;
T
TianXiaogang 已提交
147
  }
148 149 150
  if (op_desc.HasAttr("output_size")) {
    param_.output_size = op_desc.GetAttr<std::vector<int>>("output_size");
  }
Y
Yan Chunwei 已提交
151
  return true;
Y
Yan Chunwei 已提交
152 153 154 155 156 157 158 159
}

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

REGISTER_LITE_OP(conv2d_transpose,
                 paddle::lite::operators::ConvTransposeOpLite);