Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / zhpr.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 "XHPR  "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZHPR  "
50 #else
51 #define ERROR_NAME "CHPR  "
52 #endif
53
54 static int (*hpr[])(BLASLONG, FLOAT, FLOAT *, BLASLONG, FLOAT *, FLOAT *) = {
55 #ifdef XDOUBLE
56   xhpr_U, xhpr_L, xhpr_V, xhpr_M,
57 #elif defined(DOUBLE)
58   zhpr_U, zhpr_L, zhpr_V, zhpr_M,
59 #else
60   chpr_U, chpr_L, chpr_V, chpr_M,
61 #endif
62 };
63
64 #ifdef SMP
65 static int (*hpr_thread[])(BLASLONG, FLOAT, FLOAT *, BLASLONG, FLOAT *, FLOAT *, int) = {
66 #ifdef XDOUBLE
67   xhpr_thread_U, xhpr_thread_L, xhpr_thread_V, xhpr_thread_M,
68 #elif defined(DOUBLE)
69   zhpr_thread_U, zhpr_thread_L, zhpr_thread_V, zhpr_thread_M,
70 #else
71   chpr_thread_U, chpr_thread_L, chpr_thread_V, chpr_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){
80
81   char uplo_arg = *UPLO;
82   blasint n             = *N;
83   FLOAT alpha   = *ALPHA;
84   blasint incx  = *INCX;
85
86   blasint info;
87   int uplo;
88   FLOAT *buffer;
89 #ifdef SMP
90   int nthreads;
91 #endif
92
93   PRINT_DEBUG_NAME;
94
95   TOUPPER(uplo_arg);
96   uplo  = -1;
97
98   if (uplo_arg  == 'U') uplo  = 0;
99   if (uplo_arg  == 'L') uplo  = 1;
100
101   info = 0;
102
103   if (incx == 0)          info =  5;
104   if (n < 0)              info =  2;
105   if (uplo  < 0)          info =  1;
106
107   if (info != 0) {
108     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
109     return;
110   }
111
112 #else
113
114 void CNAME(enum CBLAS_ORDER order,
115            enum CBLAS_UPLO Uplo,
116            blasint n,
117            FLOAT alpha,
118            void  *vx, blasint incx,
119            void  *va) {
120
121   FLOAT* x = (FLOAT*) vx;
122   FLOAT* a = (FLOAT*) va;
123
124   FLOAT *buffer;
125   int uplo;
126   blasint info;
127 #ifdef SMP
128   int nthreads;
129 #endif
130
131   PRINT_DEBUG_CNAME;
132
133   uplo = -1;
134   info =  0;
135
136   if (order == CblasColMajor) {
137     if (Uplo == CblasUpper)         uplo  = 0;
138     if (Uplo == CblasLower)         uplo  = 1;
139
140     info = -1;
141
142     if (incx == 0)          info =  5;
143     if (n < 0)              info =  2;
144     if (uplo  < 0)          info =  1;
145   }
146
147   if (order == CblasRowMajor) {
148     if (Uplo == CblasUpper)         uplo  = 3;
149     if (Uplo == CblasLower)         uplo  = 2;
150
151     info = -1;
152
153     if (incx == 0)          info =  5;
154     if (n < 0)              info =  2;
155     if (uplo  < 0)          info =  1;
156   }
157
158   if (info >= 0) {
159     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
160     return;
161   }
162
163 #endif
164
165   if (n == 0) return;
166
167   if (alpha == ZERO) return;
168
169   IDEBUG_START;
170
171   FUNCTION_PROFILE_START();
172
173   if (incx < 0 ) x -= (n - 1) * incx * 2;
174
175   buffer = (FLOAT *)blas_memory_alloc(1);
176
177 #ifdef SMP
178   nthreads = num_cpu_avail(2);
179
180   if (nthreads == 1) {
181 #endif
182
183   (hpr[uplo])(n, alpha, x, incx, a, buffer);
184
185 #ifdef SMP
186
187   } else {
188
189     (hpr_thread[uplo])(n, alpha, x, incx, a, buffer, nthreads);
190
191   }
192 #endif
193
194   blas_memory_free(buffer);
195
196   FUNCTION_PROFILE_END(4, n * n / 2 + n, n * n);
197
198   IDEBUG_END;
199
200   return;
201 }