---
title: Sum
description: "函数接口声明如下："
url: https://www.hikunpeng.com/document/detail/zh/kunpengboostkithistory/2300/accel/kunpengaccel_hmpp_06_0266.html
sourcePath: /source/zh/kunpengboostkithistory/2300/accel/kunpengaccel_hmpp_06_0266.html
indexId: 057b30f8cfe4e84007e87a98d39eb8a88c689ac7abf5c7ce9bca84d9a3ff0c7e75
---
# Sum

函数接口声明如下：

HmppResult HMPPS_AggSum_16s(const int16_t *src, int32_t len, int8_t *nullAddr, bool *overflow, int64_t *sum);

HmppResult HMPPS_AggSum_32s(const int32_t *src, int32_t len, int8_t *nullAddr, bool *overflow, int64_t *sum);

HmppResult HMPPS_AggSum_64s(const int64_t *src, int32_t len, int8_t *nullAddr, bool *overflow, int64_t *sum);

HmppResult HMPPS_AggSum_64f(const double *src, int32_t len, int8_t *nullAddr, bool *overflow, double *sum);

HmppResult HMPPS_AggSum_decimal64(const int64_t *src, int32_t len, int8_t *nullAddr, bool *overflow, HmppDecimal128 *sum);

HmppResult HMPPS_AggSum_decimal128(const HmppDecimal128 *src, int32_t len, int8_t *nullAddr, bool *overflow, HmppDecimal128 *sum);

#### 参数

| 参数名 | 描述 | 取值范围 | 输入/输出 |
| --- | --- | --- | --- |
| src | 指向源向量的指针。 | 非空 | 输入 |
| len | 向量长度。 | (0,INT\_MAX] | 输入 |
| nullAddr | 指向空地址的指针。 若nullAddr为空指针，表示src向量中所有元素都参与计算。 否则，当nullAddr[i]=0时，src[i]参与计算（i表示索引）。 | 无要求，可以为空 | 输入 |
| overflow | 指向溢出标志位的指针。 | 非空 | 输出 |
| sum | 指向求和结果的指针。 | 非空 | 输出 |


#### 返回值

- 成功：返回HMPP_STS_NO_ERR。
- 失败：返回错误码。


#### 错误码

| 错误码 | 描述 |
| --- | --- |
| HMPP\_STS\_NULL\_PTR\_ERR | src、sum、overflow这几个入参中存在空指针。 |
| HMPP\_STS\_SIZE\_ERR | len小于或等于0。 |


#### 示例

```
#include <stdio.h>
#include "hmpp.h"
#define BUFFER_SIZE_T 10
int main()
{
int64_t src[BUFFER_SIZE_T] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int8_t nullAddr[BUFFER_SIZE_T] = {0, 0, 1, 1, 0, 1, 0, 0, 0, 0};
int64_t sum;
bool overflow;
HmppResult result = HMPPS_AggSum_64s(src, BUFFER_SIZE_T, nullAddr, &overflow, &sum);
printf("result = %d  ", result);
if (result != HMPP_STS_NO_ERR) {
return 0;
}
printf("sum = %ld, overflow = %d\n", sum, overflow);
}
```

运行结果：

```
result = 0  sum = 42, overflow = 0
```
