Lines Matching refs:dm_read
105 DM dm_read, dm_read_output; in main()
115 PetscCall(DMPlexCreateFromFile(comm, filename, "ex101_dm_read", PETSC_TRUE, &dm_read)); in main()
116 PetscCall(DMSetFromOptions(dm_read)); in main()
117 PetscCall(DMViewFromOptions(dm_read, NULL, "-dm_view")); in main()
122 PetscCall(DMGetGlobalSection(dm_read, &unused_section)); in main()
124 PetscCall(CreateFEField(dm_read, PETSC_TRUE, num_comps)); in main()
127 PetscCall(DMGetOutputDM(dm_read, &dm_read_output)); in main()
128 PetscCall(DMGetLocalVector(dm_read, &V_read_project2local)); in main()
129 PetscCall(DMGetLocalVector(dm_read, &V_read_output2local)); in main()
153 PetscCall(DMRestoreLocalVector(dm_read, &V_read_project2local)); in main()
154 PetscCall(DMRestoreLocalVector(dm_read, &V_read_output2local)); in main()
155 PetscCall(DMDestroy(&dm_read)); in main()