Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / zsyr.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 "XSYR  "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZSYR  "
50 #else
51 #define ERROR_NAME "CSYR  "
52 #endif
53
54 static int (*syr[])(BLASLONG, FLOAT, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *) = {
55 #ifdef XDOUBLE
56   xsyr_U, xsyr_L,
57 #elif defined(DOUBLE)
58   zsyr_U, zsyr_L,
59 #else
60   csyr_U, csyr_L,
61 #endif
62 };
63
64 #ifdef SMP
65 static int (*syr_thread[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, int) = {
66 #ifdef XDOUBLE
67   xsyr_thread_U, xsyr_thread_L,
68 #elif defined(DOUBLE)
69   zsyr_thread_U, zsyr_thread_L,
70 #else
71   csyr_thread_U, csyr_thread_L,
72 #endif
73 };
74 #endif
75
76
77 #ifndef CBLAS
78
79 void NAME(char *UPLO, blasint *N, FLOAT  *ALPHA,
80          FLOAT  *x, blasint *INCX, FLOAT *a, blasint *LDA){
81
82   char uplo_arg = *UPLO;
83   blasint n             = *N;
84   FLOAT alpha_r = ALPHA[0];
85   FLOAT alpha_i = ALPHA[1];
86   blasint lda   = *LDA;
87   blasint incx  = *INCX;
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 =  7;
107   if (incx == 0)          info =  5;
108   if (n < 0)              info =  2;
109   if (uplo  < 0)          info =  1;
110
111   if (info != 0) {
112     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
113     return;
114   }
115
116
117 #else
118
119 void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, int n, FLOAT alpha, FLOAT *x, int incx, FLOAT *a, int lda) {
120
121   FLOAT *buffer;
122   int trans, uplo;
123   blasint info;
124   FLOAT * ALPHA = &alpha;
125   FLOAT alpha_r = ALPHA[0];
126   FLOAT alpha_i = ALPHA[1];
127 #ifdef SMP
128   int nthreads;
129 #endif
130
131   PRINT_DEBUG_CNAME;
132
133   trans = -1;
134   uplo  = -1;
135   info  =  0;
136
137   if (order == CblasColMajor) {
138
139     if (Uplo == CblasUpper) uplo  = 0;
140     if (Uplo == CblasLower) uplo  = 1;
141
142     info = -1;
143
144     if (lda  < MAX(1, n))   info =  7;
145     if (incx == 0)          info =  5;
146     if (n < 0)              info =  2;
147     if (uplo  < 0)          info =  1;
148
149   }
150
151   if (order == CblasRowMajor) {
152
153     if (Uplo == CblasUpper) uplo  = 1;
154     if (Uplo == CblasLower) uplo  = 0;
155
156     info = -1;
157
158     if (lda  < MAX(1, n))   info =  7;
159     if (incx == 0)          info =  5;
160     if (n < 0)              info =  2;
161     if (uplo  < 0)          info =  1;
162   }
163
164   if (info >= 0) {
165     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
166     return;
167   }
168
169 #endif
170
171   if (n == 0) return;
172
173   if ((alpha_r == ZERO) && (alpha_i == ZERO)) return;
174
175   IDEBUG_START;
176
177   FUNCTION_PROFILE_START();
178
179   if (incx < 0 ) x -= (n - 1) * incx * 2;
180
181   buffer = (FLOAT *)blas_memory_alloc(1);
182
183 #ifdef SMP
184   nthreads = num_cpu_avail(2);
185
186   if (nthreads == 1) {
187 #endif
188
189   (syr[uplo])(n, alpha_r, alpha_i, x, incx, a, lda, buffer);
190
191 #ifdef SMP
192   } else {
193
194     (syr_thread[uplo])(n, ALPHA, x, incx, a, lda, buffer, nthreads);
195
196   }
197 #endif
198
199   blas_memory_free(buffer);
200
201   FUNCTION_PROFILE_END(4, n * n / 2 + n, n * n);
202
203   IDEBUG_END;
204
205   return;
206 }