Actual source code: ex4.c
petsc-3.7.3 2016-08-01
2: static char help[] = "Tests various 2-dimensional DMDA routines.\n\n";
4: #include <petscdm.h>
5: #include <petscdmda.h>
9: int main(int argc,char **argv)
10: {
11: PetscMPIInt rank;
12: PetscErrorCode ierr;
13: PetscInt M = 10,N = 8,m = PETSC_DECIDE;
14: PetscInt s =2,w=2,n = PETSC_DECIDE,nloc,l,i,j,kk;
15: PetscInt Xs,Xm,Ys,Ym,iloc,*iglobal;
16: const PetscInt *ltog;
17: PetscInt *lx = NULL,*ly = NULL;
18: PetscBool testorder = PETSC_FALSE,flg;
19: DMBoundaryType bx = DM_BOUNDARY_NONE,by= DM_BOUNDARY_NONE;
20: DM da;
21: PetscViewer viewer;
22: Vec local,global;
23: PetscScalar value;
24: DMDAStencilType st = DMDA_STENCIL_BOX;
25: AO ao;
27: PetscInitialize(&argc,&argv,(char*)0,help);
28: PetscViewerDrawOpen(PETSC_COMM_WORLD,0,"",300,0,400,400,&viewer);
30: /* Readoptions */
31: PetscOptionsGetInt(NULL,NULL,"-NX",&M,NULL);
32: PetscOptionsGetInt(NULL,NULL,"-NY",&N,NULL);
33: PetscOptionsGetInt(NULL,NULL,"-m",&m,NULL);
34: PetscOptionsGetInt(NULL,NULL,"-n",&n,NULL);
35: PetscOptionsGetInt(NULL,NULL,"-s",&s,NULL);
36: PetscOptionsGetInt(NULL,NULL,"-w",&w,NULL);
38: flg = PETSC_FALSE;
39: PetscOptionsGetBool(NULL,NULL,"-xperiodic",&flg,NULL); if (flg) bx = DM_BOUNDARY_PERIODIC;
40: flg = PETSC_FALSE;
41: PetscOptionsGetBool(NULL,NULL,"-yperiodic",&flg,NULL); if (flg) by = DM_BOUNDARY_PERIODIC;
42: flg = PETSC_FALSE;
43: PetscOptionsGetBool(NULL,NULL,"-xghosted",&flg,NULL); if (flg) bx = DM_BOUNDARY_GHOSTED;
44: flg = PETSC_FALSE;
45: PetscOptionsGetBool(NULL,NULL,"-yghosted",&flg,NULL); if (flg) by = DM_BOUNDARY_GHOSTED;
46: flg = PETSC_FALSE;
47: PetscOptionsGetBool(NULL,NULL,"-star",&flg,NULL); if (flg) st = DMDA_STENCIL_STAR;
48: flg = PETSC_FALSE;
49: PetscOptionsGetBool(NULL,NULL,"-box",&flg,NULL); if (flg) st = DMDA_STENCIL_BOX;
50: flg = PETSC_FALSE;
51: PetscOptionsGetBool(NULL,NULL,"-testorder",&testorder,NULL);
52: /*
53: Test putting two nodes in x and y on each processor, exact last processor
54: in x and y gets the rest.
55: */
56: flg = PETSC_FALSE;
57: PetscOptionsGetBool(NULL,NULL,"-distribute",&flg,NULL);
58: if (flg) {
59: if (m == PETSC_DECIDE) SETERRQ(PETSC_COMM_WORLD,1,"Must set -m option with -distribute option");
60: PetscMalloc1(m,&lx);
61: for (i=0; i<m-1; i++) { lx[i] = 4;}
62: lx[m-1] = M - 4*(m-1);
63: if (n == PETSC_DECIDE) SETERRQ(PETSC_COMM_WORLD,1,"Must set -n option with -distribute option");
64: PetscMalloc1(n,&ly);
65: for (i=0; i<n-1; i++) { ly[i] = 2;}
66: ly[n-1] = N - 2*(n-1);
67: }
70: /* Create distributed array and get vectors */
71: DMDACreate2d(PETSC_COMM_WORLD,bx,by,st,M,N,m,n,w,s,lx,ly,&da);
72: PetscFree(lx);
73: PetscFree(ly);
75: DMView(da,viewer);
76: DMCreateGlobalVector(da,&global);
77: DMCreateLocalVector(da,&local);
79: /* Set global vector; send ghost points to local vectors */
80: value = 1;
81: VecSet(global,value);
82: DMGlobalToLocalBegin(da,global,INSERT_VALUES,local);
83: DMGlobalToLocalEnd(da,global,INSERT_VALUES,local);
85: /* Scale local vectors according to processor rank; pass to global vector */
86: MPI_Comm_rank(PETSC_COMM_WORLD,&rank);
87: value = rank;
88: VecScale(local,value);
89: DMLocalToGlobalBegin(da,local,INSERT_VALUES,global);
90: DMLocalToGlobalEnd(da,local,INSERT_VALUES,global);
92: if (!testorder) { /* turn off printing when testing ordering mappings */
93: PetscPrintf(PETSC_COMM_WORLD,"\nGlobal Vectors:\n");
94: VecView(global,PETSC_VIEWER_STDOUT_WORLD);
95: PetscPrintf(PETSC_COMM_WORLD,"\n\n");
96: }
98: /* Send ghost points to local vectors */
99: DMGlobalToLocalBegin(da,global,INSERT_VALUES,local);
100: DMGlobalToLocalEnd(da,global,INSERT_VALUES,local);
102: flg = PETSC_FALSE;
103: PetscOptionsGetBool(NULL,NULL,"-local_print",&flg,NULL);
104: if (flg) {
105: PetscViewer sviewer;
107: PetscViewerASCIIPushSynchronized(PETSC_VIEWER_STDOUT_WORLD);
108: PetscSynchronizedPrintf(PETSC_COMM_WORLD,"\nLocal Vector: processor %d\n",rank);
109: PetscViewerGetSubViewer(PETSC_VIEWER_STDOUT_WORLD,PETSC_COMM_SELF,&sviewer);
110: VecView(local,sviewer);
111: PetscViewerRestoreSubViewer(PETSC_VIEWER_STDOUT_WORLD,PETSC_COMM_SELF,&sviewer);
112: PetscViewerFlush(PETSC_VIEWER_STDOUT_WORLD);
113: PetscViewerASCIIPopSynchronized(PETSC_VIEWER_STDOUT_WORLD);
114: }
116: /* Tests mappings betweeen application/PETSc orderings */
117: if (testorder) {
118: ISLocalToGlobalMapping ltogm;
120: DMGetLocalToGlobalMapping(da,<ogm);
121: ISLocalToGlobalMappingGetSize(ltogm,&nloc);
122: ISLocalToGlobalMappingGetIndices(ltogm,<og);
123: DMDAGetGhostCorners(da,&Xs,&Ys,NULL,&Xm,&Ym,NULL);
124: DMDAGetAO(da,&ao);
125: PetscMalloc1(nloc,&iglobal);
127: /* Set iglobal to be global indices for each processor's local and ghost nodes,
128: using the DMDA ordering of grid points */
129: kk = 0;
130: for (j=Ys; j<Ys+Ym; j++) {
131: for (i=Xs; i<Xs+Xm; i++) {
132: iloc = w*((j-Ys)*Xm + i-Xs);
133: for (l=0; l<w; l++) {
134: iglobal[kk++] = ltog[iloc+l];
135: }
136: }
137: }
139: /* Map this to the application ordering (which for DMDAs is just the natural ordering
140: that would be used for 1 processor, numbering most rapidly by x, then y) */
141: AOPetscToApplication(ao,nloc,iglobal);
143: /* Then map the application ordering back to the PETSc DMDA ordering */
144: AOApplicationToPetsc(ao,nloc,iglobal);
146: /* Verify the mappings */
147: kk=0;
148: for (j=Ys; j<Ys+Ym; j++) {
149: for (i=Xs; i<Xs+Xm; i++) {
150: iloc = w*((j-Ys)*Xm + i-Xs);
151: for (l=0; l<w; l++) {
152: if (iglobal[kk] != ltog[iloc+l]) {
153: PetscFPrintf(PETSC_COMM_SELF,stdout,"[%d] Problem with mapping: j=%D, i=%D, l=%D, petsc1=%D, petsc2=%D\n",
154: rank,j,i,l,ltog[iloc+l],iglobal[kk]);
155: }
156: kk++;
157: }
158: }
159: }
160: PetscFree(iglobal);
161: ISLocalToGlobalMappingRestoreIndices(ltogm,<og);
162: }
164: /* Free memory */
165: PetscViewerDestroy(&viewer);
166: VecDestroy(&local);
167: VecDestroy(&global);
168: DMDestroy(&da);
170: PetscFinalize();
171: return 0;
172: }