| /petsc/src/vec/vec/tests/ |
| H A D | ex100cu.cu | 19 VecType vectype; in main() local 133 PetscCall(VecGetType(u, &vectype)); in main() 134 PetscCall(PetscPrintf(PETSC_COMM_WORLD, "Before load, vectype is : %s\n", (char *)vectype)); in main() 136 PetscCall(VecGetType(u, &vectype)); in main() 137 PetscCall(PetscPrintf(PETSC_COMM_WORLD, "After load, vectype is : %s\n", (char *)vectype)); in main()
|
| /petsc/src/vec/vec/tests/output/ |
| H A D | ex100cu_4.out | 28 Before load, vectype is : (null) 29 After load, vectype is : mpi
|
| H A D | ex100cu_1.out | 28 Before load, vectype is : (null) 29 After load, vectype is : mpicuda
|
| H A D | ex100cu_2.out | 29 Before load, vectype is : (null) 30 After load, vectype is : mpicuda
|
| H A D | ex100cu_3.out | 31 Before load, vectype is : (null) 32 After load, vectype is : mpicuda
|
| H A D | ex100cu_6.out | 31 Before load, vectype is : mpicuda 32 After load, vectype is : mpicuda
|
| H A D | ex100cu_5.out | 31 Before load, vectype is : mpicuda 32 After load, vectype is : mpicuda
|
| /petsc/src/dm/interface/ |
| H A D | dmgenerate.c | 191 PetscCall(PetscFree((*dmAdapt)->vectype)); in DMAdaptLabel() 192 PetscCall(PetscStrallocpy(dm->vectype, (char **)&(*dmAdapt)->vectype)); in DMAdaptLabel() 263 PetscCall(PetscFree((*dmAdapt)->vectype)); in DMAdaptMetric() 264 PetscCall(PetscStrallocpy(dm->vectype, (char **)&(*dmAdapt)->vectype)); in DMAdaptMetric()
|
| H A D | dmi.c | 48 PetscCall(VecSetType(*vec, dm->vectype)); in DMCreateGlobalVector_Section_Private() 73 PetscCall(VecSetType(*vec, dm->vectype)); in DMCreateLocalVector_Section_Private()
|
| H A D | dm.c | 142 PetscCall(PetscFree((*newdm)->vectype)); in DMClone() 143 PetscCall(PetscStrallocpy(dm->vectype, (char **)&(*newdm)->vectype)); in DMClone() 236 tmp = (char *)dm->vectype; in DMSetVecType() 237 PetscCall(PetscStrallocpy(ctype, (char **)&dm->vectype)); in DMSetVecType() 261 *ctype = da->vectype; in DMGetVecType() 735 PetscCall(PetscFree((*dm)->vectype)); in DMDestroy() 899 …e", "Vector type used for created vectors", "DMSetVecType", VecList, dm->vectype, typeName, 256, &… in DMSetFromOptions() 4157 PetscCall(PetscFree((*M)->vectype)); in DMConvert() 4158 PetscCall(PetscStrallocpy(dm->vectype, (char **)&(*M)->vectype)); in DMConvert()
|
| /petsc/src/dm/impls/da/ |
| H A D | dadist.c | 17 PetscCall(VecSetType(*g, da->vectype)); in DMCreateGlobalVector_DA() 76 PetscCall(VecSetType(*g, da->vectype)); in DMDACreateNaturalVector()
|
| H A D | dalocal.c | 55 PetscCall(VecSetType(*g, da->vectype)); in DMCreateLocalVector_DA()
|
| H A D | da.c | 1125 PetscCall(DMSetVecType(da2, da->vectype)); in DMRefine_DA() 1272 PetscCall(DMSetVecType(dmc2, dmf->vectype)); in DMCoarsen_DA()
|
| /petsc/src/ksp/pc/impls/bjacobi/ |
| H A D | bjacobi.c | 742 VecType vectype; in PCSetUp_BJacobi_Singleblock() local 792 PetscCall(MatGetVecType(pmat, &vectype)); in PCSetUp_BJacobi_Singleblock() 793 PetscCall(VecSetType(bjac->x, vectype)); in PCSetUp_BJacobi_Singleblock() 794 PetscCall(VecSetType(bjac->y, vectype)); in PCSetUp_BJacobi_Singleblock() 1023 VecType vectype; in PCSetUp_BJacobi_Multiblock() local 1080 PetscCall(MatGetVecType(pmat, &vectype)); in PCSetUp_BJacobi_Multiblock() 1093 PetscCall(VecSetType(x, vectype)); in PCSetUp_BJacobi_Multiblock() 1094 PetscCall(VecSetType(y, vectype)); in PCSetUp_BJacobi_Multiblock() 1262 VecType vectype; in PCSetUp_BJacobi_Multiproc() local 1307 PetscCall(MatGetVecType(mpjac->submats, &vectype)); in PCSetUp_BJacobi_Multiproc() [all …]
|
| /petsc/src/dm/impls/stag/ |
| H A D | stagintern.c | 55 PetscCall(DMSetVecType(*newdm, dm->vectype)); in DMStagDuplicateWithoutSetup()
|
| H A D | stag.c | 359 PetscCall(VecSetType(*vec, dm->vectype)); in DMCreateGlobalVector_Stag() 374 PetscCall(VecSetType(*vec, dm->vectype)); in DMCreateLocalVector_Stag()
|
| /petsc/src/dm/impls/redundant/ |
| H A D | dmredundant.c | 65 PetscCall(VecSetType(*gvec, dm->vectype)); in DMCreateGlobalVector_Redundant() 82 PetscCall(VecSetType(*lvec, dm->vectype)); in DMCreateLocalVector_Redundant()
|
| /petsc/src/ksp/pc/impls/telescope/ |
| H A D | telescope.c | 138 VecType vectype; in PCTelescopeSetUp_default() local 149 …PetscCall(MatGetVecType(B, &vectype)); /* Use the vectype of the matrix used to construct the prec… in PCTelescopeSetUp_default() 157 PetscCall(VecSetType(xred, vectype)); in PCTelescopeSetUp_default() 168 PetscCall(VecSetType(xtmp, vectype)); in PCTelescopeSetUp_default()
|
| /petsc/src/ksp/ksp/tutorials/ |
| H A D | ex73.c | 284 VecType vectype; in PCTelescopeSetUp_dmda_scatters() local 290 PetscCall(VecGetType(x, &vectype)); in PCTelescopeSetUp_dmda_scatters() 302 PetscCall(VecSetType(xp, vectype)); in PCTelescopeSetUp_dmda_scatters() 322 PetscCall(VecSetType(xtmp, vectype)); in PCTelescopeSetUp_dmda_scatters()
|
| /petsc/src/dm/impls/plex/ |
| H A D | plexnatural.c | 513 PetscCall(VecSetType(*nv, dm->vectype)); in DMPlexCreateNaturalVector()
|
| /petsc/src/dm/impls/moab/ |
| H A D | dmmbmg.cxx | 488 PetscCall(DMSetVecType(dm2, dm->vectype)); in DMMoab_UMR_Private()
|
| /petsc/src/snes/utils/dm/ |
| H A D | dminterpolatesnes.c | 565 PetscCall(VecSetType(r, dm->vectype)); in DMInterpolate_Quad_Private() 784 PetscCall(VecSetType(r, dm->vectype)); in DMInterpolate_Hex_Private()
|
| /petsc/src/dm/impls/swarm/ |
| H A D | swarm.c | 324 PetscCall(PetscStrcmp(dm->vectype, VECKOKKOS, &iskokkos)); in DMSwarmCreateVectorFromField_Private() 325 PetscCall(PetscStrcmp(dm->vectype, VECCUDA, &iscuda)); in DMSwarmCreateVectorFromField_Private() 326 PetscCall(PetscStrcmp(dm->vectype, VECHIP, &iship)); in DMSwarmCreateVectorFromField_Private() 410 PetscCall(VecSetType(*vec, sw->vectype)); in DMSwarmCreateVectorFromFields_Private()
|
| /petsc/include/petsc/private/ |
| H A D | dmimpl.h | 242 …VecType vectype; /* type of vector created with DMCreateLocalVector() and DMCrea… member
|
| /petsc/src/dm/impls/composite/ |
| H A D | pack.c | 830 PetscCall(VecSetType(*gvec, dm->vectype)); in DMCreateGlobalVector_Composite() 848 PetscCall(VecSetType(*lvec, dm->vectype)); in DMCreateLocalVector_Composite()
|