/* 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 "CropOp.h" #include "paddle/function/TensorShape.h" #include "paddle/math/Vector.h" namespace paddle { template <> void Crop(real* outputs, const real* inputs, const TensorShape inShape, const TensorShape outShape, const FuncConfig& conf) { std::vector crop_corner = conf.get>("crop_corner"); int cCrop = crop_corner[1]; int hCrop = crop_corner[2]; int wCrop = crop_corner[3]; int num = inShape[0]; int inC = inShape[1]; int inH = inShape[2]; int inW = inShape[3]; int outC = outShape[1]; int outH = outShape[2]; int outW = outShape[3]; for (int n = 0; n < num; n++) { for (int c = 0; c < outC; c++) { for (int h = 0; h < outH; h++) { int outoff = ((n * outC + c) * outH + h) * outW; int inoff = ((n * inC + c + cCrop) * inH + h + hCrop) * inW + wCrop; memcpy(outputs + outoff, inputs + inoff, outW * sizeof(real)); } } } } template <> void CropGrad(const real* inGrad, real* outGrad, const TensorShape inShape, const TensorShape outShape, const FuncConfig& conf) { std::vector crop_corner = conf.get>("crop_corner"); int cCrop = crop_corner[1]; int hCrop = crop_corner[2]; int wCrop = crop_corner[3]; int num = outShape[0]; int outC = outShape[1]; int outH = outShape[2]; int outW = outShape[3]; int inC = inShape[1]; int inH = inShape[2]; int inW = inShape[3]; for (int n = 0; n < num; n++) { for (int c = 0; c < inC; c++) { for (int h = 0; h < inH; h++) { int outoff = ((n * outC + c + cCrop) * outH + h + hCrop) * outW + wCrop; int inoff = ((n * inC + c) * inH + h) * inW; CpuVector inG = CpuVector(inW, const_cast(inGrad + inoff)); CpuVector outG = CpuVector(inW, outGrad + outoff); outG += inG; } } } } /** * \brief Crop input according to the specify corner and shape. * The input and output is a 4D tensor. In CropFunc, we only * crop the 2nd to 4th dimension. * * Argument in this Function: * \param pad_ A struct object contains the cropping corner and shape. * \param inputs A 4D tensor, only one input. * \param outputs A 4D tensor, the output value after cropping. * * For example, * Input(2,2,2,3) = [ * [ [[1,2,3], [3,4,5]], * [[2,3,5], [1,6,7]] ], * [ [[4,3,1], [1,8,7]], * [[3,8,9], [2,3,5]] ] * ] # the input shape is (2,2,2,3) * * pad_: if corner = (0,1,1) and crop_shape = (2,1,2) * Output(2,2,1,2) = [ * [ [[4,5]], * [[6,7]] ], * [ [[8,7]], * [[3,5]] ] * ] # the input shape is (2,2,2,3) */ template class CropFunc : public FunctionBase { public: void init(const FuncConfig& config) override { conf_ = config; } void calc(const BufferArgs& inputs, const BufferArgs& outputs) override { CHECK_EQ(1UL, inputs.size()); CHECK_EQ(1UL, outputs.size()); CHECK_EQ(outputs[0].getArgType(), ASSIGN_TO); TensorShape inShape = inputs[0].shape(); TensorShape outShape = outputs[0].shape(); Crop(outputs[0].data(), inputs[0].data(), inShape, outShape, conf_); } private: FuncConfig conf_; }; /** * \brief The backward propagation of cropping Function. * * Argument in this Function: * \param crop_ The same meaning as it in CropFunc. * \param inputs The gradient with respect to the output value of CropFunc. * \param outputs The gradient with respect to the input value of CropFunc. */ template class CropGradFunc : public FunctionBase { public: void init(const FuncConfig& config) override { conf_ = config; } void calc(const BufferArgs& inputs, const BufferArgs& outputs) override { CHECK_EQ(1UL, inputs.size()); CHECK_EQ(1UL, outputs.size()); CHECK_EQ(outputs[0].getArgType(), ADD_TO); TensorShape outShape = outputs[0].shape(); TensorShape inShape = inputs[0].shape(); CropGrad(inputs[0].data(), outputs[0].data(), inShape, outShape, conf_); } private: FuncConfig conf_; }; REGISTER_TYPED_FUNC(Crop, CPU, CropFunc); REGISTER_TYPED_FUNC(CropGrad, CPU, CropGradFunc); #ifdef PADDLE_WITH_CUDA REGISTER_TYPED_FUNC(Crop, GPU, CropFunc); REGISTER_TYPED_FUNC(CropGrad, GPU, CropGradFunc); #endif } // namespace paddle