c\BeginDoc c c\Name: pscnorm2 c c Message Passing Layer: MPI c c\Description: c c\Usage: c call pscnorm2 ( COMM, N, X, INC ) c c\Arguments c COMM MPI Communicator for the processor grid. (INPUT) c c\SCCS Information: c FILE: norm2.F SID: 1.2 DATE OF SID: 3/6/96 c c----------------------------------------------------------------------- c Real function pscnorm2 ( comm, n, x, inc ) c include 'mpif.h' c c %---------------% c | MPI Variables | c %---------------% c integer comm, ierr c c %------------------% c | Scalar Arguments | c %------------------% c integer n, inc c c %-----------------% c | Array Arguments | c %-----------------% c Complex & x(n) c c %---------------% c | Local Scalars | c %---------------% c Real & max(1), buf, zero parameter ( zero = 0.0 ) c c %---------------------% c | Intrinsic Functions | c %---------------------% c intrinsic abs, sqrt c c %--------------------% c | External Functions | c %--------------------% c Real & scnrm2 External scnrm2 Real buf2(1) c c %-----------------------% c | Executable Statements | c %-----------------------% c pscnorm2 = scnrm2( n, x, inc) c buf = pscnorm2 call MPI_ALLREDUCE( [buf], max, 1, MPI_REAL, & MPI_MAX, comm, ierr ) if ( max(1) .eq. zero ) then pscnorm2 = zero else buf = (pscnorm2/max(1))**2.0 call MPI_ALLREDUCE( [buf], buf2, 1, MPI_REAL, & MPI_SUM, comm, ierr ) pscnorm2 = max(1) * sqrt(abs(buf2(1))) endif c c %-----------------% c | End of pscnorm2 | c %-----------------% c return end