#include <../src/ksp/pc/impls/factor/icc/icc.h> /*I "petscpc.h" I*/ static PetscErrorCode PCSetUp_ICC(PC pc) { PC_ICC *icc = (PC_ICC *)pc->data; IS perm = NULL, cperm = NULL; MatInfo info; MatSolverType stype; MatFactorError err; PetscBool canuseordering; const char *prefix; PetscFunctionBegin; pc->failedreason = PC_NOERROR; PetscCall(PCGetOptionsPrefix(pc, &prefix)); PetscCall(MatSetOptionsPrefixFactor(pc->pmat, prefix)); PetscCall(MatSetErrorIfFailure(pc->pmat, pc->erroriffailure)); if (!pc->setupcalled) { PetscCall(PCFactorSetUpMatSolverType(pc)); PetscCall(MatFactorGetCanUseOrdering(((PC_Factor *)icc)->fact, &canuseordering)); if (canuseordering) { PetscCall(PCFactorSetDefaultOrdering_Factor(pc)); PetscCall(MatGetOrdering(pc->pmat, ((PC_Factor *)icc)->ordering, &perm, &cperm)); } PetscCall(MatICCFactorSymbolic(((PC_Factor *)icc)->fact, pc->pmat, perm, &((PC_Factor *)icc)->info)); } else if (pc->flag != SAME_NONZERO_PATTERN) { PetscCall(MatDestroy(&((PC_Factor *)icc)->fact)); PetscCall(PCFactorSetUpMatSolverType(pc)); PetscCall(MatFactorGetCanUseOrdering(((PC_Factor *)icc)->fact, &canuseordering)); if (canuseordering) { PetscCall(PCFactorSetDefaultOrdering_Factor(pc)); PetscCall(MatGetOrdering(pc->pmat, ((PC_Factor *)icc)->ordering, &perm, &cperm)); } PetscCall(MatICCFactorSymbolic(((PC_Factor *)icc)->fact, pc->pmat, perm, &((PC_Factor *)icc)->info)); } PetscCall(MatGetInfo(((PC_Factor *)icc)->fact, MAT_LOCAL, &info)); icc->hdr.actualfill = info.fill_ratio_needed; PetscCall(ISDestroy(&cperm)); PetscCall(ISDestroy(&perm)); PetscCall(MatFactorGetError(((PC_Factor *)icc)->fact, &err)); if (err) { /* FactorSymbolic() fails */ pc->failedreason = (PCFailedReason)err; PetscFunctionReturn(PETSC_SUCCESS); } PetscCall(MatCholeskyFactorNumeric(((PC_Factor *)icc)->fact, pc->pmat, &((PC_Factor *)icc)->info)); PetscCall(MatFactorGetError(((PC_Factor *)icc)->fact, &err)); if (err) { /* FactorNumeric() fails */ pc->failedreason = (PCFailedReason)err; } PetscCall(PCFactorGetMatSolverType(pc, &stype)); if (!stype) { MatSolverType solverpackage; PetscCall(MatFactorGetSolverType(((PC_Factor *)icc)->fact, &solverpackage)); PetscCall(PCFactorSetMatSolverType(pc, solverpackage)); } PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode PCReset_ICC(PC pc) { PC_ICC *icc = (PC_ICC *)pc->data; PetscFunctionBegin; PetscCall(MatDestroy(&((PC_Factor *)icc)->fact)); PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode PCDestroy_ICC(PC pc) { PC_ICC *icc = (PC_ICC *)pc->data; PetscFunctionBegin; PetscCall(PCReset_ICC(pc)); PetscCall(PetscFree(((PC_Factor *)icc)->ordering)); PetscCall(PetscFree(((PC_Factor *)icc)->solvertype)); PetscCall(PCFactorClearComposedFunctions(pc)); PetscCall(PetscFree(pc->data)); PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode PCApply_ICC(PC pc, Vec x, Vec y) { PC_ICC *icc = (PC_ICC *)pc->data; PetscFunctionBegin; PetscCall(MatSolve(((PC_Factor *)icc)->fact, x, y)); PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode PCMatApply_ICC(PC pc, Mat X, Mat Y) { PC_ICC *icc = (PC_ICC *)pc->data; PetscFunctionBegin; PetscCall(MatMatSolve(((PC_Factor *)icc)->fact, X, Y)); PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode PCApplySymmetricLeft_ICC(PC pc, Vec x, Vec y) { PC_ICC *icc = (PC_ICC *)pc->data; PetscFunctionBegin; PetscCall(MatForwardSolve(((PC_Factor *)icc)->fact, x, y)); PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode PCApplySymmetricRight_ICC(PC pc, Vec x, Vec y) { PC_ICC *icc = (PC_ICC *)pc->data; PetscFunctionBegin; PetscCall(MatBackwardSolve(((PC_Factor *)icc)->fact, x, y)); PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode PCSetFromOptions_ICC(PC pc, PetscOptionItems PetscOptionsObject) { PC_ICC *icc = (PC_ICC *)pc->data; PetscBool flg; /* PetscReal dt[3];*/ PetscFunctionBegin; PetscOptionsHeadBegin(PetscOptionsObject, "ICC Options"); PetscCall(PCSetFromOptions_Factor(pc, PetscOptionsObject)); PetscCall(PetscOptionsReal("-pc_factor_levels", "levels of fill", "PCFactorSetLevels", ((PC_Factor *)icc)->info.levels, &((PC_Factor *)icc)->info.levels, &flg)); /*dt[0] = ((PC_Factor*)icc)->info.dt; dt[1] = ((PC_Factor*)icc)->info.dtcol; dt[2] = ((PC_Factor*)icc)->info.dtcount; PetscInt dtmax = 3; PetscCall(PetscOptionsRealArray("-pc_factor_drop_tolerance","