Home
last modified time | relevance | path

Searched refs:t_ksp (Results 1 – 1 of 1) sorted by relevance

/petsc/src/ts/tests/
H A Dex30.c463 KSP t_ksp[LANDAU_MAX_GRIDS][EX30_MAX_NUM_THRDS]; in go() local
521 PetscCall(KSPCreate(PETSC_COMM_SELF, &t_ksp[grid][tid])); in go()
522 PetscCall(KSPSetType(t_ksp[grid][tid], KSPCG)); in go()
523 PetscCall(KSPGetPC(t_ksp[grid][tid], &pc)); in go()
525 PetscCall(KSPSetOptionsPrefix(t_ksp[grid][tid], "ptof_")); in go()
526 PetscCall(KSPSetOperators(t_ksp[grid][tid], g_Mass[grid], g_Mass[grid])); in go()
527 PetscCall(KSPSetFromOptions(t_ksp[grid][tid])); in go()
745 ierr_t = KSPSolve(t_ksp[grid][tid], work, subX); in go()
1032 PetscCall(KSPDestroy(&t_ksp[grid][tid])); in go()