/* 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/pten/core/dense_tensor.h" #include "paddle/pten/core/kernel_registry.h" // See Note [ Why still include the fluid headers? ] #include "paddle/fluid/platform/device_context.h" namespace pten { using CPUContext = paddle::platform::CPUDeviceContext; template void Sign(const CPUContext& dev_ctx, const DenseTensor& x, DenseTensor* out); template void Mean(const CPUContext& dev_ctx, const DenseTensor& x, const std::vector& dims, bool keep_dim, bool reduce_all, DataType in_dtype, DataType out_dtype, DenseTensor* out); template void Scale(const CPUContext& dev_ctx, const DenseTensor& x, float scale, float bias, bool bias_after_scale, DenseTensor* out); template void ScaleHost(const CPUContext& dev_ctx, const DenseTensor& x, const DenseTensor& scale, float bias, bool bias_after_scale, DenseTensor* out); template void ElementwiseAdd(const CPUContext& dev_ctx, const DenseTensor& x, const DenseTensor& y, int axis, DenseTensor* out); template void ElementwiseSub(const CPUContext& dev_ctx, const DenseTensor& x, const DenseTensor& y, int axis, DenseTensor* out); template void ElementwiseDiv(const CPUContext& dev_ctx, const DenseTensor& x, const DenseTensor& y, int axis, DenseTensor* out); template void ElementwiseMul(const CPUContext& dev_ctx, const DenseTensor& x, const DenseTensor& y, int axis, DenseTensor* out); template void Sum(const CPUContext& dev_ctx, const DenseTensor& x, const std::vector& dims, bool keep_dim, bool reduce_all, DataType in_dtype, DataType out_dtype, DenseTensor* out); } // namespace pten #define DEFINE_CPU_ELEMENTWISE_OP(name) \ template \ void Elementwise##name(const CPUContext& dev_ctx, \ const DenseTensor& x, \ const DenseTensor& y, \ int axis, \ DenseTensor* out) { \ out->mutable_data(); \ if (x.dims() == y.dims()) { \ SameDimsElementwiseCompute< \ general::SameDims##name##Functor>()( \ dev_ctx, x, y, out); \ } else { \ auto x_dims = x.dims(); \ auto y_dims = y.dims(); \ if (x_dims.size() >= y_dims.size()) { \ ElementwiseCompute, T>( \ dev_ctx, x, y, axis, general::name##Functor(), out); \ } else { \ ElementwiseCompute, T>( \ dev_ctx, x, y, axis, general::Inverse##name##Functor(), out); \ } \ } \ }