Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / tpsv.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 "QTPSV "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "DTPSV "
50 #else
51 #define ERROR_NAME "STPSV "
52 #endif
53
54 static int (*tpsv[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, void *) = {
55 #ifdef XDOUBLE
56   qtpsv_NUU, qtpsv_NUN, qtpsv_NLU, qtpsv_NLN,
57   qtpsv_TUU, qtpsv_TUN, qtpsv_TLU, qtpsv_TLN,
58 #elif defined(DOUBLE)
59   dtpsv_NUU, dtpsv_NUN, dtpsv_NLU, dtpsv_NLN,
60   dtpsv_TUU, dtpsv_TUN, dtpsv_TLU, dtpsv_TLN,
61 #else
62   stpsv_NUU, stpsv_NUN, stpsv_NLU, stpsv_NLN,
63   stpsv_TUU, stpsv_TUN, stpsv_TLU, stpsv_TLN,
64 #endif
65 };
66
67 #ifndef CBLAS
68
69 void NAME(char *UPLO, char *TRANS, char *DIAG,
70            blasint *N, FLOAT *a, FLOAT *x, blasint *INCX){
71
72   char uplo_arg  = *UPLO;
73   char trans_arg = *TRANS;
74   char diag_arg  = *DIAG;
75
76   blasint n    = *N;
77   blasint incx = *INCX;
78
79   blasint info;
80   int uplo;
81   int unit;
82   int trans;
83   FLOAT *buffer;
84
85   PRINT_DEBUG_NAME;
86
87   TOUPPER(uplo_arg);
88   TOUPPER(trans_arg);
89   TOUPPER(diag_arg);
90
91   trans = -1;
92   unit  = -1;
93   uplo  = -1;
94
95   if (trans_arg == 'N') trans = 0;
96   if (trans_arg == 'T') trans = 1;
97   if (trans_arg == 'R') trans = 0;
98   if (trans_arg == 'C') trans = 1;
99
100   if (diag_arg  == 'U') unit  = 0;
101   if (diag_arg  == 'N') unit  = 1;
102
103   if (uplo_arg  == 'U') uplo  = 0;
104   if (uplo_arg  == 'L') uplo  = 1;
105
106   info = 0;
107
108   if (incx == 0)          info =  7;
109   if (n < 0)              info =  4;
110   if (unit  < 0)          info =  3;
111   if (trans < 0)          info =  2;
112   if (uplo  < 0)          info =  1;
113
114   if (info != 0) {
115     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
116     return;
117   }
118
119 #else
120
121 void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
122            enum CBLAS_TRANSPOSE TransA, enum CBLAS_DIAG Diag,
123            blasint n, FLOAT  *a, FLOAT  *x, blasint incx) {
124
125   int trans, uplo, unit;
126   blasint info;
127   FLOAT *buffer;
128
129   PRINT_DEBUG_CNAME;
130
131   unit  = -1;
132   uplo  = -1;
133   trans = -1;
134   info  =  0;
135
136   if (order == CblasColMajor) {
137     if (Uplo == CblasUpper)         uplo  = 0;
138     if (Uplo == CblasLower)         uplo  = 1;
139
140     if (TransA == CblasNoTrans)     trans = 0;
141     if (TransA == CblasTrans)       trans = 1;
142     if (TransA == CblasConjNoTrans) trans = 0;
143     if (TransA == CblasConjTrans)   trans = 1;
144
145     if (Diag == CblasUnit)          unit  = 0;
146     if (Diag == CblasNonUnit)       unit  = 1;
147
148     info = -1;
149
150     if (incx == 0)          info =  7;
151     if (n < 0)              info =  4;
152     if (unit  < 0)          info =  3;
153     if (trans < 0)          info =  2;
154     if (uplo  < 0)          info =  1;
155   }
156
157   if (order == CblasRowMajor) {
158     if (Uplo == CblasUpper)         uplo  = 1;
159     if (Uplo == CblasLower)         uplo  = 0;
160
161     if (TransA == CblasNoTrans)     trans = 1;
162     if (TransA == CblasTrans)       trans = 0;
163     if (TransA == CblasConjNoTrans) trans = 1;
164     if (TransA == CblasConjTrans)   trans = 0;
165
166     if (Diag == CblasUnit)          unit  = 0;
167     if (Diag == CblasNonUnit)       unit  = 1;
168
169     info = -1;
170
171     if (incx == 0)          info =  7;
172     if (n < 0)              info =  4;
173     if (unit  < 0)          info =  3;
174     if (trans < 0)          info =  2;
175     if (uplo  < 0)          info =  1;
176   }
177
178   if (info >= 0) {
179     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
180     return;
181   }
182
183 #endif
184
185   if (n == 0) return;
186
187   IDEBUG_START;
188
189   FUNCTION_PROFILE_START();
190
191   if (incx < 0 ) x -= (n - 1) * incx;
192
193   buffer = (FLOAT *)blas_memory_alloc(1);
194
195   (tpsv[(trans<<2) | (uplo<<1) | unit])(n, a, x, incx, buffer);
196
197   blas_memory_free(buffer);
198
199   FUNCTION_PROFILE_END(1, n * n / 2 + n, n * n);
200
201   IDEBUG_END;
202
203   return;
204 }