Lines Matching refs:PetscCallAbort

19   PetscCallAbort(PETSC_COMM_SELF, VecPlaceArray(cvode->work, Y));  in FVPOL()
20 PetscCallAbort(PETSC_COMM_SELF, VecPlaceArray(cvode->workf, F)); in FVPOL()
23 PetscCallAbort(PETSC_COMM_SELF, TSGetDM(ts, &dm)); in FVPOL()
24 PetscCallAbort(PETSC_COMM_SELF, DMGetDMTS(dm, &tsdm)); in FVPOL()
25 PetscCallAbort(PETSC_COMM_SELF, DMTSGetIFunction(dm, &ifunction, NULL)); in FVPOL()
27 PetscCallAbort(PETSC_COMM_SELF, TSComputeRHSFunction(ts, *X, cvode->work, cvode->workf)); in FVPOL()
31 PetscCallAbort(PETSC_COMM_SELF, VecDuplicate(cvode->work, &yydot)); in FVPOL()
32 PetscCallAbort(PETSC_COMM_SELF, VecZeroEntries(yydot)); in FVPOL()
33PetscCallAbort(PETSC_COMM_SELF, TSComputeIFunction(ts, *X, cvode->work, yydot, cvode->workf, PETSC… in FVPOL()
34 PetscCallAbort(PETSC_COMM_SELF, VecScale(cvode->workf, -1.)); in FVPOL()
35 PetscCallAbort(PETSC_COMM_SELF, VecDestroy(&yydot)); in FVPOL()
38 PetscCallAbort(PETSC_COMM_SELF, VecResetArray(cvode->work)); in FVPOL()
39 PetscCallAbort(PETSC_COMM_SELF, VecResetArray(cvode->workf)); in FVPOL()
50 PetscCallAbort(PETSC_COMM_SELF, VecPlaceArray(cvode->work, Y)); in JVPOL()
51 PetscCallAbort(PETSC_COMM_SELF, VecDuplicate(cvode->work, &yydot)); in JVPOL()
52 PetscCallAbort(PETSC_COMM_SELF, VecGetSize(yydot, &n)); in JVPOL()
53 PetscCallAbort(PETSC_COMM_SELF, MatCreateSeqDense(PETSC_COMM_SELF, n, n, DFY, &mat)); in JVPOL()
54 PetscCallAbort(PETSC_COMM_SELF, VecZeroEntries(yydot)); in JVPOL()
55PetscCallAbort(PETSC_COMM_SELF, TSComputeIJacobian(ts, *X, cvode->work, yydot, 0, mat, mat, PETSC_… in JVPOL()
56 PetscCallAbort(PETSC_COMM_SELF, MatScale(mat, -1.0)); in JVPOL()
57 PetscCallAbort(PETSC_COMM_SELF, MatDestroy(&mat)); in JVPOL()
58 PetscCallAbort(PETSC_COMM_SELF, VecDestroy(&yydot)); in JVPOL()
59 PetscCallAbort(PETSC_COMM_SELF, VecResetArray(cvode->work)); in JVPOL()
67 PetscCallAbort(PETSC_COMM_SELF, VecPlaceArray(cvode->work, Y)); in SOLOUT()
69 PetscCallAbort(PETSC_COMM_SELF, TSMonitor(ts, *NR - 1, *X, cvode->work)); in SOLOUT()
70 PetscCallAbort(PETSC_COMM_SELF, VecResetArray(cvode->work)); in SOLOUT()