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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2002-04-13 10:07:52 UTC
  • Revision ID: james.westby@ubuntu.com-20020413100752-va9zm0rd4gpurdkq
Tags: upstream-3.2.1ln
ImportĀ upstreamĀ versionĀ 3.2.1ln

Show diffs side-by-side

added added

removed removed

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