Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / syr.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 "QSYR  "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "DSYR  "
50 #else
51 #define ERROR_NAME "SSYR  "
52 #endif
53
54 static int (*syr[])(BLASLONG, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *) = {
55 #ifdef XDOUBLE
56   qsyr_U, qsyr_L,
57 #elif defined(DOUBLE)
58   dsyr_U, dsyr_L,
59 #else
60   ssyr_U, ssyr_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   qsyr_thread_U, qsyr_thread_L,
68 #elif defined(DOUBLE)
69   dsyr_thread_U, dsyr_thread_L,
70 #else
71   ssyr_thread_U, ssyr_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, 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, FLOAT *x, blasint incx, FLOAT *a, blasint lda) {
117
118   FLOAT *buffer;
119   int uplo;
120   blasint info;
121 #ifdef SMP
122   int nthreads;
123 #endif
124
125   PRINT_DEBUG_CNAME;
126
127   uplo  = -1;
128   info  =  0;
129
130   if (order == CblasColMajor) {
131
132     if (Uplo == CblasUpper) uplo  = 0;
133     if (Uplo == CblasLower) uplo  = 1;
134
135     info = -1;
136
137     if (lda  < MAX(1, n))   info =  7;
138     if (incx == 0)          info =  5;
139     if (n < 0)              info =  2;
140     if (uplo  < 0)          info =  1;
141
142   }
143
144   if (order == CblasRowMajor) {
145
146     if (Uplo == CblasUpper) uplo  = 1;
147     if (Uplo == CblasLower) uplo  = 0;
148
149     info = -1;
150
151     if (lda  < MAX(1, n))   info =  7;
152     if (incx == 0)          info =  5;
153     if (n < 0)              info =  2;
154     if (uplo  < 0)          info =  1;
155   }
156
157   if (info >= 0) {
158     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
159     return;
160   }
161
162 #endif
163
164   if (n == 0) return;
165
166   if (alpha == ZERO) return;
167
168   IDEBUG_START;
169
170   FUNCTION_PROFILE_START();
171
172   if (incx < 0 ) x -= (n - 1) * incx;
173
174   buffer = (FLOAT *)blas_memory_alloc(1);
175
176 #ifdef SMP
177   nthreads = num_cpu_avail(2);
178
179   if (nthreads == 1) {
180 #endif
181
182   (syr[uplo])(n, alpha, x, incx, a, lda, buffer);
183
184 #ifdef SMP
185   } else {
186
187     (syr_thread[uplo])(n, alpha, x, incx, a, lda, buffer, nthreads);
188
189   }
190 #endif
191
192   blas_memory_free(buffer);
193
194   FUNCTION_PROFILE_END(1, n * n / 2 + n, n * n);
195
196   IDEBUG_END;
197
198   return;
199 }