/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. 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 #include #include "paddle/fluid/framework/eigen.h" #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/framework/tensor.h" #include "paddle/fluid/framework/tensor_util.h" #include "paddle/fluid/operators/math/padding.h" namespace paddle { namespace operators { template class PadConstantLikeKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { auto in_x = context.Input("X"); auto in_y = context.Input("Y"); auto* out = context.Output("Out"); if (in_x->dims() == in_y->dims()) { // TensorCopy(in_y, context.GetPlace(), context, out); out->ShareDataWith(*in_y); return; } T pad_value = context.Attr("pad_value"); out->mutable_data(context.GetPlace()); int rank = context.Input("X")->dims().size(); std::vector pads(rank * 2, 0); for (int j = 0; j < rank; ++j) { pads[j * 2] = 0; pads[j * 2 + 1] = static_cast(in_x->dims()[j] - in_y->dims()[j]); } math::PaddingFunctor(rank, context, pads, pad_value, *in_y, out); } }; template class PadConstantLikeGradKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { auto in_y = context.Input("Y"); auto in_dout = context.Input(framework::GradVarName("Out")); auto* d_y = context.Output(framework::GradVarName("Y")); if (d_y == nullptr) { return; } if (in_dout->dims() == in_y->dims()) { // TensorCopy(in_dout, context.GetPlace(), context, d_y); d_y->ShareDataWith(*in_dout); return; } d_y->mutable_data(context.GetPlace()); int rank = in_dout->dims().size(); std::vector pads(static_cast(rank) * 2, 0); for (int j = 0; j < rank; ++j) { pads[j * 2] = 0; pads[j * 2 + 1] = static_cast(in_dout->dims()[j] - in_y->dims()[j]); } math::PaddingGradFunctor(rank, context, pads, *in_dout, d_y); } }; } // namespace operators } // namespace paddle