Home
last modified time | relevance | path

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

/petsc/src/snes/tutorials/
H A Dex22.c78 DM packer; in main() local
91 PetscCall(DMCompositeCreate(PETSC_COMM_WORLD, &packer)); in main()
94 PetscCall(DMCompositeAddDM(packer, red)); in main()
101 PetscCall(DMCompositeAddDM(packer, (DM)da)); in main()
102 PetscCall(DMSetApplicationContext(packer, &user)); in main()
104 packer->ops->creatematrix = DMCreateMatrix_MF; in main()
108 PetscCall(SNESSetDM(snes, packer)); in main()
126 PetscCall(DMDestroy(&packer)); in main()
153 DM packer, red, da; in ComputeFunction() local
156 PetscCall(VecGetDM(U, &packer)); in ComputeFunction()
[all …]
H A Dex21.c41 DM packer; member
60 PetscCall(DMCompositeCreate(PETSC_COMM_WORLD, &user.packer)); in main()
62 PetscCall(DMCompositeAddDM(user.packer, user.red1)); in main()
66 PetscCall(DMCompositeAddDM(user.packer, user.da1)); in main()
72 PetscCall(DMCompositeAddDM(user.packer, user.da2)); in main()
73 PetscCall(DMCreateGlobalVector(user.packer, &U)); in main()
94 PetscCall(DMDestroy(&user.packer)); in main()
117 PetscCall(DMCompositeGetLocalVectors(user->packer, &vw, &vu, &vlambda)); in FormFunction()
118 PetscCall(DMCompositeGetLocalVectors(user->packer, &vfw, &vfu, &vflambda)); in FormFunction()
119 PetscCall(DMCompositeScatter(user->packer, U, vw, vu, vlambda)); in FormFunction()
[all …]
/petsc/src/dm/tests/
H A Dex44.c10 DM da1, da2, packer; in main() local
19 PetscCall(DMCompositeCreate(PETSC_COMM_WORLD, &packer)); in main()
23 PetscCall(DMCompositeAddDM(packer, da1)); in main()
27 PetscCall(DMCompositeAddDM(packer, da2)); in main()
29 PetscCall(DMCreateGlobalVector(packer, &global)); in main()
30 PetscCall(DMCreateLocalVector(packer, &local)); in main()
31 PetscCall(DMCreateLocalVector(packer, &buffer)); in main()
33 PetscCall(DMCompositeGetAccessArray(packer, global, 2, NULL, globals)); in main()
48 PetscCall(DMCompositeRestoreAccessArray(packer, global, 2, NULL, globals)); in main()
51 PetscCall(DMGlobalToLocalBegin(packer, global, INSERT_VALUES, local)); in main()
[all …]
H A Dex9.c13 DM packer; in main() local
22 PetscCall(DMCompositeCreate(PETSC_COMM_WORLD, &packer)); in main()
25 PetscCall(DMCompositeAddDM(packer, dmred)); in main()
34 PetscCall(DMCompositeAddDM(packer, da)); in main()
40 PetscCall(DMSetMatType(packer, MATNEST)); in main()
41 PetscCall(DMSetFromOptions(packer)); in main()
42 PetscCall(DMCreateMatrix(packer, &M)); in main()
47 PetscCall(DMCompositeGetISLocalToGlobalMappings(packer, &ltog)); in main()
55 PetscCall(DMDestroy(&packer)); in main()
H A Dex16.c14 DM packer; in main() local
29 PetscCall(DMCompositeCreate(PETSC_COMM_WORLD, &packer)); in main()
33 PetscCall(DMCompositeAddDM(packer, dmred1)); in main()
39 PetscCall(DMCompositeAddDM(packer, da1)); in main()
43 PetscCall(DMCompositeAddDM(packer, dmred2)); in main()
49 PetscCall(DMCompositeAddDM(packer, da2)); in main()
51 PetscCall(DMCreateGlobalVector(packer, &global)); in main()
58 PetscCall(DMCompositeScatter(packer, global, redundant1, local1, redundant2, local2)); in main()
85 …PetscCall(DMCompositeGather(packer, gather_add ? ADD_VALUES : INSERT_VALUES, global, redundant1, l… in main()
89 PetscCall(DMCompositeGetISLocalToGlobalMappings(packer, &ltog)); in main()
[all …]
/petsc/src/dm/tutorials/output/
H A Dswarm_ex1_4.out9 packer status status: finalized
H A Dswarm_ex1_2.out9 packer status status: finalized
H A Dswarm_ex1_8.out12 packer status status: finalized
H A Dswarm_ex1_3.out28 packer status status: finalized
H A Dswarm_ex1_6.out12 packer status status: finalized
H A Dswarm_ex1_7.out94 packer status status: finalized
/petsc/src/dm/impls/composite/
H A Dpack.c1747 PetscErrorCode DMCompositeCreate(MPI_Comm comm, DM *packer) in DMCompositeCreate() argument
1750 PetscAssertPointer(packer, 2); in DMCompositeCreate()
1751 PetscCall(DMCreate(comm, packer)); in DMCompositeCreate()
1752 PetscCall(DMSetType(*packer, DMCOMPOSITE)); in DMCompositeCreate()