/* 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/block_expand_op.h" namespace paddle { namespace operators { class BlockExpandOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; protected: void InferShape(framework::InferShapeContext* ctx) const override { using namespace framework; PADDLE_ENFORCE(ctx->HasInput("X"), "Input of BlockExpandOp should not be null."); PADDLE_ENFORCE(ctx->HasOutput("Out"), "Output of BlockExpandOp op should not be null."); auto in_dim = ctx->GetInputDim("X"); PADDLE_ENFORCE_EQ(in_dim.size(), 4, "Input format must be NCHW."); PADDLE_ENFORCE_GE(in_dim[0], 1, "Input batchsize must >= 1."); int blockHeight = ctx->Attrs().Get("blockHeight"); int blockWidth = ctx->Attrs().Get("blockWidth"); int strideHeight = ctx->Attrs().Get("strideHeight"); int strideWidth = ctx->Attrs().Get("strideWidth"); int paddingHeight = ctx->Attrs().Get("paddingHeight"); int paddingWidth = ctx->Attrs().Get("paddingWidth"); int N = in_dim[0]; int C = in_dim[1]; int imgHeight = in_dim[3]; int imgWidth = in_dim[4]; int outputHeight = 0; int outputWidth = 0; get_blockexpand_output_shape(imgHeight, imgWidth, blockHeight, blockWidth, strideHeight, strideWidth, paddingHeight, paddingWidth, outputHeight, outputWidth); // The result of im2col is [outputHeight, outputWidth, // inputChannels, filterHeight, filterWidth], and it is easy to // reshape into [seqLength, stepSize], where seqLength is equal // outputHeight * outputWidth, stepSize is equal // input_channels * blockHeight * blockWidth ctx->SetOutputDim( "Out", {N, outputHeight, outputWidth, C, blockHeight, blockWidth}); // ctx->ShareLoD("X", /*->*/ "Out"); } }; class BlockExpandOpMaker : public framework::OpProtoAndCheckerMaker { public: BlockExpandOpMaker(framework::OpProto* proto, framework::OpAttrChecker* op_checker) : OpProtoAndCheckerMaker(proto, op_checker) { AddInput("X", R"DOC( (Tensor)The input tensor has NCHW format. N: batch size C: channels H: height W: width )DOC"); AddOutput("Out", "(LodTensor)The output data of block_expand op,"); AddAttr("blockHeight", "(int)height of block."); AddAttr("blockWidth", "(int)width of block."); AddAttr("strideHeight", "(int)height of stride."); AddAttr("strideWidth", "(int)width of stride."); AddAttr("paddingHeight", "(int)height of padding."); AddAttr("paddingWidth", "(int)width of padding."); AddComment(R"DOC( Expand feature map to minibatch matrix. - matirx height is: outputHeight * outputWidth - matrix width is: blockHeight * blockWidth * channels outputHeight = 1 + (2 * paddingHeight + imgHeight - blockHeight + strideHeight - 1) / strideHeight; outputWidth = 1 + (2 * paddingWidth + imgWidth - blockWidth + strideWidth - 1) / strideWidth; The expand method is the same with ExpandConvLayer, but saved the transposed value. After expanding, The number of time steps are outputHeight * outputWidth and the dimension of each time step is blockHeight * blockWidth * channels. This layer can be used after convolution neural network, and before recurrent neural network. )DOC"); } }; class BlockExpandGradOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; protected: void InferShape(framework::InferShapeContext* ctx) const override {} }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP(block_expand, ops::BlockExpandOp, ops::BlockExpandOpMaker, block_expand_grad, ops::BlockExpandOpGrad); REGISTER_OP_CPU_KERNEL( block_expand, ops::BlockExpandKernel); REGISTER_OP_CPU_KERNEL( block_expand_grad, ops::BlockExpandGradKernel);