~ubuntu-branches/ubuntu/vivid/atlas/vivid

« back to all changes in this revision

Viewing changes to interfaces/blas/F77/src/chpr2.f

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2002-04-13 10:07:52 UTC
  • Revision ID: james.westby@ubuntu.com-20020413100752-va9zm0rd4gpurdkq
Tags: upstream-3.2.1ln
ImportĀ upstreamĀ versionĀ 3.2.1ln

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
      SUBROUTINE CHPR2( UPLO, N, ALPHA, X, INCX, Y, INCY, A )
 
2
*
 
3
*  -- Automatically Tuned Linear Algebra Software (ATLAS)
 
4
*     (C) Copyright 2000 All Rights Reserved
 
5
*
 
6
*  -- ATLAS routine -- F77 Interface -- Version 3.2 -- December 15, 2000
 
7
*
 
8
*  -- Suggestions,  comments,  bugs reports should be sent to the follo-
 
9
*     wing e-mail address: atlas@cs.utk.edu
 
10
*
 
11
*  Author         : Antoine P. Petitet
 
12
*  University of Tennessee - Innovative Computing Laboratory
 
13
*  Knoxville TN, 37996-1301, USA.
 
14
*
 
15
*  ---------------------------------------------------------------------
 
16
*
 
17
*  -- Copyright notice and Licensing terms:
 
18
*
 
19
*  Redistribution  and  use in  source and binary forms, with or without
 
20
*  modification, are  permitted provided  that the following  conditions
 
21
*  are met:
 
22
*
 
23
*  1. Redistributions  of  source  code  must retain the above copyright
 
24
*     notice, this list of conditions and the following disclaimer.
 
25
*  2. Redistributions in binary form must reproduce  the above copyright
 
26
*     notice,  this list of conditions, and the  following disclaimer in
 
27
*     the documentation and/or other materials provided with the distri-
 
28
*     bution.
 
29
*  3. The name of the University,  the ATLAS group,  or the names of its
 
30
*     contributors  may not be used to endorse or promote products deri-
 
31
*     ved from this software without specific written permission.
 
32
*
 
33
*  -- Disclaimer:
 
34
*
 
35
*  THIS  SOFTWARE  IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
36
*  ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,  INCLUDING,  BUT NOT
 
37
*  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
38
*  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY
 
39
*  OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,  INDIRECT, INCIDENTAL, SPE-
 
40
*  CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
 
41
*  TO,  PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
 
42
*  OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEO-
 
43
*  RY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  (IN-
 
44
*  CLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
45
*  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
46
*
 
47
*  ---------------------------------------------------------------------
 
48
*
 
49
*     .. Scalar Arguments ..
 
50
      CHARACTER*1        UPLO
 
51
      INTEGER            INCX, INCY, N
 
52
      COMPLEX            ALPHA
 
53
*     ..
 
54
*     .. Array Arguments ..
 
55
      COMPLEX            A( * ), X( * ), Y( * )
 
56
*     ..
 
57
*
 
58
*  Purpose
 
59
*  =======
 
60
*
 
61
*  CHPR2 performs the Hermitian rank 2 operation
 
62
*
 
63
*     A := alpha*x*conjg( y' ) + conjg( alpha )*y*conjg( x' ) + A,
 
64
*
 
65
*  where  alpha is a scalar, x and y are n-element vectors and A is an n
 
66
*  by n Hermitian matrix, supplied in packed form.
 
67
*
 
68
*  Arguments
 
69
*  =========
 
70
*
 
71
*  UPLO    (input)                       CHARACTER*1
 
72
*          On entry, UPLO  specifies whether the upper or lower triangu-
 
73
*          lar part of the matrix A is supplied in the packed array A
 
74
*          as follows:
 
75
*
 
76
*              UPLO = 'U' or 'u'   The upper triangular part of A is
 
77
*                                  supplied in A.
 
78
*
 
79
*              UPLO = 'L' or 'l'   The lower triangular part of A is
 
80
*                                  supplied in A.
 
81
*
 
82
*          Unchanged on exit.
 
83
*
 
84
*  N       (input)                       INTEGER
 
85
*          On entry, N specifies the order of the matrix A. N must be at
 
86
*          least zero. Unchanged on exit.
 
87
*
 
88
*  ALPHA   (input)                       COMPLEX
 
89
*          On entry, ALPHA specifies the scalar alpha.   When  ALPHA  is
 
90
*          supplied as  zero then  the arrays X and Y need not be set on
 
91
*          input. Unchanged on exit.
 
92
*
 
93
*  X       (input)                       COMPLEX array
 
94
*          On entry,  X  is an incremented array of dimension  at  least
 
95
*          ( 1 + ( n - 1 ) * abs( INCX ) ).  Before entry, the incremen-
 
96
*          ted array X must contain the vector x. Unchanged on exit.
 
97
*
 
98
*  INCX    (input)                       INTEGER
 
99
*          On entry, INCX specifies the increment for the elements of X.
 
100
*          INCX must not be zero. Unchanged on exit.
 
101
*
 
102
*  Y       (input)                       COMPLEX array
 
103
*          On entry,  Y  is an incremented array of dimension  at  least
 
104
*          ( 1 + ( n - 1 ) * abs( INCY ) ).  Before entry, the incremen-
 
105
*          ted array Y must contain the vector y. Unchanged on exit.
 
106
*
 
107
*  INCY    (input)                       INTEGER
 
108
*          On entry, INCY specifies the increment for the elements of Y.
 
109
*          INCY must not be zero. Unchanged on exit.
 
110
*
 
111
*  A       (input/output)                COMPLEX array
 
112
*          On entry,  A  is an  array  of DIMENSION ( ( n*(n + 1) )/2 ).
 
113
*          Before  entry  with  UPLO = 'U' or 'u', the array A must con-
 
114
*          tain the upper triangular part of the Hermitian matrix packed
 
115
*          sequentially, column by column, so that A(1) contains a(1,1),
 
116
*          A( 2 ) and A( 3 ) contain a(1,2) and a(2,2) respectively, and
 
117
*          so on. On exit, the array  A is overwritten by the upper tri-
 
118
*          angular part of the updated matrix.
 
119
*          Before entry with UPLO = 'L' or 'l', the array A must contain
 
120
*          the lower triangular part of the Hermitian matrix  packed se-
 
121
*          quentially, column by column, so that A( 1 ) contains a(1,1),
 
122
*          A( 2 ) and A( 3 ) contain a(2,1) and a(3,1) respectively, and
 
123
*          so on. On exit, the array  A is overwritten by the lower tri-
 
124
*          angular part of the updated matrix.
 
125
*          Note that the imaginary parts of the  diagonal elements  need
 
126
*          not be set, they are assumed to be zero, and on exit they are
 
127
*          set to zero.
 
128
*
 
129
*  Further Details
 
130
*  ===============
 
131
*
 
132
*  For further information on the Level 1 BLAS specification, see:
 
133
*
 
134
*  ``A Proposal for Standard Linear Algebra Subprograms''  by R. Hanson,
 
135
*  F. Krogh and C. Lawson, ACM SIGNUM Newsl., 8(16), 1973,
 
136
*
 
137
*  ``Basic Linear Algebra Subprograms for Fortran Usage''  by C. Lawson,
 
138
*  R. Hanson, D. Kincaid and F. Krogh,  ACM Transactions on Mathematical
 
139
*  Software, 5(3) pp 308-323, 1979.
 
140
*
 
141
*  For further information on the Level 2 BLAS specification, see:
 
142
*
 
143
*  ``An  Extended Set of  FORTRAN  Basic Linear Algebra Subprograms'' by
 
144
*  J. Dongarra,  J. Du Croz,  S. Hammarling and R. Hanson,  ACM Transac-
 
145
*  tions on Mathematical Software, 14(1) pp 1-17, 1988.
 
146
*
 
147
*  ``Algorithm 656: An extended Set of Basic Linear Algebra Subprograms:
 
148
*  Model Implementation and Test Programs''  by J. Dongarra, J. Du Croz,
 
149
*  S. Hammarling and R. Hanson,  ACM  Transactions on Mathematical Soft-
 
150
*  ware, 14(1) pp 18-32, 1988.
 
151
*
 
152
*  For further information on the Level 3 BLAS specification, see:
 
153
*
 
154
*  ``A Set of Level 3 Basic Linear Algebra Subprograms'' by J. Dongarra,
 
155
*  J. Du Croz, I. Duff and S. Hammarling, ACM Transactions on Mathemati-
 
156
*  cal Software, 16(1), pp 1-17, 1990.
 
157
*
 
158
*  =====================================================================
 
159
*
 
160
*     .. Parameters ..
 
161
      INTEGER            ILOWER, IUPPER
 
162
      PARAMETER          ( IUPPER = 121, ILOWER = 122 )
 
163
*     ..
 
164
*     .. Local Scalars ..
 
165
      INTEGER            INFO, IUPLO
 
166
*     ..
 
167
*     .. External Subroutines ..
 
168
      EXTERNAL           ATL_F77WRAP_CHPR2, XERBLA
 
169
*     ..
 
170
*     .. External Functions ..
 
171
      EXTERNAL           LSAME
 
172
      LOGICAL            LSAME
 
173
*     ..
 
174
*     .. Executable Statements ..
 
175
*
 
176
      INFO = 0
 
177
*
 
178
      IF(      LSAME( UPLO  , 'U' ) ) THEN
 
179
         IUPLO = IUPPER
 
180
      ELSE IF( LSAME( UPLO  , 'L' ) ) THEN
 
181
         IUPLO = ILOWER
 
182
      ELSE IF( INFO.EQ.0 ) THEN
 
183
         INFO  = 1
 
184
      END IF
 
185
*
 
186
      IF( INFO.EQ.0 ) THEN
 
187
         IF( N.LT.0 ) THEN
 
188
            INFO = 2
 
189
         ELSE IF( INCX.EQ.0 ) THEN
 
190
            INFO = 5
 
191
         ELSE IF( INCY.EQ.0 ) THEN
 
192
            INFO = 7
 
193
         END IF
 
194
      END IF
 
195
*
 
196
      IF( INFO.NE.0 ) THEN
 
197
         CALL XERBLA( 'CHPR2 ', INFO )
 
198
         RETURN
 
199
      END IF
 
200
*
 
201
      CALL ATL_F77WRAP_CHPR2( IUPLO, N, ALPHA, X, INCX, Y, INCY, A )
 
202
*
 
203
      RETURN
 
204
*
 
205
*     End of CHPR2
 
206
*
 
207
      END