BLAS / sasum.f

Fortran project BLAS, source module sasum.f.

Source module last modified on Thu, 2 Jul 1998, 23:17;
HTML image of Fortran source automatically generated by for2html on Sun, 23 Jun 2002, 15:10.


      real function sasum(n,sx,incx)
#
#     takes the sum of the absolute values.
#     uses unrolled loops for increment equal to one.
#     jack dongarra, linpack, 3/11/78.
#     modified 3/93 to return if incx .le. 0.
#     modified 12/3/93, array(1) declarations changed to array(*)
#
      real sx(*),stemp
      integer i,incx,m,mp1,n,nincx
#
      sasum = 0.0e0
      stemp = 0.0e0
      if( n<=0 || incx<=0 )return
      if(incx==1)go to 20
#
#        code for increment not equal to 1
#
      nincx = n*incx
      do 10 i = 1,nincx,incx
        stemp = stemp + abs(sx(i))
   10 continue
      sasum = stemp
      return
#
#        code for increment equal to 1
#
#
#        clean-up loop
#
   20 m = mod(n,6)
      if( m == 0 ) go to 40
      do 30 i = 1,m
        stemp = stemp + abs(sx(i))
   30 continue
      if( n < 6 ) go to 60
   40 mp1 = m + 1
      do 50 i = mp1,n,6
        stemp = stemp + abs(sx(i)) + abs(sx(i + 1)) + abs(sx(i + 2))
     *  + abs(sx(i + 3)) + abs(sx(i + 4)) + abs(sx(i + 5))
   50 continue
   60 sasum = stemp
      return
      end