block_expand_op.h 3.2 KB
Newer Older
G
gongweibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

   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 "paddle/operators/math/math_function.h"

#include "paddle/framework/eigen.h"
#include "paddle/framework/op_registry.h"
G
gongweibao 已提交
21
#include "paddle/operators/math/im2col.h"
G
gongweibao 已提交
22 23 24 25

namespace paddle {
namespace operators {

G
gongweibao 已提交
26 27 28 29
inline void get_blockexpand_output_shape(int img_height, int img_width,
                                         int block_height, int block_width,
                                         int stride_height, int stride_width,
                                         int padding_height, int padding_width,
G
gongweibao 已提交
30 31 32
                                         int& outputHeight, int& outputWidth) {
  outputHeight =
      1 +
G
gongweibao 已提交
33 34
      (img_height + 2 * padding_height - block_height + stride_height - 1) /
          stride_height;
G
gongweibao 已提交
35

G
gongweibao 已提交
36 37 38 39
  outputWidth =
      1 +
      (img_width + 2 * padding_width - block_width + stride_width - 1) /
          stride_width;
G
gongweibao 已提交
40 41
}

G
gongweibao 已提交
42 43 44
template <typename Place, typename T>
class BlockExpandKernel : public framework::OpKernel<T> {
 public:
G
gongweibao 已提交
45
  void Compute(const framework::ExecutionContext& ctx) const override {
G
gongweibao 已提交
46
    using namespace framework;
G
gongweibao 已提交
47 48 49 50 51 52 53
    const Tensor* in = ctx.Input<Tensor>("input");
    Tensor* out = ctx.Output<Tensor>("Out");
    out->mutable_data<T>(ctx.GetPlace());

    auto in_dim = in->dims();
    int N = in_dim[0];
    int C = in_dim[1];
G
gongweibao 已提交
54 55
    int img_height = in_dim[2];
    int img_width = in_dim[3];
G
gongweibao 已提交
56

G
gongweibao 已提交
57 58 59 60 61 62
    int block_height = ctx.Attr<int>("blockHeight");
    int block_width = ctx.Attr<int>("blockWidth");
    int stride_height = ctx.Attr<int>("strideHeight");
    int stride_width = ctx.Attr<int>("strideWidth");
    int padding_height = ctx.Attr<int>("paddingHeight");
    int padding_width = ctx.Attr<int>("paddingWidth");
G
gongweibao 已提交
63 64 65 66

    int outputHeight = 0;
    int outputWidth = 0;

G
gongweibao 已提交
67 68 69
    get_blockexpand_output_shape(
        img_height, img_width, block_height, block_width, stride_height,
        stride_width, padding_height, padding_width, outputHeight, outputWidth);
G
gongweibao 已提交
70 71

    for (int i = 0; i < N; i++) {
G
gongweibao 已提交
72
      Tensor src = in->Slice<T>(i, i + 1).Resize(C, img_height, img_width);
G
gongweibao 已提交
73
      Tensor dst = out->Slice<T>(i, i + 1).Resize(outputHeight, outputWidth, C,
G
gongweibao 已提交
74 75 76 77
                                                  block_height, block_width);
      math::Im2ColFunctor<math::ColFormat::kOCF, Place, T>(
          ctx, src, dst, stride_height, stride_width, padding_height,
          padding_width);
G
gongweibao 已提交
78 79 80 81 82 83 84 85
    }
  }
};

template <typename Place, typename T>
class BlockExpandGradKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
G
gongweibao 已提交
86
    using namespace framework;
G
gongweibao 已提交
87 88 89 90 91
  }
};

}  // namespace operators
}  // namespace paddle