Blame thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/reference/sscalf.f
|
kusano |
2b45e8 |
subroutine sscalf(n,sa,sx,incx)
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
c scales a vector by a constant.
|
|
kusano |
2b45e8 |
c uses unrolled loops for increment equal to 1.
|
|
kusano |
2b45e8 |
c jack dongarra, linpack, 3/11/78.
|
|
kusano |
2b45e8 |
c modified 3/93 to return if incx .le. 0.
|
|
kusano |
2b45e8 |
c modified 12/3/93, array(1) declarations changed to array(*)
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
real sa,sx(*)
|
|
kusano |
2b45e8 |
integer i,incx,m,mp1,n,nincx
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
if( n.le.0 .or. incx.le.0 )return
|
|
kusano |
2b45e8 |
if(incx.eq.1)go to 20
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
c code for increment not equal to 1
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
nincx = n*incx
|
|
kusano |
2b45e8 |
do 10 i = 1,nincx,incx
|
|
kusano |
2b45e8 |
sx(i) = sa*sx(i)
|
|
kusano |
2b45e8 |
10 continue
|
|
kusano |
2b45e8 |
return
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
c code for increment equal to 1
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
c clean-up loop
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
20 m = mod(n,5)
|
|
kusano |
2b45e8 |
if( m .eq. 0 ) go to 40
|
|
kusano |
2b45e8 |
do 30 i = 1,m
|
|
kusano |
2b45e8 |
sx(i) = sa*sx(i)
|
|
kusano |
2b45e8 |
30 continue
|
|
kusano |
2b45e8 |
if( n .lt. 5 ) return
|
|
kusano |
2b45e8 |
40 mp1 = m + 1
|
|
kusano |
2b45e8 |
do 50 i = mp1,n,5
|
|
kusano |
2b45e8 |
sx(i) = sa*sx(i)
|
|
kusano |
2b45e8 |
sx(i + 1) = sa*sx(i + 1)
|
|
kusano |
2b45e8 |
sx(i + 2) = sa*sx(i + 2)
|
|
kusano |
2b45e8 |
sx(i + 3) = sa*sx(i + 3)
|
|
kusano |
2b45e8 |
sx(i + 4) = sa*sx(i + 4)
|
|
kusano |
2b45e8 |
50 continue
|
|
kusano |
2b45e8 |
return
|
|
kusano |
2b45e8 |
end
|