Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / zher2.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 "XHER2 "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZHER2 "
50 #else
51 #define ERROR_NAME "CHER2 "
52 #endif
53
54 static int (*her2[])(BLASLONG, FLOAT, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *) = {
55 #ifdef XDOUBLE
56   xher2_U, xher2_L, xher2_V, xher2_M,
57 #elif defined(DOUBLE)
58   zher2_U, zher2_L, zher2_V, zher2_M,
59 #else
60   cher2_U, cher2_L, cher2_V, cher2_M,
61 #endif
62 };
63
64 #ifdef SMP
65 static int (*her2_thread[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, int) = {
66 #ifdef XDOUBLE
67   xher2_thread_U, xher2_thread_L, xher2_thread_V, xher2_thread_M,
68 #elif defined(DOUBLE)
69   zher2_thread_U, zher2_thread_L, zher2_thread_V, zher2_thread_M,
70 #else
71   cher2_thread_U, cher2_thread_L, cher2_thread_V, cher2_thread_M,
72 #endif
73 };
74 #endif
75
76 #ifndef CBLAS
77
78 void NAME(char *UPLO, blasint *N, FLOAT  *ALPHA,
79          FLOAT  *x, blasint *INCX, FLOAT *y, blasint *INCY, FLOAT *a, blasint *LDA){
80
81   char uplo_arg = *UPLO;
82   blasint n             = *N;
83   FLOAT alpha_r = ALPHA[0];
84   FLOAT alpha_i = ALPHA[1];
85   blasint lda   = *LDA;
86   blasint incx  = *INCX;
87   blasint incy  = *INCY;
88
89   blasint info;
90   int  uplo;
91   FLOAT *buffer;
92 #ifdef SMP
93   int nthreads;
94 #endif
95
96   PRINT_DEBUG_NAME;
97
98   TOUPPER(uplo_arg);
99   uplo  = -1;
100
101   if (uplo_arg  == 'U') uplo  = 0;
102   if (uplo_arg  == 'L') uplo  = 1;
103
104   info = 0;
105
106   if (lda  < MAX(1, n))   info =  9;
107   if (incy == 0)          info =  7;
108   if (incx == 0)          info =  5;
109   if (n < 0)              info =  2;
110   if (uplo  < 0)          info =  1;
111
112   if (info != 0) {
113     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
114     return;
115   }
116
117 #else
118
119 void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, blasint n, void *VALPHA, void *vx, blasint incx, void *vy, blasint incy, void *va, blasint lda) {
120
121   FLOAT* ALPHA = (FLOAT*) VALPHA;
122   FLOAT* a = (FLOAT*) va;
123   FLOAT* x = (FLOAT*) vx;
124   FLOAT* y = (FLOAT*) vy;
125
126   FLOAT alpha_r = ALPHA[0];
127   FLOAT alpha_i = ALPHA[1];
128   FLOAT *buffer;
129   int uplo;
130   blasint info;
131 #ifdef SMP
132   int nthreads;
133 #endif
134
135   PRINT_DEBUG_CNAME;
136
137   uplo  = -1;
138   info  =  0;
139
140   if (order == CblasColMajor) {
141
142     if (Uplo == CblasUpper) uplo  = 0;
143     if (Uplo == CblasLower) uplo  = 1;
144
145     info = -1;
146
147     if (lda  < MAX(1, n))   info =  9;
148     if (incy == 0)          info =  7;
149     if (incx == 0)          info =  5;
150     if (n < 0)              info =  2;
151     if (uplo  < 0)          info =  1;
152   }
153
154   if (order == CblasRowMajor) {
155
156     if (Uplo == CblasUpper) uplo  = 3;
157     if (Uplo == CblasLower) uplo  = 2;
158
159     info = -1;
160
161     if (lda  < MAX(1, n))   info =  9;
162     if (incx == 0)          info =  7;
163     if (incy == 0)          info =  5;
164     if (n < 0)              info =  2;
165     if (uplo  < 0)          info =  1;
166   }
167
168   if (info >= 0) {
169     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
170     return;
171   }
172
173 #endif
174
175   if (n == 0) return;
176
177   if ((alpha_r == ZERO) && (alpha_i == ZERO)) return;
178
179   IDEBUG_START;
180
181   FUNCTION_PROFILE_START();
182
183   if (incx < 0 ) x -= (n - 1) * incx * 2;
184   if (incy < 0 ) y -= (n - 1) * incy * 2;
185
186   buffer = (FLOAT *)blas_memory_alloc(1);
187
188 #ifdef SMP
189   nthreads = num_cpu_avail(2);
190
191   if (nthreads == 1) {
192 #endif
193
194     (her2[uplo])(n, alpha_r, alpha_i, x, incx, y, incy, a, lda, buffer);
195
196 #ifdef SMP
197   } else {
198
199     (her2_thread[uplo])(n, ALPHA, x, incx, y, incy, a, lda, buffer, nthreads);
200
201   }
202 #endif
203
204   blas_memory_free(buffer);
205
206   FUNCTION_PROFILE_END(4, n * n / 2 + 2 * n, 2 * n * n);
207
208   IDEBUG_END;
209
210   return;
211 }