中文
注册
我要评分
文档获取效率
文档正确性
内容完整性
文档易理解
在线提单
论坛求助
鲲鹏小智

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;
    }
搜索结果
找到“0”个结果

当前产品无相关内容

未找到相关内容,请尝试其他搜索词