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

« back to all changes in this revision

Viewing changes to src/pthreads/blas/level3/ATL_ptl3settype.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
void Mjoin( PATL, ptl3settype )
 
57
(
 
58
   PT_LVL3_TYPE_T             * PLVL3
 
59
)
 
60
{
 
61
/*
 
62
 * .. Local Variables ..
 
63
 */
 
64
   static TYPE                scalars[6] = { ATL_rnone, ATL_rzero,
 
65
                                             ATL_rzero, ATL_rzero,
 
66
                                             ATL_rone,  ATL_rzero };
 
67
/* ..
 
68
 * .. Executable Statements ..
 
69
 *
 
70
 */
 
71
#ifdef TREAL
 
72
   PLVL3->size     = sizeof( TYPE    );
 
73
#else
 
74
   PLVL3->size     = sizeof( TYPE[2] );
 
75
#endif
 
76
   PLVL3->negone   = (void *)(&(scalars[0]));
 
77
   PLVL3->zero     = (void *)(&(scalars[2]));
 
78
   PLVL3->one      = (void *)(&(scalars[4]));
 
79
 
 
80
   PLVL3->geadd0   = Mjoin( PATL, ptgeadd0    );
 
81
   PLVL3->gemm0    = Mjoin( PATL, ptgemm0     );
 
82
   PLVL3->symm0    = Mjoin( PATL, ptsymm0     );
 
83
#ifdef TREAL
 
84
   PLVL3->hemm0    = Mjoin( PATL, ptsymm0     );
 
85
#else
 
86
   PLVL3->hemm0    = Mjoin( PATL, pthemm0     );
 
87
#endif
 
88
   PLVL3->syrk0    = Mjoin( PATL, ptsyrk0     );
 
89
   PLVL3->syr2k0   = Mjoin( PATL, ptsyr2k0    );
 
90
#ifdef TREAL
 
91
   PLVL3->herk0    = Mjoin( PATL, ptsyrk0     );
 
92
   PLVL3->her2k0   = Mjoin( PATL, ptsyr2k0    );
 
93
#else
 
94
   PLVL3->herk0    = Mjoin( PATL, ptherk0     );
 
95
   PLVL3->her2k0   = Mjoin( PATL, pther2k0    );
 
96
#endif
 
97
   PLVL3->trmm0    = Mjoin( PATL, pttrmm0     );
 
98
   PLVL3->trsm0    = Mjoin( PATL, pttrsm0     );
 
99
 
 
100
   PLVL3->ptgemm   = Mjoin( PATL, ptgemm_nt   );
 
101
   PLVL3->pttrmm   = Mjoin( PATL, pttrmm_nt   );
 
102
#ifdef TREAL
 
103
   PLVL3->ptsyr2k0 = Mjoin( PATL, ptsyr2k0_nt );
 
104
   PLVL3->pther2k0 = Mjoin( PATL, ptsyr2k0_nt );
 
105
#else
 
106
   PLVL3->ptsyr2k0 = Mjoin( PATL, ptsyr2k0_nt );
 
107
   PLVL3->pther2k0 = Mjoin( PATL, pther2k0_nt );
 
108
#endif
 
109
 
 
110
/*
 
111
 * End of Mjoin( PATL, ptl3settype )
 
112
 */
 
113
}