Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / ztbsv.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 "XTBSV "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZTBSV "
50 #else
51 #define ERROR_NAME "CTBSV "
52 #endif
53
54 static int (*tbsv[])(BLASLONG, BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, void *) = {
55 #ifdef XDOUBLE
56   xtbsv_NUU, xtbsv_NUN, xtbsv_NLU, xtbsv_NLN,
57   xtbsv_TUU, xtbsv_TUN, xtbsv_TLU, xtbsv_TLN,
58   xtbsv_RUU, xtbsv_RUN, xtbsv_RLU, xtbsv_RLN,
59   xtbsv_CUU, xtbsv_CUN, xtbsv_CLU, xtbsv_CLN,
60 #elif defined(DOUBLE)
61   ztbsv_NUU, ztbsv_NUN, ztbsv_NLU, ztbsv_NLN,
62   ztbsv_TUU, ztbsv_TUN, ztbsv_TLU, ztbsv_TLN,
63   ztbsv_RUU, ztbsv_RUN, ztbsv_RLU, ztbsv_RLN,
64   ztbsv_CUU, ztbsv_CUN, ztbsv_CLU, ztbsv_CLN,
65 #else
66   ctbsv_NUU, ctbsv_NUN, ctbsv_NLU, ctbsv_NLN,
67   ctbsv_TUU, ctbsv_TUN, ctbsv_TLU, ctbsv_TLN,
68   ctbsv_RUU, ctbsv_RUN, ctbsv_RLU, ctbsv_RLN,
69   ctbsv_CUU, ctbsv_CUN, ctbsv_CLU, ctbsv_CLN,
70 #endif
71 };
72
73 #ifndef CBLAS
74
75 void NAME(char *UPLO, char *TRANS, char *DIAG,
76          blasint *N, blasint *K,
77          FLOAT *a, blasint *LDA, FLOAT *x, blasint *INCX){
78
79   char uplo_arg  = *UPLO;
80   char trans_arg = *TRANS;
81   char diag_arg  = *DIAG;
82
83   blasint n    = *N;
84   blasint k    = *K;
85   blasint lda  = *LDA;
86   blasint incx = *INCX;
87
88   blasint info;
89   int uplo;
90   int unit;
91   int trans;
92   FLOAT *buffer;
93
94   PRINT_DEBUG_NAME;
95
96   TOUPPER(uplo_arg);
97   TOUPPER(trans_arg);
98   TOUPPER(diag_arg);
99
100   trans = -1;
101   unit  = -1;
102   uplo  = -1;
103
104   if (trans_arg == 'N') trans = 0;
105   if (trans_arg == 'T') trans = 1;
106   if (trans_arg == 'R') trans = 2;
107   if (trans_arg == 'C') trans = 3;
108
109   if (diag_arg  == 'U') unit  = 0;
110   if (diag_arg  == 'N') unit  = 1;
111
112   if (uplo_arg  == 'U') uplo  = 0;
113   if (uplo_arg  == 'L') uplo  = 1;
114
115   info = 0;
116
117   if (incx == 0)          info =  9;
118   if (lda < k + 1)        info =  7;
119   if (k < 0)              info =  5;
120   if (n < 0)              info =  4;
121   if (unit  < 0)          info =  3;
122   if (trans < 0)          info =  2;
123   if (uplo  < 0)          info =  1;
124
125   if (info != 0) {
126     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
127     return;
128   }
129
130 #else
131
132 void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
133            enum CBLAS_TRANSPOSE TransA, enum CBLAS_DIAG Diag,
134            blasint n, blasint k, void  *va, blasint lda, void  *vx, blasint incx) {
135
136   FLOAT *a = (FLOAT*) va;
137   FLOAT *x = (FLOAT*) vx;
138   
139   int trans, uplo, unit;
140   blasint info;
141   FLOAT *buffer;
142
143   PRINT_DEBUG_CNAME;
144
145   unit  = -1;
146   uplo  = -1;
147   trans = -1;
148   info  =  0;
149
150   if (order == CblasColMajor) {
151     if (Uplo == CblasUpper)         uplo  = 0;
152     if (Uplo == CblasLower)         uplo  = 1;
153
154     if (TransA == CblasNoTrans)     trans = 0;
155     if (TransA == CblasTrans)       trans = 1;
156     if (TransA == CblasConjNoTrans) trans = 2;
157     if (TransA == CblasConjTrans)   trans = 3;
158
159     if (Diag == CblasUnit)          unit  = 0;
160     if (Diag == CblasNonUnit)       unit  = 1;
161
162     info = -1;
163
164     if (incx == 0)          info =  9;
165     if (lda < k + 1)        info =  7;
166     if (k < 0)              info =  5;
167     if (n < 0)              info =  4;
168     if (unit  < 0)          info =  3;
169     if (trans < 0)          info =  2;
170     if (uplo  < 0)          info =  1;
171   }
172
173   if (order == CblasRowMajor) {
174     if (Uplo == CblasUpper)         uplo  = 1;
175     if (Uplo == CblasLower)         uplo  = 0;
176
177     if (TransA == CblasNoTrans)     trans = 1;
178     if (TransA == CblasTrans)       trans = 0;
179     if (TransA == CblasConjNoTrans) trans = 3;
180     if (TransA == CblasConjTrans)   trans = 2;
181
182     if (Diag == CblasUnit)          unit  = 0;
183     if (Diag == CblasNonUnit)       unit  = 1;
184
185     info = -1;
186
187     if (incx == 0)          info =  9;
188     if (lda < k + 1)        info =  7;
189     if (k < 0)              info =  5;
190     if (n < 0)              info =  4;
191     if (unit  < 0)          info =  3;
192     if (trans < 0)          info =  2;
193     if (uplo  < 0)          info =  1;
194   }
195
196   if (info >= 0) {
197     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
198     return;
199   }
200
201 #endif
202
203   if (n == 0) return;
204
205   IDEBUG_START;
206
207   FUNCTION_PROFILE_START();
208
209   if (incx < 0 ) x -= (n - 1) * incx * 2;
210
211   buffer = (FLOAT *)blas_memory_alloc(1);
212
213   (tbsv[(trans<<2) | (uplo<<1) | unit])(n, k, a, lda, x, incx, buffer);
214
215   blas_memory_free(buffer);
216
217   FUNCTION_PROFILE_END(4, n * k / 2 + n, n * k);
218
219   IDEBUG_END;
220
221   return;
222 }