BLAS / sscal.f

Fortran project BLAS, source module sscal.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.


      subroutine sscal(n,sa,sx,incx)
#
#     scales a vector by a constant.
#     uses unrolled loops for increment equal to 1.
#     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 sa,sx(*)
      integer i,incx,m,mp1,n,nincx
#
      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
        sx(i) = sa*sx(i)
   10 continue
      return
#
#        code for increment equal to 1
#
#
#        clean-up loop
#
   20 m = mod(n,5)
      if( m == 0 ) go to 40
      do 30 i = 1,m
        sx(i) = sa*sx(i)
   30 continue
      if( n < 5 ) return
   40 mp1 = m + 1
      do 50 i = mp1,n,5
        sx(i) = sa*sx(i)
        sx(i + 1) = sa*sx(i + 1)
        sx(i + 2) = sa*sx(i + 2)
        sx(i + 3) = sa*sx(i + 3)
        sx(i + 4) = sa*sx(i + 4)
   50 continue
      return
      end