/* Copyright (c) 2016 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 "paddle/fluid/operators/elementwise/elementwise_op.h" namespace paddle { namespace operators { template class ElementwiseMaxKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* x = ctx.Input("X"); auto* y = ctx.Input("Y"); auto* z = ctx.Output("Out"); z->mutable_data(ctx.GetPlace()); int axis = ctx.Attr("axis"); ElementwiseComputeEx, DeviceContext, T>(ctx, x, y, axis, MaxFunctor(), z); } }; template class ElementwiseFMaxKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* x = ctx.Input("X"); auto* y = ctx.Input("Y"); auto* z = ctx.Output("Out"); z->mutable_data(ctx.GetPlace()); int axis = ctx.Attr("axis"); ElementwiseComputeEx, DeviceContext, T>(ctx, x, y, axis, FMaxFunctor(), z); } }; template struct MaxGradDx { HOSTDEVICE T operator()(T x, T y, T out, T dout) const { return dout * static_cast(x > y); } }; template struct MaxGradDy { HOSTDEVICE T operator()(T x, T y, T out, T dout) const { return dout * static_cast(x <= y); } }; template class ElementwiseMaxGradKernel : public ElemwiseGradKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { ElemwiseGradKernel::Compute(ctx); using Tensor = framework::Tensor; auto* x = ctx.Input("X"); auto* y = ctx.Input("Y"); auto* dout = ctx.Input(framework::GradVarName("Out")); auto* dx = ctx.Output(framework::GradVarName("X")); auto* dy = ctx.Output(framework::GradVarName("Y")); auto* out = dout; // Fake out, not used int axis = ctx.Attr("axis"); ElemwiseGradCompute, MaxGradDy>( ctx, *x, *y, *out, *dout, axis, dx, dy, MaxGradDx(), MaxGradDy()); } }; template struct FMaxGradDx { HOSTDEVICE T operator()(T x, T y, T out, T dout) const { return dout * static_cast((x >= y) || isnan(y)); } }; template <> struct FMaxGradDx { HOSTDEVICE paddle::platform::float16 operator()( paddle::platform::float16 x, paddle::platform::float16 y, paddle::platform::float16 out, paddle::platform::float16 dout) const { return dout * static_cast( (x >= y) || paddle::platform::isnan(y)); } }; template <> struct FMaxGradDx { HOSTDEVICE int operator()(int x, int y, int out, int dout) const { return dout * static_cast((x >= y)); } }; template <> struct FMaxGradDx { HOSTDEVICE int64_t operator()(int64_t x, int64_t y, int64_t out, int64_t dout) const { return dout * static_cast((x >= y)); } }; template struct FMaxGradDy { HOSTDEVICE T operator()(T x, T y, T out, T dout) const { return dout * static_cast(!((x >= y) || isnan(y))); } }; template <> struct FMaxGradDy { HOSTDEVICE paddle::platform::float16 operator()( paddle::platform::float16 x, paddle::platform::float16 y, paddle::platform::float16 out, paddle::platform::float16 dout) const { return dout * static_cast( !((x >= y) || paddle::platform::isnan(y))); } }; template <> struct FMaxGradDy { HOSTDEVICE int64_t operator()(int64_t x, int64_t y, int64_t out, int64_t dout) const { return dout * static_cast(!((x >= y))); } }; template <> struct FMaxGradDy { HOSTDEVICE int operator()(int x, int y, int out, int dout) const { return dout * static_cast(!((x >= y))); } }; template class ElementwiseFMaxGradKernel : public ElemwiseGradKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { ElemwiseGradKernel::Compute(ctx); using Tensor = framework::Tensor; auto* x = ctx.Input("X"); auto* y = ctx.Input("Y"); auto* dout = ctx.Input(framework::GradVarName("Out")); auto* dx = ctx.Output(framework::GradVarName("X")); auto* dy = ctx.Output(framework::GradVarName("Y")); auto* out = dout; // Fake out, not used int axis = ctx.Attr("axis"); ElemwiseGradCompute, FMaxGradDy>( ctx, *x, *y, *out, *dout, axis, dx, dy, FMaxGradDx(), FMaxGradDy()); } }; } // namespace operators } // namespace paddle