Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / spr.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 "QSPR  "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "DSPR  "
50 #else
51 #define ERROR_NAME "SSPR  "
52 #endif
53
54 static int (*spr[])(BLASLONG, FLOAT, FLOAT *, BLASLONG, FLOAT *, FLOAT *) = {
55 #ifdef XDOUBLE
56   qspr_U, qspr_L,
57 #elif defined(DOUBLE)
58   dspr_U, dspr_L,
59 #else
60   sspr_U, sspr_L,
61 #endif
62 };
63
64 #ifdef SMP
65 static int (*spr_thread[])(BLASLONG, FLOAT, FLOAT *, BLASLONG, FLOAT *, FLOAT *, int) = {
66 #ifdef XDOUBLE
67   qspr_thread_U, qspr_thread_L,
68 #elif defined(DOUBLE)
69   dspr_thread_U, dspr_thread_L,
70 #else
71   sspr_thread_U, sspr_thread_L,
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            FLOAT  *x, blasint incx,
119            FLOAT  *a) {
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     if (Uplo == CblasUpper)         uplo  = 0;
135     if (Uplo == CblasLower)         uplo  = 1;
136
137     info = -1;
138
139     if (incx == 0)          info =  5;
140     if (n < 0)              info =  2;
141     if (uplo  < 0)          info =  1;
142   }
143
144   if (order == CblasRowMajor) {
145     if (Uplo == CblasUpper)         uplo  = 1;
146     if (Uplo == CblasLower)         uplo  = 0;
147
148     info = -1;
149
150     if (incx == 0)          info =  5;
151     if (n < 0)              info =  2;
152     if (uplo  < 0)          info =  1;
153   }
154
155   if (info >= 0) {
156     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
157     return;
158   }
159
160 #endif
161
162   if (n == 0) return;
163
164   if (alpha == ZERO) return;
165
166   IDEBUG_START;
167
168   FUNCTION_PROFILE_START();
169
170   if (incx < 0 ) x -= (n - 1) * incx;
171
172   buffer = (FLOAT *)blas_memory_alloc(1);
173
174 #ifdef SMP
175   nthreads = num_cpu_avail(2);
176
177   if (nthreads == 1) {
178 #endif
179
180   (spr[uplo])(n, alpha, x, incx, a, buffer);
181
182 #ifdef SMP
183   } else {
184
185     (spr_thread[uplo])(n, alpha, x, incx, a, buffer, nthreads);
186
187   }
188 #endif
189
190   blas_memory_free(buffer);
191
192   FUNCTION_PROFILE_END(1, n * n / 2 + n, n * n);
193
194   IDEBUG_END;
195
196   return;
197 }