/* 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; #undef DIV_ERROR_INFO // Maximum template using MaxFunctor = phi::funcs::MaximumFunctor; // Minmum template using MinFunctor = phi::funcs::MinimumFunctor; template using Complex = paddle::platform::complex; // Ternary compare template using MaxGradXFunctor = phi::funcs::MaxGradXFunctor; template using MaxGradYFunctor = phi::funcs::MaxGradYFunctor; template using MaxGradXYFunctor = phi::funcs::MaxGradXYFunctor; template using MinGradXFunctor = phi::funcs::MinGradXFunctor; template using MinGradYFunctor = phi::funcs::MinGradYFunctor; template using MinGradXYFunctor = phi::funcs::MinGradXYFunctor; } // namespace operators } // namespace paddle