---
title: KmlIssGcrSet?I?
description: "设置迭代求解的相关参数。"
url: https://www.hikunpeng.com/document/detail/zh/hpchistory/hpckit/develop2400/kunpengaccel_kml_0783.html
sourcePath: /source/zh/hpchistory/hpckit/develop2400/kunpengaccel_kml_0783.html
indexId: 9e179c76470fd4acd232f5228242b6635b3af5608959fde73ea55a27bc5ade5867
---
# KmlIssGcrSet?I?

设置迭代求解的相关参数。

#### 接口定义

C Interface：

int KmlIssGcrSetSII(KmlSolverTask **handle, enum KML_SOLVER_PARAM param, const int *data, int nd);

int KmlIssGcrSetDII(KmlSolverTask **handle, enum KML_SOLVER_PARAM param, const int *data, int nd);

int KmlIssGcrSetSIS(KmlSolverTask **handle, enum KML_SOLVER_PARAM param, const float *data, int nd);

int KmlIssGcrSetDID(KmlSolverTask **handle, enum KML_SOLVER_PARAM param, const double *data, int nd);


#### 参数

| 参数名 | 类型 | 描述 | 输入/输出 |
| --- | --- | --- | --- |
| handle | KmlSolverTask \*\* | 求解器句柄，传入之前步骤的变量。 | 输入/输出 |
| param | enum KML\_SOLVER\_PARAM | KMLSS\_THRESHOLD表示迭代残差阈值。 KMLSS\_MAX\_ITERATION\_COUNT表示最大迭代次数。 KMLSS\_RESTART\_PARAM重启大小。 KMLSS\_PRECONDITIONER\_TYPE表示预条件子类型。 KMLSS\_VECTOR\_NORM\_TYPE 表示迭代残差的计算范数。 KMLSS\_MATRIX\_FORMAT 表示矩阵稀疏存储格式。 | 输入 |
| data | 在KmlIssGcrSetSII中为const int \*。 在KmlIssGcrSetDII中为const int \*。 在KmlIssGcrSetSIS中为const float \*。 在KmlIssGcrSetDID中为const double \*。 | 迭代求解相关参数数组（如最大迭代次数）。 当前可选的计算范数： 1\-NORM：KMLSS\_L1 2\-NORM：KMLSS\_L2 当前可选的稀疏矩阵存储格式： CSR格式：KMLSS\_CSR ELLPACK格式：KMLSS\_ELL COO格式：KMLSS\_COO ELLPACK\_COO混合格式：KMLSS\_SELLCOO 当前可选择的预条件子类型： ILU预条件子：KMLSS\_ILU ICC预条件子：KMLSS\_ICC SOR预条件子：KMLSS\_SOR ILUT预条件子：KMLSS\_ILUT | 输入 |
| nd | int | data数组大小。 | 输入 |


#### 返回值

| 返回值 | 类型 | 描述 |
| --- | --- | --- |
| KMLSS\_NO\_ERROR | int | 正常执行。 |
| KMLSS\_DATA\_SIZE | int | 参数nd不等于1。 |
| KMLSS\_NULL\_ARGUMENT | int | {handle, data}中存在空参数。 |
| KMLSS\_BAD\_SELECTOR | int | param为无效参数。 |


#### 依赖

#include "kml_iss.h"


#### 示例

C Interface：

```
KmlSolverTask *handle;
int ierr;
int n = 8;  

double a[26] = {1.0, 1.0, 2.0, 9.0, 2.0, 1.0, -3.0, 2.0, 3.0, 2.0, 1.0, 1.0, 9.0, -5.0, 2.0, 6.0, 1.0, -3.0, 1.0, 4.0, 1.0, -5.0, 7.0, 2.0,1.0, 2.0};
int ja[26] = {0, 3, 4, 1, 2, 3, 5, 1, 2, 7, 0, 1, 3, 6, 0, 4, 5, 1, 4, 5, 7, 3, 6, 2, 5, 7};
int ia[9] = {0, 3, 7, 10, 14, 17, 21, 23, 26};

ierr = KmlIssGcrInitDI(&handle, n, a, ja, ia);

int nd = 1;
int idata[] = {0};
double ddata[] = {0};
double eps = 1e-4;
ierr = KmlIssGcrSetDID(&handle, KMLSS_THRESHOLD, &eps, nd);
if (ierr != 0) {
    printf("\nERROR in KmlIssGcrSetDID: %d", ierr);
    return 1;
    }
int max_iters = 2000;
ierr = KmlIssGcrSetDII(&handle, KMLSS_MAX_ITERATION_COUNT, &max_iters, nd);
if (ierr != 0) {
    printf("\nERROR in KmlIssGcrSetDII: %d", ierr);
    return 1;
    }
```
