crop_op.cc 4.8 KB
Newer Older
W
wanghaoshuang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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. */

#include "paddle/operators/crop_op.h"
W
wanghaoshuang 已提交
16
#include <boost/lexical_cast.hpp>
W
wanghaoshuang 已提交
17 18 19 20 21

namespace paddle {
namespace operators {

using framework::Tensor;
22
using framework::LoDTensor;
W
wanghaoshuang 已提交
23 24 25 26 27 28 29

class CropOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
  void InferShape(const framework::InferShapeContext &ctx) const override {
W
wanghaoshuang 已提交
30 31 32 33
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar("X"),
                            "Input(X) of CropOp should not be null.");
    PADDLE_ENFORCE_NOT_NULL(ctx.OutputVar("Out"),
                            "Output(Out) of CropOp should not be null.");
34
    auto x_dim = ctx.Input<LoDTensor>("X")->dims();
W
wanghaoshuang 已提交
35 36 37
    auto *y = ctx.Input<LoDTensor>("Y");
    auto *out = ctx.Output<LoDTensor>("Out");
    if (y == nullptr) {
38
      auto shape = Attr<std::vector<int>>("shape");
W
wanghaoshuang 已提交
39
      PADDLE_ENFORCE_EQ(
40
          int64_t(shape.size()), x_dim.size(),
W
wanghaoshuang 已提交
41
          "Shape size should be equal to dimention size of input tensor.");
W
wanghaoshuang 已提交
42
      std::vector<int64_t> tensor_shape(shape.size());
43
      for (size_t i = 0; i < shape.size(); ++i) {
44
        tensor_shape[i] = static_cast<int64_t>(shape[i]);
W
wanghaoshuang 已提交
45
      }
W
wanghaoshuang 已提交
46
      out->Resize(framework::make_ddim(tensor_shape));
W
wanghaoshuang 已提交
47
    } else {
W
wanghaoshuang 已提交
48
      PADDLE_ENFORCE_EQ(framework::arity(x_dim), framework::arity(y->dims()),
W
wanghaoshuang 已提交
49 50
                        "Tensor rank of both CropOp's "
                        "inputs must be same.");
W
wanghaoshuang 已提交
51
      out->Resize(y->dims());
W
wanghaoshuang 已提交
52 53 54 55 56 57 58 59
    }
  }
};

class CropOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  CropOpMaker(framework::OpProto *proto, framework::OpAttrChecker *op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
60 61 62 63 64 65 66 67 68
    AddInput("X",
             "The input of pad op. "
             "The input should be a k-D tensor(k > 0 and k < 7)");
    AddInput("Y",
             "The input used as reference for cropping"
             " with the same dimension as X. ");
    AddOutput("Out",
              "The output of crop op "
              "with the same dimension as X.");
69 70 71 72 73 74 75 76 77
    AddAttr<std::vector<int>>("offsets",
                              "A list<int> describing offsets to be cropped."
                              "The size of offsets list should be as same as "
                              "dimension size of  input X.");
    AddAttr<std::vector<int>>("shape",
                              "A list<int> describing the shape of output."
                              "The size of shape list should be as same as "
                              "dimension size of  input X.")
        .SetDefault(std::vector<int>());
W
wanghaoshuang 已提交
78 79
    AddComment(R"DOC(
Crop Operator.
80 81 82 83 84 85 86 87 88 89 90 91 92 93
Crop input into output, as specified by offsets and shape.

There are two ways to set shape: 
1. referenc input: crop input X as shape as reference input.
                    The dimension of reference input should 
                    be as same as input X.
2. shape list: crop input X by shape described by a list<int>.
               The size of shape list should be as same as 
               dimension size of  input X.

The input should be a k-D tensor(k > 0 and k < 7). As an example:

Given:

94 95 96
    X = [[0, 1, 2, 0, 0]
         [0, 3, 4, 0, 0]
         [0, 0, 0, 0, 0]]
97 98 99

and 

100
    offsets = [0, 1]
101 102 103

and
 
104
    shape = [2, 2]
105 106 107

then we get 

108 109
    Out = [[1, 2],
           [3, 4]]
110

W
wanghaoshuang 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123
)DOC");
  }
};

class CropOpGrad : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
  void InferShape(const framework::InferShapeContext &ctx) const override {
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar("X"), "Input(X) should not be null");
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar(framework::GradVarName("Out")),
                            "Input(Out@GRAD) should not be null");
124 125
    auto x_dims = ctx.Input<LoDTensor>("X")->dims();
    auto *x_grad = ctx.Output<LoDTensor>(framework::GradVarName("X"));
126 127 128
    if (x_grad != nullptr) {
      x_grad->Resize(x_dims);
    }
W
wanghaoshuang 已提交
129 130 131 132 133 134 135 136
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
REGISTER_OP(crop, ops::CropOp, ops::CropOpMaker, crop_grad, ops::CropOpGrad);
137
REGISTER_OP_CPU_KERNEL(crop, ops::CropKernel<float>);
W
wanghaoshuang 已提交
138 139
REGISTER_OP_CPU_KERNEL(crop_grad,
                       ops::CropGradKernel<paddle::platform::CPUPlace, float>);