/* Copyright (c) 2021 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 "paddle/fluid/platform/complex.h" #include "paddle/phi/core/utils/array.h" #include "paddle/phi/kernels/funcs/elementwise_functor.h" namespace paddle { namespace operators { // Define the binary functors used in elementwise ops. // Note: InverseXxxFunctor is needed when calling ElementwiseComputeEx on CPU. // Add template using AddFunctor = phi::funcs::AddFunctor; template using InverseAddFunctor = phi::funcs::InverseAddFunctor; // Subtract template using SubFunctor = phi::funcs::SubtractFunctor; template using InverseSubFunctor = phi::funcs::InverseSubtractFunctor; // Multiply template using MulFunctor = phi::funcs::MultiplyFunctor; template using InverseMulFunctor = phi::funcs::InverseMultiplyFunctor; // Divide template using DivFunctor = phi::funcs::DivideFunctor; template using InverseDivFunctor = phi::funcs::InverseDivideFunctor; // Floor Divide template struct FloorDivFunctor { inline HOSTDEVICE T operator()(const T a, const T b) const { PADDLE_ENFORCE(b != 0, DIV_ERROR_INFO); return static_cast(std::trunc(a / b)); } }; template struct InverseFloorDivFunctor { inline HOSTDEVICE T operator()(const T a, const T b) const { PADDLE_ENFORCE(a != 0, DIV_ERROR_INFO); return static_cast(std::trunc(b / a)); } }; #undef DIV_ERROR_INFO // Maximum template struct MaxFunctor { inline HOSTDEVICE T operator()(const T a, const T b) const { return a > b ? a : b; } }; // Minmum template struct MinFunctor { inline HOSTDEVICE T operator()(const T a, const T b) const { return a < b ? a : b; } }; template using Complex = paddle::platform::complex; template struct MinGradXFunctor { inline HOSTDEVICE T operator()(const T x, const T y, const T dout) const { return dout * static_cast(x < y); } }; template struct MinGradYFunctor { inline HOSTDEVICE T operator()(const T x, const T y, const T dout) const { return dout * static_cast(x >= y); } }; template struct MinGradXYFunctor { inline HOSTDEVICE phi::Array operator()(const InT x, const InT y, const InT dout) { phi::Array outs; // dx = dout * (x < y) outs[0] = static_cast(dout * static_cast(x < y)); // dy = dout * (x >= y) outs[1] = static_cast(dout * static_cast(x >= y)); return outs; } }; // Ternary compare template struct MaxGradXFunctor { inline HOSTDEVICE T operator()(const T x, const T y, const T dout) const { return dout * static_cast(x > y); } }; template struct MaxGradYFunctor { inline HOSTDEVICE T operator()(const T x, const T y, const T dout) const { return dout * static_cast(x <= y); } }; template struct MaxGradXYFunctor { inline HOSTDEVICE phi::Array operator()(const InT x, const InT y, const InT dout) { phi::Array outs; // dx = dout * (x > y) outs[0] = static_cast(dout * static_cast(x > y)); // dy = dout * (x <= y) outs[1] = static_cast(dout * static_cast(x <= y)); return outs; } }; } // namespace operators } // namespace paddle