Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / zher.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 "XHER  "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZHER  "
50 #else
51 #define ERROR_NAME "CHER  "
52 #endif
53
54 static int (*her[])(BLASLONG, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *) = {
55 #ifdef XDOUBLE
56   xher_U, xher_L, xher_V, xher_M,
57 #elif defined(DOUBLE)
58   zher_U, zher_L, zher_V, zher_M,
59 #else
60   cher_U, cher_L, cher_V, cher_M,
61 #endif
62 };
63
64 #ifdef SMP
65 static int (*her_thread[])(BLASLONG, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, int) = {
66 #ifdef XDOUBLE
67   xher_thread_U, xher_thread_L, xher_thread_V, xher_thread_M,
68 #elif defined(DOUBLE)
69   zher_thread_U, zher_thread_L, zher_thread_V, zher_thread_M,
70 #else
71   cher_thread_U, cher_thread_L, cher_thread_V, cher_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 *a, blasint *LDA){
80
81   char uplo_arg = *UPLO;
82   blasint n             = *N;
83   FLOAT alpha   = *ALPHA;
84   blasint lda   = *LDA;
85   blasint incx  = *INCX;
86
87   blasint info;
88   int uplo;
89   FLOAT *buffer;
90 #ifdef SMP
91   int nthreads;
92 #endif
93
94   PRINT_DEBUG_NAME;
95
96   TOUPPER(uplo_arg);
97   uplo  = -1;
98
99   if (uplo_arg  == 'U') uplo  = 0;
100   if (uplo_arg  == 'L') uplo  = 1;
101
102   info = 0;
103
104   if (lda  < MAX(1, n))   info =  7;
105   if (incx == 0)          info =  5;
106   if (n < 0)              info =  2;
107   if (uplo  < 0)          info =  1;
108
109   if (info != 0) {
110     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
111     return;
112   }
113
114 #else
115
116 void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, blasint n, FLOAT alpha, void *vx, blasint incx, void *va, blasint lda) {
117
118   FLOAT* a = (FLOAT*) va;
119   FLOAT* x = (FLOAT*) vx;
120
121   FLOAT *buffer;
122   int uplo;
123   blasint info;
124 #ifdef SMP
125   int nthreads;
126 #endif
127
128   PRINT_DEBUG_CNAME;
129
130   uplo  = -1;
131   info  =  0;
132
133   if (order == CblasColMajor) {
134
135     if (Uplo == CblasUpper) uplo  = 0;
136     if (Uplo == CblasLower) uplo  = 1;
137
138     info = -1;
139
140     if (lda  < MAX(1, n))   info =  7;
141     if (incx == 0)          info =  5;
142     if (n < 0)              info =  2;
143     if (uplo  < 0)          info =  1;
144
145   }
146
147   if (order == CblasRowMajor) {
148
149     if (Uplo == CblasUpper) uplo  = 3;
150     if (Uplo == CblasLower) uplo  = 2;
151
152     info = -1;
153
154     if (lda  < MAX(1, n))   info =  7;
155     if (incx == 0)          info =  5;
156     if (n < 0)              info =  2;
157     if (uplo  < 0)          info =  1;
158   }
159
160   if (info >= 0) {
161     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
162     return;
163   }
164
165 #endif
166
167   if (n == 0) return;
168
169   if (alpha == ZERO) return;
170
171   IDEBUG_START;
172
173   FUNCTION_PROFILE_START();
174
175   if (incx < 0 ) x -= (n - 1) * incx * 2;
176
177   buffer = (FLOAT *)blas_memory_alloc(1);
178
179 #ifdef SMP
180   nthreads = num_cpu_avail(2);
181
182   if (nthreads == 1) {
183 #endif
184
185   (her[uplo])(n, alpha, x, incx, a, lda, buffer);
186
187 #ifdef SMP
188   } else {
189
190     (her_thread[uplo])(n, alpha, x, incx, a, lda, buffer, nthreads);
191
192   }
193 #endif
194
195   blas_memory_free(buffer);
196
197   FUNCTION_PROFILE_END(4, n * n / 2 + n, n * n);
198
199   IDEBUG_END;
200
201   return;
202 }