LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine scopy ( integer  N,
real, dimension(*)  SX,
integer  INCX,
real, dimension(*)  SY,
integer  INCY 
)

SCOPY

Purpose:
    SCOPY copies a vector, x, to a vector, y.
    uses unrolled loops for increments equal to 1.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011
Further Details:
     jack dongarra, linpack, 3/11/78.
     modified 12/3/93, array(1) declarations changed to array(*)

Definition at line 53 of file scopy.f.

53 *
54 * -- Reference BLAS level1 routine (version 3.4.0) --
55 * -- Reference BLAS is a software package provided by Univ. of Tennessee, --
56 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
57 * November 2011
58 *
59 * .. Scalar Arguments ..
60  INTEGER incx,incy,n
61 * ..
62 * .. Array Arguments ..
63  REAL sx(*),sy(*)
64 * ..
65 *
66 * =====================================================================
67 *
68 * .. Local Scalars ..
69  INTEGER i,ix,iy,m,mp1
70 * ..
71 * .. Intrinsic Functions ..
72  INTRINSIC mod
73 * ..
74  IF (n.LE.0) RETURN
75  IF (incx.EQ.1 .AND. incy.EQ.1) THEN
76 *
77 * code for both increments equal to 1
78 *
79 *
80 * clean-up loop
81 *
82  m = mod(n,7)
83  IF (m.NE.0) THEN
84  DO i = 1,m
85  sy(i) = sx(i)
86  END DO
87  IF (n.LT.7) RETURN
88  END IF
89  mp1 = m + 1
90  DO i = mp1,n,7
91  sy(i) = sx(i)
92  sy(i+1) = sx(i+1)
93  sy(i+2) = sx(i+2)
94  sy(i+3) = sx(i+3)
95  sy(i+4) = sx(i+4)
96  sy(i+5) = sx(i+5)
97  sy(i+6) = sx(i+6)
98  END DO
99  ELSE
100 *
101 * code for unequal increments or equal increments
102 * not equal to 1
103 *
104  ix = 1
105  iy = 1
106  IF (incx.LT.0) ix = (-n+1)*incx + 1
107  IF (incy.LT.0) iy = (-n+1)*incy + 1
108  DO i = 1,n
109  sy(iy) = sx(ix)
110  ix = ix + incx
111  iy = iy + incy
112  END DO
113  END IF
114  RETURN