Files
paddlepaddle--paddle/paddle/phi/kernels/cpu/reduce_sum_kernel.cc
T
2026-07-13 12:40:42 +08:00

104 lines
3.8 KiB
C++

// Copyright (c) 2022 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/phi/kernels/reduce_sum_kernel.h"
#include <set>
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/cpu/reduce.h"
#include "paddle/phi/kernels/full_kernel.h"
#include "paddle/phi/kernels/funcs/reduce_functor.h"
namespace phi {
template <typename T, typename Context>
void SumRawKernel(const Context& dev_ctx,
const DenseTensor& x,
const IntArray& dims,
bool keep_dim,
bool reduce_all,
DataType out_dtype,
DenseTensor* out) {
if (out_dtype == DataType::UNDEFINED && out->dtype() != x.dtype()) {
out_dtype = out->dtype();
}
if (x.numel() == 0) {
dev_ctx.template Alloc<T>(out);
// When out_dtype is DataType::UNDEFINED and input is int32 or bool,
// result is int64, but FullKernel out_dtype parameter is not used, we need
// to set int64 explicitly.
if (out_dtype == DataType::INT64) {
Full<int64_t, Context>(dev_ctx, out->dims(), 0, out);
} else {
Full<T, Context>(dev_ctx, out->dims(), 0, out);
}
return;
}
if constexpr (std::is_same_v<T, float16> || std::is_same_v<T, bfloat16>) {
DenseTensor x_fp32 = Cast<T, Context>(dev_ctx, x, DataType::FLOAT32);
DataType final_out_dtype = out_dtype;
if (final_out_dtype == DataType::UNDEFINED) {
final_out_dtype = x.dtype();
}
if (final_out_dtype == DataType::FLOAT32) {
Reduce<CPUContext, float, funcs::SumFunctor>(dev_ctx,
x_fp32,
reduce_all,
dims.GetData(),
keep_dim,
DataType::UNDEFINED,
out);
} else {
DenseTensor intermediate_result;
intermediate_result.set_meta(out->meta());
Reduce<CPUContext, float, funcs::SumFunctor>(dev_ctx,
x_fp32,
reduce_all,
dims.GetData(),
keep_dim,
DataType::UNDEFINED,
&intermediate_result);
CastKernel<float, Context>(
dev_ctx, intermediate_result, final_out_dtype, out);
}
} else {
Reduce<CPUContext, T, funcs::SumFunctor>(
dev_ctx, x, reduce_all, dims.GetData(), keep_dim, out_dtype, out);
}
}
} // namespace phi
PD_REGISTER_KERNEL(sum_raw,
CPU,
ALL_LAYOUT,
phi::SumRawKernel,
bool,
float,
double,
phi::float16,
phi::bfloat16,
int16_t,
int8_t,
uint8_t,
int,
int64_t,
phi::complex64,
phi::complex128) {
kernel->OutputAt(0).SetDataType(phi::DataType::UNDEFINED);
}