Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / zhpr2.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 "XHPR2 "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZHPR2 "
50 #else
51 #define ERROR_NAME "CHPR2 "
52 #endif
53
54 static int (*hpr2[])(BLASLONG, FLOAT, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, FLOAT *) = {
55 #ifdef XDOUBLE
56   xhpr2_U, xhpr2_L, xhpr2_V, xhpr2_M,
57 #elif defined(DOUBLE)
58   zhpr2_U, zhpr2_L, zhpr2_V, zhpr2_M,
59 #else
60   chpr2_U, chpr2_L, chpr2_V, chpr2_M,
61 #endif
62 };
63
64 #ifdef SMP
65 static int (*hpr2_thread[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, FLOAT *, int) = {
66 #ifdef XDOUBLE
67   xhpr2_thread_U, xhpr2_thread_L, xhpr2_thread_V, xhpr2_thread_M,
68 #elif defined(DOUBLE)
69   zhpr2_thread_U, zhpr2_thread_L, zhpr2_thread_V, zhpr2_thread_M,
70 #else
71   chpr2_thread_U, chpr2_thread_L, chpr2_thread_V, chpr2_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){
80
81   char uplo_arg = *UPLO;
82   blasint n             = *N;
83   FLOAT alpha_r = ALPHA[0];
84   FLOAT alpha_i = ALPHA[1];
85   blasint incx  = *INCX;
86   blasint incy  = *INCY;
87
88   blasint info;
89   int uplo;
90   FLOAT *buffer;
91 #ifdef SMP
92   int nthreads;
93 #endif
94
95   PRINT_DEBUG_NAME;
96
97   TOUPPER(uplo_arg);
98   uplo  = -1;
99
100   if (uplo_arg  == 'U') uplo  = 0;
101   if (uplo_arg  == 'L') uplo  = 1;
102
103   info = 0;
104
105   if (incy == 0)          info =  7;
106   if (incx == 0)          info =  5;
107   if (n < 0)              info =  2;
108   if (uplo  < 0)          info =  1;
109
110   if (info != 0) {
111     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
112     return;
113   }
114
115 #else
116
117 void CNAME(enum CBLAS_ORDER order,
118            enum CBLAS_UPLO Uplo,
119            blasint n,
120            void *VALPHA,
121            void  *vx, blasint incx,
122            void  *vy, blasint incy,
123            void  *va) {
124
125   FLOAT* ALPHA = (FLOAT*) VALPHA;
126   FLOAT* x = (FLOAT*) vx;
127   FLOAT* y = (FLOAT*) vy;
128   FLOAT* a = (FLOAT*) va;
129
130   FLOAT alpha_r = ALPHA[0];
131   FLOAT alpha_i = ALPHA[1];
132   FLOAT *buffer;
133   int uplo;
134   blasint info;
135 #ifdef SMP
136   int nthreads;
137 #endif
138
139   PRINT_DEBUG_CNAME;
140
141   uplo = -1;
142   info =  0;
143
144   if (order == CblasColMajor) {
145     if (Uplo == CblasUpper)         uplo  = 0;
146     if (Uplo == CblasLower)         uplo  = 1;
147
148     info = -1;
149
150     if (incy == 0)          info =  7;
151     if (incx == 0)          info =  5;
152     if (n < 0)              info =  2;
153     if (uplo  < 0)          info =  1;
154   }
155
156   if (order == CblasRowMajor) {
157     if (Uplo == CblasUpper)         uplo  = 3;
158     if (Uplo == CblasLower)         uplo  = 2;
159
160     info = -1;
161
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
180   IDEBUG_START;
181
182   FUNCTION_PROFILE_START();
183
184   if (incx < 0 ) x -= (n - 1) * incx * 2;
185   if (incy < 0 ) y -= (n - 1) * incy * 2;
186
187   buffer = (FLOAT *)blas_memory_alloc(1);
188
189 #ifdef SMP
190   nthreads = num_cpu_avail(2);
191
192   if (nthreads == 1) {
193 #endif
194
195     (hpr2[uplo])(n, alpha_r, alpha_i, x, incx, y, incy, a, buffer);
196
197 #ifdef SMP
198   } else {
199
200     (hpr2_thread[uplo])(n, ALPHA, x, incx, y, incy, a, buffer, nthreads);
201
202   }
203 #endif
204
205   blas_memory_free(buffer);
206
207   FUNCTION_PROFILE_END(4, n * n / 2 + 2 * n, 2 * n * n);
208
209   IDEBUG_END;
210
211   return;
212 }