/* 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/enforce.h" #include "paddle/fluid/platform/float16.h" #include "paddle/fluid/platform/hostdevice.h" #include "paddle/pten/kernels/funcs/elementwise_functor.h" namespace paddle { namespace operators { // Define the binary functors used in elementwise ops. // Add template using AddFunctor = pten::funcs::AddFunctor; template using InverseAddFunctor = pten::funcs::InverseAddFunctor; // Subtract template using SubFunctor = pten::funcs::SubtractFunctor; template using InverseSubFunctor = pten::funcs::InverseSubtractFunctor; // Multiply template using MulFunctor = pten::funcs::MultiplyFunctor; template using InverseMulFunctor = pten::funcs::InverseMultiplyFunctor; // Divide template using DivFunctor = pten::funcs::DivideFunctor; template using InverseDivFunctor = pten::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; } }; // Fmax template struct FMaxFunctor { inline HOSTDEVICE T operator()(const T& a, const T& b) const { return std::fmax(a, b); } }; template <> struct FMaxFunctor { inline HOSTDEVICE paddle::platform::float16 operator()( const paddle::platform::float16& a, const paddle::platform::float16& b) const { float float_a = static_cast(a); float float_b = static_cast(b); auto result = std::fmax(float_a, float_b); return static_cast(result); } }; // Fmin template struct FMinFunctor { inline HOSTDEVICE T operator()(const T& a, const T& b) const { return std::fmin(a, b); } }; template <> struct FMinFunctor { inline HOSTDEVICE paddle::platform::float16 operator()( const paddle::platform::float16& a, const paddle::platform::float16& b) const { float float_a = static_cast(a); float float_b = static_cast(b); auto result = std::fmin(float_a, float_b); return static_cast(result); } }; } // namespace operators } // namespace paddle