Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / ztpsv.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 "XTPSV "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZTPSV "
50 #else
51 #define ERROR_NAME "CTPSV "
52 #endif
53
54 static int (*tpsv[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, void *) = {
55 #ifdef XDOUBLE
56   xtpsv_NUU, xtpsv_NUN, xtpsv_NLU, xtpsv_NLN,
57   xtpsv_TUU, xtpsv_TUN, xtpsv_TLU, xtpsv_TLN,
58   xtpsv_RUU, xtpsv_RUN, xtpsv_RLU, xtpsv_RLN,
59   xtpsv_CUU, xtpsv_CUN, xtpsv_CLU, xtpsv_CLN,
60 #elif defined(DOUBLE)
61   ztpsv_NUU, ztpsv_NUN, ztpsv_NLU, ztpsv_NLN,
62   ztpsv_TUU, ztpsv_TUN, ztpsv_TLU, ztpsv_TLN,
63   ztpsv_RUU, ztpsv_RUN, ztpsv_RLU, ztpsv_RLN,
64   ztpsv_CUU, ztpsv_CUN, ztpsv_CLU, ztpsv_CLN,
65 #else
66   ctpsv_NUU, ctpsv_NUN, ctpsv_NLU, ctpsv_NLN,
67   ctpsv_TUU, ctpsv_TUN, ctpsv_TLU, ctpsv_TLN,
68   ctpsv_RUU, ctpsv_RUN, ctpsv_RLU, ctpsv_RLN,
69   ctpsv_CUU, ctpsv_CUN, ctpsv_CLU, ctpsv_CLN,
70 #endif
71 };
72
73 #ifndef CBLAS
74
75 void NAME(char *UPLO, char *TRANS, char *DIAG,
76            blasint *N, FLOAT *a, FLOAT *x, blasint *INCX){
77
78   char uplo_arg  = *UPLO;
79   char trans_arg = *TRANS;
80   char diag_arg  = *DIAG;
81
82   blasint n    = *N;
83   blasint incx = *INCX;
84
85   blasint info;
86   int uplo;
87   int unit;
88   int trans;
89   FLOAT *buffer;
90
91   PRINT_DEBUG_NAME;
92
93   TOUPPER(uplo_arg);
94   TOUPPER(trans_arg);
95   TOUPPER(diag_arg);
96
97   trans = -1;
98   unit  = -1;
99   uplo  = -1;
100
101   if (trans_arg == 'N') trans = 0;
102   if (trans_arg == 'T') trans = 1;
103   if (trans_arg == 'R') trans = 2;
104   if (trans_arg == 'C') trans = 3;
105
106   if (diag_arg  == 'U') unit  = 0;
107   if (diag_arg  == 'N') unit  = 1;
108
109   if (uplo_arg  == 'U') uplo  = 0;
110   if (uplo_arg  == 'L') uplo  = 1;
111
112   info = 0;
113
114   if (incx == 0)          info =  7;
115   if (n < 0)              info =  4;
116   if (unit  < 0)          info =  3;
117   if (trans < 0)          info =  2;
118   if (uplo  < 0)          info =  1;
119
120   if (info != 0) {
121     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
122     return;
123   }
124
125 #else
126
127 void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
128            enum CBLAS_TRANSPOSE TransA, enum CBLAS_DIAG Diag,
129            blasint n, void  *va, void  *vx, blasint incx) {
130
131   FLOAT *a = (FLOAT*) va;
132   FLOAT *x = (FLOAT*) vx;
133   
134   int trans, uplo, unit;
135   blasint info;
136   FLOAT *buffer;
137
138   PRINT_DEBUG_CNAME;
139
140   unit  = -1;
141   uplo  = -1;
142   trans = -1;
143   info  =  0;
144
145   if (order == CblasColMajor) {
146     if (Uplo == CblasUpper)         uplo  = 0;
147     if (Uplo == CblasLower)         uplo  = 1;
148
149     if (TransA == CblasNoTrans)     trans = 0;
150     if (TransA == CblasTrans)       trans = 1;
151     if (TransA == CblasConjNoTrans) trans = 2;
152     if (TransA == CblasConjTrans)   trans = 3;
153
154     if (Diag == CblasUnit)          unit  = 0;
155     if (Diag == CblasNonUnit)       unit  = 1;
156
157     info = -1;
158
159     if (incx == 0)          info =  7;
160     if (n < 0)              info =  4;
161     if (unit  < 0)          info =  3;
162     if (trans < 0)          info =  2;
163     if (uplo  < 0)          info =  1;
164   }
165
166   if (order == CblasRowMajor) {
167     if (Uplo == CblasUpper)         uplo  = 1;
168     if (Uplo == CblasLower)         uplo  = 0;
169
170     if (TransA == CblasNoTrans)     trans = 1;
171     if (TransA == CblasTrans)       trans = 0;
172     if (TransA == CblasConjNoTrans) trans = 3;
173     if (TransA == CblasConjTrans)   trans = 2;
174
175     if (Diag == CblasUnit)          unit  = 0;
176     if (Diag == CblasNonUnit)       unit  = 1;
177
178     info = -1;
179
180     if (incx == 0)          info =  7;
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 * 2;
201
202   buffer = (FLOAT *)blas_memory_alloc(1);
203
204   (tpsv[(trans<<2) | (uplo<<1) | unit])(n, a, x, incx, buffer);
205
206   blas_memory_free(buffer);
207
208   FUNCTION_PROFILE_END(4, n * n / 2 + n, n * n);
209
210   IDEBUG_END;
211
212   return;
213 }