/* 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 // CUDA and HIP use same api #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) #include "paddle/pten/backends/cuda/cuda_context.h" #include "paddle/pten/common/scalar.h" #include "paddle/pten/core/dense_tensor.h" namespace pten { template void Sign(const CUDAContext& dev_ctx, const DenseTensor& x, DenseTensor* out); template void Mean(const CUDAContext& 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 Add(const CUDAContext& dev_ctx, const DenseTensor& x, const DenseTensor& y, int axis, DenseTensor* out); template void Subtract(const CUDAContext& dev_ctx, const DenseTensor& x, const DenseTensor& y, int axis, DenseTensor* out); template void Divide(const CUDAContext& dev_ctx, const DenseTensor& x, const DenseTensor& y, int axis, DenseTensor* out); template void Multiply(const CUDAContext& dev_ctx, const DenseTensor& x, const DenseTensor& y, int axis, DenseTensor* out); template void Sum(const CUDAContext& 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_CUDA_ELEMENTWISE_OP(name) \ template \ void name(const CUDAContext& 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); \ out->mutable_data(); \ LaunchElementwiseCudaKernel( \ dev_ctx, inputs, &outputs, axis, general::name##Functor()); \ } #endif