/* 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. */ #include "paddle/pten/kernels/math_kernel.h" #include "paddle/pten/backends/gpu/gpu_context.h" #include "paddle/pten/kernels/funcs/elementwise_functor.h" #include "paddle/pten/kernels/gpu/elementwise.h" #include "paddle/pten/kernels/gpu/reduce.h" #ifdef __NVCC__ #include "cub/cub.cuh" #endif #ifdef __HIPCC__ #include namespace cub = hipcub; #endif #include "paddle/pten/common/complex.h" #include "paddle/pten/common/float16.h" #include "paddle/pten/core/compat/convert_utils.h" #include "paddle/pten/core/enforce.h" #include "paddle/pten/core/kernel_registry.h" namespace pten { #define DEFINE_CUDA_ELEMENTWISE_OP(name) \ template \ void name##RawKernel(const Context& dev_ctx, \ const DenseTensor& x, \ const DenseTensor& y, \ int axis, \ DenseTensor* out) { \ std::vector inputs; \ std::vector outputs; \ inputs.emplace_back(&x); \ inputs.emplace_back(&y); \ outputs.emplace_back(out); \ dev_ctx.template Alloc(out); \ LaunchElementwiseCudaKernel( \ dev_ctx, inputs, &outputs, axis, funcs::name##Functor()); \ } /** * Kernels */ template void MeanRawKernel(const Context& dev_ctx, const DenseTensor& x, const std::vector& dims, bool keep_dim, bool reduce_all, DenseTensor* out) { auto out_dtype = x.dtype(); pten::Reduce( dev_ctx, x, reduce_all, dims, keep_dim, out_dtype, out); } template void SumRawKernel(const Context& dev_ctx, const DenseTensor& x, const std::vector& dims, bool keep_dim, bool reduce_all, DataType out_dtype, DenseTensor* out) { pten::Reduce( dev_ctx, x, reduce_all, dims, keep_dim, out_dtype, out); } // Create the definition of Add DEFINE_CUDA_ELEMENTWISE_OP(Add) // Create the definition of Subtract DEFINE_CUDA_ELEMENTWISE_OP(Subtract) // Create the definition of Multiply DEFINE_CUDA_ELEMENTWISE_OP(Multiply) // Create the definition of Divide DEFINE_CUDA_ELEMENTWISE_OP(Divide) } // namespace pten using float16 = paddle::platform::float16; using complex64 = ::paddle::platform::complex; using complex128 = ::paddle::platform::complex; PT_REGISTER_KERNEL(add_raw, GPU, ALL_LAYOUT, pten::AddRawKernel, float, double, int, int64_t, float16, complex64, complex128) {} PT_REGISTER_KERNEL(subtract_raw, GPU, ALL_LAYOUT, pten::SubtractRawKernel, float, double, int, int64_t, float16, complex64, complex128) {} PT_REGISTER_KERNEL(divide_raw, GPU, ALL_LAYOUT, pten::DivideRawKernel, float, double, int, int64_t, float16, complex64, complex128) {} PT_REGISTER_KERNEL(multiply_raw, GPU, ALL_LAYOUT, pten::MultiplyRawKernel, float, double, int, int64_t, bool, float16, complex64, complex128) {} PT_REGISTER_KERNEL(sum_raw, GPU, ALL_LAYOUT, pten::SumRawKernel, bool, float, double, float16, int, int64_t, complex64, complex128) { kernel->OutputAt(0).SetDataType(paddle::experimental::DataType::UNDEFINED); } PT_REGISTER_KERNEL(mean_raw, GPU, ALL_LAYOUT, pten::MeanRawKernel, float, double, bool, float16) {}