Merge pull request #1762 from martin-frbg/issue1710-2
[platform/upstream/openblas.git] / interface / zspr.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 "XSPR  "
48 #elif defined(DOUBLE)
49 #define ERROR_NAME "ZSPR  "
50 #else
51 #define ERROR_NAME "CSPR  "
52 #endif
53
54 static int (*spr[])(BLASLONG, FLOAT, FLOAT, FLOAT *, BLASLONG, FLOAT *, FLOAT *) = {
55 #ifdef XDOUBLE
56   xspr_U, xspr_L,
57 #elif defined(DOUBLE)
58   zspr_U, zspr_L,
59 #else
60   cspr_U, cspr_L,
61 #endif
62 };
63
64 #ifdef SMP
65 static int (*spr_thread[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, FLOAT *, FLOAT *, int) = {
66 #ifdef XDOUBLE
67   xspr_thread_U, xspr_thread_L,
68 #elif defined(DOUBLE)
69   zspr_thread_U, zspr_thread_L,
70 #else
71   cspr_thread_U, cspr_thread_L,
72 #endif
73 };
74 #endif
75
76 void NAME(char *UPLO, blasint *N, FLOAT  *ALPHA,
77          FLOAT  *x, blasint *INCX, FLOAT *a){
78
79   char uplo_arg = *UPLO;
80   blasint n             = *N;
81   FLOAT alpha_r = ALPHA[0];
82   FLOAT alpha_i = ALPHA[1];
83   blasint incx  = *INCX;
84
85   blasint info;
86   int uplo;
87   FLOAT *buffer;
88 #ifdef SMP
89   int nthreads;
90 #endif
91
92   PRINT_DEBUG_NAME;
93
94   TOUPPER(uplo_arg);
95   uplo  = -1;
96
97   if (uplo_arg  == 'U') uplo  = 0;
98   if (uplo_arg  == 'L') uplo  = 1;
99
100   info = 0;
101
102   if (incx == 0)          info =  5;
103   if (n < 0)              info =  2;
104   if (uplo  < 0)          info =  1;
105
106   if (info != 0) {
107     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
108     return;
109   }
110
111   if (n == 0) return;
112
113   if ((alpha_r == ZERO) && (alpha_i == ZERO)) return;
114
115   IDEBUG_START;
116
117   FUNCTION_PROFILE_START();
118
119   if (incx < 0 ) x -= (n - 1) * incx;
120
121   buffer = (FLOAT *)blas_memory_alloc(1);
122
123 #ifdef SMP
124   nthreads = num_cpu_avail(2);
125
126   if (nthreads == 1) {
127 #endif
128
129     (spr[uplo])(n, alpha_r, alpha_i, x, incx, a, buffer);
130
131 #ifdef SMP
132   } else {
133
134     (spr_thread[uplo])(n, ALPHA, x, incx, a, buffer, nthreads);
135
136   }
137 #endif
138
139   blas_memory_free(buffer);
140
141   FUNCTION_PROFILE_END(4, n * n / 2 + n, n * n);
142
143   IDEBUG_END;
144
145   return;
146 }