Merge pull request #1762 from martin-frbg/issue1710-2
[platform/upstream/openblas.git] / interface / spr2.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 "QSPR2 "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "DSPR2 "
50 #else
51 #define ERROR_NAME "SSPR2 "
52 #endif
53
54 static int (*spr2[])(BLASLONG, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, FLOAT *) = {
55 #ifdef XDOUBLE
56   qspr2_U, qspr2_L,
57 #elif defined(DOUBLE)
58   dspr2_U, dspr2_L,
59 #else
60   sspr2_U, sspr2_L,
61 #endif
62 };
63
64 #ifdef SMP
65 static int (*spr2_thread[])(BLASLONG, FLOAT, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, FLOAT *, int) = {
66 #ifdef XDOUBLE
67   qspr2_thread_U, qspr2_thread_L,
68 #elif defined(DOUBLE)
69   dspr2_thread_U, dspr2_thread_L,
70 #else
71   sspr2_thread_U, sspr2_thread_L,
72 #endif
73 };
74 #endif
75
76 #ifndef CBLAS
77
78 void NAME(char *UPLO, blasint *N, FLOAT  *ALPHA,
79          FLOAT  *x, blasint *INCX, FLOAT *y, blasint *INCY, FLOAT *a){
80
81   char uplo_arg = *UPLO;
82   blasint n             = *N;
83   FLOAT alpha   = *ALPHA;
84   blasint incx  = *INCX;
85   blasint incy  = *INCY;
86
87   blasint info;
88   int uplo;
89   FLOAT *buffer;
90 #ifdef SMP
91   int nthreads;
92 #endif
93
94   PRINT_DEBUG_NAME;
95
96   TOUPPER(uplo_arg);
97   uplo  = -1;
98
99   if (uplo_arg  == 'U') uplo  = 0;
100   if (uplo_arg  == 'L') uplo  = 1;
101
102   info = 0;
103
104   if (incy == 0)          info =  7;
105   if (incx == 0)          info =  5;
106   if (n < 0)              info =  2;
107   if (uplo  < 0)          info =  1;
108
109   if (info != 0) {
110     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
111     return;
112   }
113
114 #else
115
116 void CNAME(enum CBLAS_ORDER order,
117            enum CBLAS_UPLO Uplo,
118            blasint n,
119            FLOAT alpha,
120            FLOAT  *x, blasint incx,
121            FLOAT  *y, blasint incy,
122            FLOAT  *a) {
123
124   FLOAT *buffer;
125   int uplo;
126   blasint info;
127 #ifdef SMP
128   int nthreads;
129 #endif
130
131   PRINT_DEBUG_CNAME;
132
133   uplo = -1;
134   info =  0;
135
136   if (order == CblasColMajor) {
137     if (Uplo == CblasUpper)         uplo  = 0;
138     if (Uplo == CblasLower)         uplo  = 1;
139
140     info = -1;
141
142     if (incy == 0)          info =  7;
143     if (incx == 0)          info =  5;
144     if (n < 0)              info =  2;
145     if (uplo  < 0)          info =  1;
146   }
147
148   if (order == CblasRowMajor) {
149     if (Uplo == CblasUpper)         uplo  = 1;
150     if (Uplo == CblasLower)         uplo  = 0;
151
152     info = -1;
153
154     if (incy == 0)          info =  7;
155     if (incx == 0)          info =  5;
156     if (n < 0)              info =  2;
157     if (uplo  < 0)          info =  1;
158   }
159
160   if (info >= 0) {
161     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
162     return;
163   }
164
165 #endif
166
167   if (n == 0) return;
168
169   if (alpha == ZERO) return;
170
171   IDEBUG_START;
172
173   FUNCTION_PROFILE_START();
174
175   if (incx < 0 ) x -= (n - 1) * incx;
176   if (incy < 0 ) y -= (n - 1) * incy;
177
178   buffer = (FLOAT *)blas_memory_alloc(1);
179
180 #ifdef SMP
181   nthreads = num_cpu_avail(2);
182
183   if (nthreads == 1) {
184 #endif
185
186   (spr2[uplo])(n, alpha, x, incx, y, incy, a, buffer);
187
188 #ifdef SMP
189   } else {
190
191     (spr2_thread[uplo])(n, alpha, x, incx, y, incy, a, buffer, nthreads);
192
193   }
194 #endif
195
196   blas_memory_free(buffer);
197
198   FUNCTION_PROFILE_END(1, n * n / 2 + 2 * n, 2 * n * n);
199
200   IDEBUG_END;
201
202   return;
203 }