Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / tbsv.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 "QTBSV "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "DTBSV "
50 #else
51 #define ERROR_NAME "STBSV "
52 #endif
53
54 static int (*tbsv[])(BLASLONG, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, void *) = {
55 #ifdef XDOUBLE
56   qtbsv_NUU, qtbsv_NUN, qtbsv_NLU, qtbsv_NLN,
57   qtbsv_TUU, qtbsv_TUN, qtbsv_TLU, qtbsv_TLN,
58 #elif defined(DOUBLE)
59   dtbsv_NUU, dtbsv_NUN, dtbsv_NLU, dtbsv_NLN,
60   dtbsv_TUU, dtbsv_TUN, dtbsv_TLU, dtbsv_TLN,
61 #else
62   stbsv_NUU, stbsv_NUN, stbsv_NLU, stbsv_NLN,
63   stbsv_TUU, stbsv_TUN, stbsv_TLU, stbsv_TLN,
64 #endif
65 };
66
67 #ifndef CBLAS
68
69 void NAME(char *UPLO, char *TRANS, char *DIAG,
70          blasint *N, blasint *K,
71          FLOAT *a, blasint *LDA, FLOAT *x, blasint *INCX){
72
73   char uplo_arg  = *UPLO;
74   char trans_arg = *TRANS;
75   char diag_arg  = *DIAG;
76
77   blasint n    = *N;
78   blasint k    = *K;
79   blasint lda  = *LDA;
80   blasint incx = *INCX;
81
82   blasint info;
83   int uplo;
84   int unit;
85   int trans;
86   FLOAT *buffer;
87
88   PRINT_DEBUG_NAME;
89
90   TOUPPER(uplo_arg);
91   TOUPPER(trans_arg);
92   TOUPPER(diag_arg);
93
94   trans = -1;
95   unit  = -1;
96   uplo  = -1;
97
98   if (trans_arg == 'N') trans = 0;
99   if (trans_arg == 'T') trans = 1;
100   if (trans_arg == 'R') trans = 0;
101   if (trans_arg == 'C') trans = 1;
102
103   if (diag_arg  == 'U') unit  = 0;
104   if (diag_arg  == 'N') unit  = 1;
105
106   if (uplo_arg  == 'U') uplo  = 0;
107   if (uplo_arg  == 'L') uplo  = 1;
108
109   info = 0;
110
111   if (incx == 0)          info =  9;
112   if (lda < k + 1)        info =  7;
113   if (k < 0)              info =  5;
114   if (n < 0)              info =  4;
115   if (unit  < 0)          info =  3;
116   if (trans < 0)          info =  2;
117   if (uplo  < 0)          info =  1;
118
119   if (info != 0) {
120     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
121     return;
122   }
123
124 #else
125
126 void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
127            enum CBLAS_TRANSPOSE TransA, enum CBLAS_DIAG Diag,
128            blasint n, blasint k, FLOAT  *a, blasint lda, FLOAT  *x, blasint incx) {
129
130   int trans, uplo, unit;
131   blasint info;
132   FLOAT *buffer;
133
134   PRINT_DEBUG_CNAME;
135
136   unit  = -1;
137   uplo  = -1;
138   trans = -1;
139   info  =  0;
140
141   if (order == CblasColMajor) {
142     if (Uplo == CblasUpper)         uplo  = 0;
143     if (Uplo == CblasLower)         uplo  = 1;
144
145     if (TransA == CblasNoTrans)     trans = 0;
146     if (TransA == CblasTrans)       trans = 1;
147     if (TransA == CblasConjNoTrans) trans = 0;
148     if (TransA == CblasConjTrans)   trans = 1;
149
150     if (Diag == CblasUnit)          unit  = 0;
151     if (Diag == CblasNonUnit)       unit  = 1;
152
153     info = -1;
154
155     if (incx == 0)          info =  9;
156     if (lda < k + 1)        info =  7;
157     if (k < 0)              info =  5;
158     if (n < 0)              info =  4;
159     if (unit  < 0)          info =  3;
160     if (trans < 0)          info =  2;
161     if (uplo  < 0)          info =  1;
162   }
163
164   if (order == CblasRowMajor) {
165     if (Uplo == CblasUpper)         uplo  = 1;
166     if (Uplo == CblasLower)         uplo  = 0;
167
168     if (TransA == CblasNoTrans)     trans = 1;
169     if (TransA == CblasTrans)       trans = 0;
170     if (TransA == CblasConjNoTrans) trans = 1;
171     if (TransA == CblasConjTrans)   trans = 0;
172
173     if (Diag == CblasUnit)          unit  = 0;
174     if (Diag == CblasNonUnit)       unit  = 1;
175
176     info = -1;
177
178     if (incx == 0)          info =  9;
179     if (lda < k + 1)        info =  7;
180     if (k < 0)              info =  5;
181     if (n < 0)              info =  4;
182     if (unit  < 0)          info =  3;
183     if (trans < 0)          info =  2;
184     if (uplo  < 0)          info =  1;
185   }
186
187   if (info >= 0) {
188     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
189     return;
190   }
191
192 #endif
193
194   if (n == 0) return;
195
196   IDEBUG_START;
197
198   FUNCTION_PROFILE_START();
199
200   if (incx < 0 ) x -= (n - 1) * incx;
201
202   buffer = (FLOAT *)blas_memory_alloc(1);
203
204   (tbsv[(trans<<2) | (uplo<<1) | unit])(n, k, a, lda, x, incx, buffer);
205
206   blas_memory_free(buffer);
207
208   FUNCTION_PROFILE_END(1, n * k / 2 + n, n * k);
209
210   IDEBUG_END;
211
212   return;
213 }