#include "op_plugin/AclOpsInterface.h"
#include "op_plugin/OpApiInterface.h"
#include "op_plugin/utils/op_api_common.h"
namespace op_api {
using npu_preparation = at_npu::native::OpPreparation;
at::Tensor &sum_out_common_nocheck(const at::Tensor &self,
at::IntArrayRef dim,
bool keepdim,
c10::optional<c10::ScalarType> dtype,
at::Tensor &result)
{
DO_COMPATIBILITY(aclnnReduceSum, acl_op::sum_out(self, dim, keepdim, dtype, result));
auto output_size = op_infer::sum_npu_output_size(self, dim, keepdim);
auto res_type = dtype.has_value() ? dtype.value() : result.scalar_type();
npu_preparation::check_tensor({self}, result, res_type, output_size);
EXEC_NPU_CMD(aclnnReduceSum, self, dim, keepdim, res_type, result);
return result;
}
at::Tensor sum_common_nocheck(const at::Tensor &self,
at::IntArrayRef dim,
bool keepdim,
c10::optional<c10::ScalarType> dtype)
{
DO_COMPATIBILITY(aclnnReduceSum, acl_op::sum(self, dim, keepdim, dtype));
auto output_size = op_infer::reduce_ops_npu_output_size(self, dim, keepdim);
auto self_size = self.sizes();
auto out_type = self.scalar_type();
if (dtype.has_value()) {
out_type = dtype.value();
} else if (isIntegralType(out_type, true)) {
out_type = at::kLong;
}
for (uint64_t i = 0; i < self_size.size(); i++) {
if (self_size[i] == 0) {
return at::zeros(output_size, self.options().dtype(out_type));
}
}
at::Tensor result = npu_preparation::apply_tensor_without_format(output_size, self.options().dtype(out_type));
EXEC_NPU_CMD(aclnnReduceSum, self, dim, keepdim, out_type, result);
return result;
}
}