/* 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" namespace paddle { namespace operators { template class BlockExpandKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { using namespace framework; const Tensor* input = context.Input("input"); const Tensor* filter = context.Input("filter"); const Tensor* stride = context.Input("stride"); const Tensor* padding = context.Input("padding"); Tensor* out = context.Output("Out"); auto input_dim = input->dims(); size_t N = input_dim[0]; size_t C = input_dim[1]; PADDLE_ENFORCE_GE(N, 1, "Input batchsize must >= 1."); PADDLE_ENFORCE_EQ(input_dim.size(), 4, "Input format must be NCHW."); size_t input_height = input_dim[2]; size_t input_height = input_dim[3]; size_t filter_height = filter[0]; size_t filter_width = filter[1]; size_t output_height = 1 + (input_height + 2 * padding_height - block_height() + stride_height - 1) / stride_height; size_t output_width = 1 + (input_width + 2 * padding_width - block_width() + stride_width - 1) / stride_width; Tensor col; if (clo_format = KCFO) { col.Resize( {N, C, filter_height, filter_width, output_height, output_width}); } else { col.Resize( {N, output_height, output_width, C, filter_height, filter_width}); } for (size_t i = 0; i < N; i++) { Im2ColFunctor(ctx, one_img, col, stride[0], stride[1], padding[0], padding[1]); } } }; template class BlockExpandGradKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { using Tensor = framework::Tensor; /* int x_num_col_dims = ctx.template Attr("x_num_col_dims"); int y_num_col_dims = ctx.template Attr("y_num_col_dims"); const Tensor* x = ctx.Input("X"); const Tensor* y = ctx.Input("Y"); */ } }; } // namespace operators } // namespace paddle