! ! Program usage: mpiexec ex1f [-help] [all PETSc options] ! !/*T ! Concepts: vectors^basic routines ! Processors: n !T*/ ! ! ----------------------------------------------------------------------- program main implicit none ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Include files ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! ! The following include statements are required for Fortran programs ! that use PETSc vectors: ! petscsys.h - base PETSc routines ! petscvec.h - vectors ! Additional include statements may be needed if using additional ! PETSc routines in a Fortran program, e.g., ! petscviewer.h - viewers ! petscis.h - index sets ! #include #include ! ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Variable declarations ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! ! Variables: ! x, y, w - vectors ! z - array of vectors Vec x,y,w,z(5) PetscReal norm,v,v1,v2 PetscInt n,ithree PetscBool flg PetscErrorCode ierr PetscMPIInt rank PetscScalar one,two,three PetscScalar dots(3),dot character*(40) name ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Beginning of program ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - call PetscInitialize(PETSC_NULL_CHARACTER,ierr) one = 1.0 two = 2.0 three = 3.0 n = 20 ithree = 3 call PetscOptionsGetInt(PETSC_NULL_CHARACTER,'-n',n,flg,ierr) call MPI_Comm_rank(PETSC_COMM_WORLD,rank,ierr) ! Create a vector, specifying only its global dimension. ! When using VecCreate(), VecSetSizes() and VecSetFromOptions(), ! the vector format (currently parallel ! or sequential) is determined at runtime. Also, the parallel ! partitioning of the vector is determined by PETSc at runtime. ! ! Routines for creating particular vector types directly are: ! VecCreateSeq() - uniprocessor vector ! VecCreateMPI() - distributed vector, where the user can ! determine the parallel partitioning ! VecCreateShared() - parallel vector that uses shared memory ! (available only on the SGI); otherwise, ! is the same as VecCreateMPI() ! ! VecCreate(), VecSetSizes() and VecSetFromOptions() allows one ! to determine at runtime which version to use ! with the options -vec_type mpi or -vec_type shared ! call VecCreate(PETSC_COMM_WORLD,x,ierr) call VecSetSizes(x,PETSC_DECIDE,n,ierr) call VecSetFromOptions(x,ierr) call VecGetType(x,name,ierr) ! Duplicate some work vectors (of the same format and ! partitioning as the initial vector). call VecDuplicate(x,y,ierr) call VecDuplicate(x,w,ierr) ! Duplicate more work vectors (of the same format and ! partitioning as the initial vector). Here we duplicate ! an array of vectors, which is often more convenient than ! duplicating individual ones. call VecDuplicateVecs(x,ithree,z,ierr) ! Set the vectors to entries to a constant value. call VecSet(x,one,ierr) call VecSet(y,two,ierr) call VecSet(z(1),one,ierr) call VecSet(z(2),two,ierr) call VecSet(z(3),three,ierr) ! Demonstrate various basic vector routines. call VecDot(x,x,dot,ierr) call VecMDot(x,ithree,z,dots,ierr) ! Note: If using a complex numbers version of PETSc, then ! PETSC_USE_COMPLEX is defined in the makefiles; otherwise, ! (when using real numbers) it is undefined. if (rank .eq. 0) then #if defined(PETSC_USE_COMPLEX) write(6,100) int(PetscRealPart(dot)) write(6,110) int(PetscRealPart(dots(1))), & & int(PetscRealPart(dots(2))), & & int(PetscRealPart(dots(3))) #else write(6,100) int(dot) write(6,110) int(dots(1)),int(dots(2)),int(dots(3)) #endif write(6,120) endif 100 format ('Vector length ',i6) 110 format ('Vector length ',3(i6)) 120 format ('All other values should be near zero') call VecScale(x,two,ierr) call VecNorm(x,NORM_2,norm,ierr) v = norm-2.0*sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 if (rank .eq. 0) write(6,130) v 130 format ('VecScale ',1pe8.2) call VecCopy(x,w,ierr) call VecNorm(w,NORM_2,norm,ierr) v = norm-2.0*sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 if (rank .eq. 0) write(6,140) v 140 format ('VecCopy ',1pe8.2) call VecAXPY(y,three,x,ierr) call VecNorm(y,NORM_2,norm,ierr) v = norm-8.0*sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 if (rank .eq. 0) write(6,150) v 150 format ('VecAXPY ',1pe8.2) call VecAYPX(y,two,x,ierr) call VecNorm(y,NORM_2,norm,ierr) v = norm-18.0*sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 if (rank .eq. 0) write(6,160) v 160 format ('VecAYXP ',1pe8.2) call VecSwap(x,y,ierr) call VecNorm(y,NORM_2,norm,ierr) v = norm-2.0*sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 if (rank .eq. 0) write(6,170) v 170 format ('VecSwap ',1pe8.2) call VecNorm(x,NORM_2,norm,ierr) v = norm-18.0*sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 if (rank .eq. 0) write(6,180) v 180 format ('VecSwap ',1pe8.2) call VecWAXPY(w,two,x,y,ierr) call VecNorm(w,NORM_2,norm,ierr) v = norm-38.0*sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 if (rank .eq. 0) write(6,190) v 190 format ('VecWAXPY ',1pe8.2) call VecPointwiseMult(w,y,x,ierr) call VecNorm(w,NORM_2,norm,ierr) v = norm-36.0*sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 if (rank .eq. 0) write(6,200) v 200 format ('VecPointwiseMult ',1pe8.2) call VecPointwiseDivide(w,x,y,ierr) call VecNorm(w,NORM_2,norm,ierr) v = norm-9.0*sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 if (rank .eq. 0) write(6,210) v 210 format ('VecPointwiseDivide ',1pe8.2) dots(1) = one dots(2) = three dots(3) = two call VecSet(x,one,ierr) call VecMAXPY(x,ithree,dots,z,ierr) call VecNorm(z(1),NORM_2,norm,ierr) v = norm-sqrt(dble(n)) if (v .gt. -PETSC_SMALL .and. v .lt. PETSC_SMALL) v = 0.0 call VecNorm(z(2),NORM_2,norm,ierr) v1 = norm-2.0*sqrt(dble(n)) if (v1 .gt. -PETSC_SMALL .and. v1 .lt. PETSC_SMALL) v1 = 0.0 call VecNorm(z(3),NORM_2,norm,ierr) v2 = norm-3.0*sqrt(dble(n)) if (v2 .gt. -PETSC_SMALL .and. v2 .lt. PETSC_SMALL) v2 = 0.0 if (rank .eq. 0) write(6,220) v,v1,v2 220 format ('VecMAXPY ',3(1pe8.2)) ! Free work space. All PETSc objects should be destroyed when they ! are no longer needed. call VecDestroy(x,ierr) call VecDestroy(y,ierr) call VecDestroy(w,ierr) call VecDestroyVecs(ithree,z,ierr) call PetscFinalize(ierr) end