~ubuntu-branches/ubuntu/vivid/atlas/vivid

« back to all changes in this revision

Viewing changes to src/pthreads/blas/level3/ATL_Strsm.c

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-06-11 15:58:16 UTC
  • mfrom: (1.1.3 upstream)
  • mto: (2.2.21 experimental)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: package-import@ubuntu.com-20130611155816-b72z8f621tuhbzn0
Tags: upstream-3.10.1
Import upstream version 3.10.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
/* ---------------------------------------------------------------------
3
 
 *
4
 
 * -- Automatically Tuned Linear Algebra Software (ATLAS)
5
 
 *    (C) Copyright 2000 All Rights Reserved
6
 
 *
7
 
 * -- ATLAS routine -- Version 3.2 -- December 25, 2000
8
 
 *
9
 
 * Author         : Antoine P. Petitet
10
 
 * Originally developed at the University of Tennessee,
11
 
 * Innovative Computing Laboratory, Knoxville TN, 37996-1301, USA.
12
 
 *
13
 
 * ---------------------------------------------------------------------
14
 
 *
15
 
 * -- Copyright notice and Licensing terms:
16
 
 *
17
 
 *  Redistribution  and  use in  source and binary forms, with or without
18
 
 *  modification, are  permitted provided  that the following  conditions
19
 
 *  are met:
20
 
 *
21
 
 * 1. Redistributions  of  source  code  must retain the above copyright
22
 
 *    notice, this list of conditions and the following disclaimer.
23
 
 * 2. Redistributions in binary form must reproduce  the above copyright
24
 
 *    notice,  this list of conditions, and the  following disclaimer in
25
 
 *    the documentation and/or other materials provided with the distri-
26
 
 *    bution.
27
 
 * 3. The name of the University,  the ATLAS group,  or the names of its
28
 
 *    contributors  may not be used to endorse or promote products deri-
29
 
 *    ved from this software without specific written permission.
30
 
 *
31
 
 * -- Disclaimer:
32
 
 *
33
 
 * THIS  SOFTWARE  IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
34
 
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,  INCLUDING,  BUT NOT
35
 
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
36
 
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY
37
 
 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,  INDIRECT, INCIDENTAL, SPE-
38
 
 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
39
 
 * TO,  PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
40
 
 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEO-
41
 
 * RY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  (IN-
42
 
 * CLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
43
 
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44
 
 *
45
 
 * ---------------------------------------------------------------------
46
 
 */
47
 
 
48
 
/*
49
 
 * Include files
50
 
 */
51
 
#include "atlas_ptmisc.h"
52
 
#include "atlas_ptlvl3.h"
53
 
#include "atlas_ptlevel3.h"
54
 
 
55
 
PT_TREE_T ATL_Strsm
56
 
(
57
 
   const PT_LVL3_TYPE_T       * PLVL3,
58
 
   const unsigned int         NODE,
59
 
   const unsigned int         NTHREADS,
60
 
   pthread_attr_t             * ATTR,
61
 
   const int                  NB,
62
 
   const enum ATLAS_SIDE      SIDE,
63
 
   const enum ATLAS_UPLO      UPLO,
64
 
   const enum ATLAS_TRANS     TRANS,
65
 
   const enum ATLAS_DIAG      DIAG,
66
 
   const int                  M,
67
 
   const int                  N,
68
 
   const void                 * ALPHA,
69
 
   const void                 * A,
70
 
   const int                  LDA,
71
 
   void                       * B,
72
 
   const int                  LDB
73
 
)
74
 
{
75
 
/*
76
 
 * .. Local Variables ..
77
 
 */
78
 
   PT_TREE_T                  left, right, tree = NULL;
79
 
   PT_TRSM_ARGS_T             * a_sm = NULL;
80
 
   double                     rm, rn;
81
 
   DIM_1DSPLIT_T              splitM, splitN;
82
 
   size_t                     size;
83
 
   unsigned int               next = ( NODE << 1 ), ntm1, ntm2, ntn1, ntn2;
84
 
   int                        incB, m1, m2, n1, n2;
85
 
/* ..
86
 
 * .. Executable Statements ..
87
 
 *
88
 
 */
89
 
   if( NTHREADS < 1 ) return( NULL );
90
 
 
91
 
   size = PLVL3->size;
92
 
 
93
 
   if( SIDE == AtlasLeft )
94
 
   {
95
 
      splitN = ATL_1dsplit( NTHREADS, N, NB, &ntn1, &ntn2, &n1, &n2, &rn );
96
 
 
97
 
      if( splitN == Atlas1dSplit )
98
 
      {
99
 
         left  = ATL_Strsm( PLVL3, next+1, ntn1, ATTR, NB, SIDE, UPLO, TRANS,
100
 
                            DIAG, M, n1, ALPHA, A, LDA, B, LDB );
101
 
         incB  = n1 * LDB;
102
 
         right = ATL_Strsm( PLVL3, next+2, ntn2, ATTR, NB, SIDE, UPLO, TRANS,
103
 
                            DIAG, M, n2, ALPHA, A, LDA, Mvpt3( B, incB,
104
 
                            size ), LDB );
105
 
         tree = ATL_init_node( NODE, left, right, NULL, NULL, NULL, NULL );
106
 
      }
107
 
      else
108
 
      {
109
 
         a_sm = (PT_TRSM_ARGS_T *)malloc( sizeof( PT_TRSM_ARGS_T ) );
110
 
         ATL_assert( a_sm != NULL );
111
 
         a_sm->si = SIDE; a_sm->up = UPLO; a_sm->tr = TRANS; a_sm->di = DIAG;
112
 
         a_sm->m  = M;    a_sm->n  = N;    a_sm->al = ALPHA;
113
 
         a_sm->a  = A;    a_sm->la = LDA;  a_sm->b  = B;     a_sm->lb = LDB;
114
 
         tree = ATL_init_node( NODE, NULL, NULL, NULL, NULL, PLVL3->trsm0,
115
 
                               (void *)(a_sm) );
116
 
      }
117
 
   }
118
 
   else
119
 
   {
120
 
      splitM = ATL_1dsplit( NTHREADS, M, NB, &ntm1, &ntm2, &m1, &m2, &rm );
121
 
 
122
 
      if( splitM == Atlas1dSplit )
123
 
      {
124
 
         left  = ATL_Strsm( PLVL3, next+1, ntm1, ATTR, NB, SIDE, UPLO, TRANS,
125
 
                            DIAG, m1, N, ALPHA, A, LDA, B, LDB );
126
 
         incB  = m1;
127
 
         right = ATL_Strsm( PLVL3, next+2, ntm2, ATTR, NB, SIDE, UPLO, TRANS,
128
 
                            DIAG, m2, N, ALPHA, A, LDA, Mvpt3( B, incB,
129
 
                            size ), LDB );
130
 
         tree = ATL_init_node( NODE, left, right, NULL, NULL, NULL, NULL );
131
 
      }
132
 
      else
133
 
      {
134
 
         a_sm = (PT_TRSM_ARGS_T *)malloc( sizeof( PT_TRSM_ARGS_T ) );
135
 
         ATL_assert( a_sm != NULL );
136
 
         a_sm->si = SIDE; a_sm->up = UPLO; a_sm->tr = TRANS; a_sm->di = DIAG;
137
 
         a_sm->m  = M;    a_sm->n  = N;    a_sm->al = ALPHA;
138
 
         a_sm->a  = A;    a_sm->la = LDA;  a_sm->b  = B;     a_sm->lb = LDB;
139
 
         tree = ATL_init_node( NODE, NULL, NULL, NULL, NULL, PLVL3->trsm0,
140
 
                               (void *)(a_sm) );
141
 
      }
142
 
   }
143
 
 
144
 
   return( tree );
145
 
/*
146
 
 * End of ATL_Strsm
147
 
 */
148
 
}