Merge pull request #1762 from martin-frbg/issue1710-2
[platform/upstream/openblas.git] / interface / trsv.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 "QTRSV "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "DTRSV "
50 #else
51 #define ERROR_NAME "STRSV "
52 #endif
53
54 static int (*trsv[])(BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, void *) = {
55 #ifdef XDOUBLE
56   qtrsv_NUU, qtrsv_NUN, qtrsv_NLU, qtrsv_NLN,
57   qtrsv_TUU, qtrsv_TUN, qtrsv_TLU, qtrsv_TLN,
58 #elif defined(DOUBLE)
59   dtrsv_NUU, dtrsv_NUN, dtrsv_NLU, dtrsv_NLN,
60   dtrsv_TUU, dtrsv_TUN, dtrsv_TLU, dtrsv_TLN,
61 #else
62   strsv_NUU, strsv_NUN, strsv_NLU, strsv_NLN,
63   strsv_TUU, strsv_TUN, strsv_TLU, strsv_TLN,
64 #endif
65 };
66
67 #ifndef CBLAS
68
69 void NAME(char *UPLO, char *TRANS, char *DIAG,
70            blasint *N, FLOAT *a, blasint *LDA, 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 lda  = *LDA;
78   blasint incx = *INCX;
79
80   blasint info;
81   int uplo;
82   int unit;
83   int trans;
84   FLOAT *buffer;
85
86   PRINT_DEBUG_NAME;
87
88   TOUPPER(uplo_arg);
89   TOUPPER(trans_arg);
90   TOUPPER(diag_arg);
91
92   trans = -1;
93   unit  = -1;
94   uplo  = -1;
95
96   if (trans_arg == 'N') trans = 0;
97   if (trans_arg == 'T') trans = 1;
98   if (trans_arg == 'R') trans = 0;
99   if (trans_arg == 'C') trans = 1;
100
101   if (diag_arg  == 'U') unit  = 0;
102   if (diag_arg  == 'N') unit  = 1;
103
104   if (uplo_arg  == 'U') uplo  = 0;
105   if (uplo_arg  == 'L') uplo  = 1;
106
107   info = 0;
108
109   if (incx == 0)          info =  8;
110   if (lda  < MAX(1, n))   info =  6;
111   if (n < 0)              info =  4;
112   if (unit  < 0)          info =  3;
113   if (trans < 0)          info =  2;
114   if (uplo  < 0)          info =  1;
115
116   if (info != 0) {
117     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
118     return;
119   }
120
121 #else
122
123 void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
124            enum CBLAS_TRANSPOSE TransA, enum CBLAS_DIAG Diag,
125            blasint n, FLOAT  *a, blasint lda, FLOAT  *x, blasint incx) {
126
127   int trans, uplo, unit;
128   blasint info;
129   FLOAT *buffer;
130
131   PRINT_DEBUG_CNAME;
132
133   unit  = -1;
134   uplo  = -1;
135   trans = -1;
136   info  =  0;
137
138   if (order == CblasColMajor) {
139     if (Uplo == CblasUpper)         uplo  = 0;
140     if (Uplo == CblasLower)         uplo  = 1;
141
142     if (TransA == CblasNoTrans)     trans = 0;
143     if (TransA == CblasTrans)       trans = 1;
144     if (TransA == CblasConjNoTrans) trans = 0;
145     if (TransA == CblasConjTrans)   trans = 1;
146
147     if (Diag == CblasUnit)          unit  = 0;
148     if (Diag == CblasNonUnit)       unit  = 1;
149
150     info = -1;
151
152     if (incx == 0)          info =  8;
153     if (lda  < MAX(1, n))   info =  6;
154     if (n < 0)              info =  4;
155     if (unit  < 0)          info =  3;
156     if (trans < 0)          info =  2;
157     if (uplo  < 0)          info =  1;
158   }
159
160   if (order == CblasRowMajor) {
161     if (Uplo == CblasUpper)         uplo  = 1;
162     if (Uplo == CblasLower)         uplo  = 0;
163
164     if (TransA == CblasNoTrans)     trans = 1;
165     if (TransA == CblasTrans)       trans = 0;
166     if (TransA == CblasConjNoTrans) trans = 1;
167     if (TransA == CblasConjTrans)   trans = 0;
168
169     if (Diag == CblasUnit)          unit  = 0;
170     if (Diag == CblasNonUnit)       unit  = 1;
171
172     info = -1;
173
174     if (incx == 0)          info =  8;
175     if (lda  < MAX(1, n))   info =  6;
176     if (n < 0)              info =  4;
177     if (unit  < 0)          info =  3;
178     if (trans < 0)          info =  2;
179     if (uplo  < 0)          info =  1;
180   }
181
182   if (info >= 0) {
183     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
184     return;
185   }
186
187 #endif
188
189   if (n == 0) return;
190
191   IDEBUG_START;
192
193   FUNCTION_PROFILE_START();
194
195   if (incx < 0 ) x -= (n - 1) * incx;
196
197   buffer = (FLOAT *)blas_memory_alloc(1);
198
199   (trsv[(trans<<2) | (uplo<<1) | unit])(n, a, lda, x, incx, buffer);
200
201   blas_memory_free(buffer);
202
203   FUNCTION_PROFILE_END(1, n * n / 2 + n,  n * n);
204
205   IDEBUG_END;
206
207   return;
208 }