Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / zsyr2.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 "QSYR2 "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZSYR2 "
50 #else
51 #define ERROR_NAME "CSYR2 "
52 #endif
53
54 static int (*syr2[])(BLASLONG, FLOAT, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *) = {
55 #ifdef XDOUBLE
56   xsyr2_U, xsyr2_L,
57 #elif defined(DOUBLE)
58   zsyr2_U, zsyr2_L,
59 #else
60   csyr2_U, csyr2_L,
61 #endif
62 };
63
64 #ifdef SMP
65 static int (*syr2_thread[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, int) = {
66 #ifdef XDOUBLE
67   xsyr2_thread_U, xsyr2_thread_L,
68 #elif defined(DOUBLE)
69   zsyr2_thread_U, zsyr2_thread_L,
70 #else
71   csyr2_thread_U, csyr2_thread_L,
72 #endif
73 };
74 #endif
75
76 void NAME(char *UPLO, blasint *N, FLOAT  *ALPHA,
77          FLOAT  *x, blasint *INCX, FLOAT *y, blasint *INCY, FLOAT *a, blasint *LDA){
78
79   char uplo_arg = *UPLO;
80   blasint n             = *N;
81   FLOAT alpha_r = ALPHA[0];
82   FLOAT alpha_i = ALPHA[1];
83   blasint lda   = *LDA;
84   blasint incx  = *INCX;
85   blasint incy  = *INCY;
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 =  9;
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   if (n == 0) return;
116
117   if ((alpha_r == ZERO) && (alpha_i == ZERO)) return;
118
119   IDEBUG_START;
120
121   FUNCTION_PROFILE_START();
122
123   if (incx < 0 ) x -= (n - 1) * incx;
124   if (incy < 0 ) y -= (n - 1) * incy;
125
126   buffer = (FLOAT *)blas_memory_alloc(1);
127
128 #ifdef SMP
129   nthreads = num_cpu_avail(2);
130
131   if (nthreads == 1) {
132 #endif
133
134     (syr2[uplo])(n, alpha_r, alpha_i, x, incx, y, incy, a, lda, buffer);
135
136 #ifdef SMP
137   } else {
138
139     (syr2_thread[uplo])(n, ALPHA, x, incx, y, incy, a, lda, buffer, nthreads);
140
141   }
142 #endif
143
144   blas_memory_free(buffer);
145
146   FUNCTION_PROFILE_END(4, n * n / 2 + 2 * n, 2 * n * n);
147
148   IDEBUG_END;
149
150   return;
151 }