Merge pull request #1762 from martin-frbg/issue1710-2
[platform/upstream/openblas.git] / interface / zhemv.c
1 /*********************************************************************/
2 /* Copyright 2009, 2010 The University of Texas at Austin.           */
3 /* All rights reserved.                                              */
4 /*                                                                   */
5 /* Redistribution and use in source and binary forms, with or        */
6 /* without modification, are permitted provided that the following   */
7 /* conditions are met:                                               */
8 /*                                                                   */
9 /*   1. Redistributions of source code must retain the above         */
10 /*      copyright notice, this list of conditions and the following  */
11 /*      disclaimer.                                                  */
12 /*                                                                   */
13 /*   2. Redistributions in binary form must reproduce the above      */
14 /*      copyright notice, this list of conditions and the following  */
15 /*      disclaimer in the documentation and/or other materials       */
16 /*      provided with the distribution.                              */
17 /*                                                                   */
18 /*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
19 /*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
20 /*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
21 /*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
22 /*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
23 /*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
24 /*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
25 /*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
26 /*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
27 /*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
28 /*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
29 /*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
30 /*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
31 /*    POSSIBILITY OF SUCH DAMAGE.                                    */
32 /*                                                                   */
33 /* The views and conclusions contained in the software and           */
34 /* documentation are those of the authors and should not be          */
35 /* interpreted as representing official policies, either expressed   */
36 /* or implied, of The University of Texas at Austin.                 */
37 /*********************************************************************/
38
39 #include <stdio.h>
40 #include <ctype.h>
41 #include "common.h"
42 #ifdef FUNCTION_PROFILE
43 #include "functable.h"
44 #endif
45
46 #ifdef XDOUBLE
47 #define ERROR_NAME "XHEMV "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZHEMV "
50 #else
51 #define ERROR_NAME "CHEMV "
52 #endif
53
54 #ifndef CBLAS
55
56 void NAME(char *UPLO, blasint *N, FLOAT  *ALPHA, FLOAT *a, blasint *LDA,
57             FLOAT  *x, blasint *INCX, FLOAT *BETA, FLOAT *y, blasint *INCY){
58
59   char uplo_arg = *UPLO;
60   blasint n             = *N;
61   FLOAT alpha_r = ALPHA[0];
62   FLOAT alpha_i = ALPHA[1];
63   blasint lda   = *LDA;
64   blasint incx  = *INCX;
65   FLOAT beta_r  = BETA[0];
66   FLOAT beta_i  = BETA[1];
67   blasint incy  = *INCY;
68 #ifdef SMP
69   int nthreads;
70 #endif
71
72   int (*hemv[])(BLASLONG, BLASLONG, FLOAT, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *) = {
73     HEMV_U, HEMV_L, HEMV_V, HEMV_M,
74   };
75
76 #ifdef SMP
77   int (*hemv_thread[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, int) = {
78     HEMV_THREAD_U, HEMV_THREAD_L, HEMV_THREAD_V, HEMV_THREAD_M,
79   };
80 #endif
81
82   blasint info;
83   int uplo;
84   FLOAT *buffer;
85
86   PRINT_DEBUG_NAME;
87
88   TOUPPER(uplo_arg);
89   uplo  = -1;
90
91   if (uplo_arg  == 'U') uplo  = 0;
92   if (uplo_arg  == 'L') uplo  = 1;
93   if (uplo_arg  == 'V') uplo  = 2;
94   if (uplo_arg  == 'M') uplo  = 3;
95
96   info = 0;
97
98   if (incy == 0)          info = 10;
99   if (incx == 0)          info =  7;
100   if (lda  < MAX(1, n))   info =  5;
101   if (n < 0)              info =  2;
102   if (uplo  < 0)          info =  1;
103
104   if (info != 0) {
105     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
106     return;
107   }
108
109 #else
110
111 void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, blasint n, void *VALPHA,
112            void *va, blasint lda, void *vx, blasint incx, void *VBETA, void *vy, blasint incy) {
113
114   FLOAT* ALPHA = (FLOAT*) VALPHA;
115   FLOAT* BETA = (FLOAT*) VBETA;
116   FLOAT* a = (FLOAT*) va;
117   FLOAT* x = (FLOAT*) vx;
118   FLOAT* y = (FLOAT*) vy;
119
120   FLOAT alpha_r = ALPHA[0];
121   FLOAT alpha_i = ALPHA[1];
122   FLOAT beta_r  = BETA[0];
123   FLOAT beta_i  = BETA[1];
124
125   FLOAT *buffer;
126   int uplo;
127   blasint info;
128 #ifdef SMP
129   int nthreads;
130 #endif
131
132   int (*hemv[])(BLASLONG, BLASLONG, FLOAT, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *) = {
133     HEMV_U, HEMV_L, HEMV_V, HEMV_M,
134   };
135
136 #ifdef SMP
137   int (*hemv_thread[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, int) = {
138     HEMV_THREAD_U, HEMV_THREAD_L, HEMV_THREAD_V, HEMV_THREAD_M,
139   };
140 #endif
141
142   PRINT_DEBUG_CNAME;
143
144   uplo  = -1;
145   info  =  0;
146
147   if (order == CblasColMajor) {
148
149     if (Uplo == CblasUpper) uplo  = 0;
150     if (Uplo == CblasLower) uplo  = 1;
151
152     info = -1;
153
154     if (incy == 0)          info = 10;
155     if (incx == 0)          info =  7;
156     if (lda  < MAX(1, n))   info =  5;
157     if (n < 0)              info =  2;
158     if (uplo  < 0)          info =  1;
159   }
160
161   if (order == CblasRowMajor) {
162
163     if (Uplo == CblasUpper) uplo  = 3;
164     if (Uplo == CblasLower) uplo  = 2;
165
166     info = -1;
167
168     if (incy == 0)          info = 10;
169     if (incx == 0)          info =  7;
170     if (lda  < MAX(1, n))   info =  5;
171     if (n < 0)              info =  2;
172     if (uplo  < 0)          info =  1;
173   }
174
175   if (info >= 0) {
176     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
177     return;
178   }
179
180 #endif
181
182   if (n == 0) return;
183
184   if ((beta_r != ONE) || (beta_i != ZERO)) SCAL_K(n, 0, 0, beta_r, beta_i, y, blasabs(incy), NULL, 0, NULL, 0);
185
186   if ((alpha_r == ZERO) && (alpha_i == ZERO)) return;
187
188   IDEBUG_START;
189
190   FUNCTION_PROFILE_START();
191
192   if (incx < 0 ) x -= (n - 1) * incx * 2;
193   if (incy < 0 ) y -= (n - 1) * incy * 2;
194
195   buffer = (FLOAT *)blas_memory_alloc(1);
196
197 #ifdef SMP
198   nthreads = num_cpu_avail(2);
199
200   if (nthreads == 1) {
201 #endif
202
203   (hemv[uplo])(n, n, alpha_r, alpha_i, a, lda, x, incx, y, incy, buffer);
204
205 #ifdef SMP
206   } else {
207
208     (hemv_thread[uplo])(n, ALPHA, a, lda, x, incx, y, incy, buffer, nthreads);
209
210   }
211 #endif
212
213   blas_memory_free(buffer);
214
215   FUNCTION_PROFILE_END(4, n * n / 2 + n, 2 * n * n);
216
217   IDEBUG_END;
218
219   return;
220 }