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

« back to all changes in this revision

Viewing changes to interfaces/blas/F77/src/f77wrap/ATL_F77wrap_spr2.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 15, 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_f77wrap.h"
 
53
 
 
54
void Mjoin( PATLF77WRAP, spr2 )
 
55
(
 
56
   F77_INTEGER                * IUPLO,
 
57
   F77_INTEGER                * N,
 
58
   TYPE                       * ALPHA,
 
59
   TYPE                       * X,
 
60
   F77_INTEGER                * INCX,
 
61
   TYPE                       * Y,
 
62
   F77_INTEGER                * INCY,
 
63
   TYPE                       * A
 
64
)
 
65
{
 
66
/*
 
67
 * Purpose
 
68
 * =======
 
69
 *
 
70
 * ATL_F77wrap_spr2 performs the symmetric rank 2 operation
 
71
 *
 
72
 *    A := alpha * x * y' + alpha * y * x' + A,
 
73
 *
 
74
 * where  alpha is a scalar, x and y are n-element vectors and A is an n
 
75
 * by n symmetric matrix, supplied in packed form.
 
76
 *
 
77
 * Notes
 
78
 * =====
 
79
 *
 
80
 * This routine is an internal wrapper function written in  C  called by
 
81
 * the corresponding Fortran 77 user callable subroutine.  It calls  the
 
82
 * appropriate ATLAS routine performing the actual computation.
 
83
 *
 
84
 * This wrapper layer resolves the following portability issues:
 
85
 *
 
86
 *    - the routines' name sheme translation imposed by the  Fortran / C
 
87
 *      compilers of your target computer,
 
88
 *    - the translation of Fortran characters into the ATLAS  correspon-
 
89
 *      ding C enumerated type (in cooperation with the Fortan user cal-
 
90
 *      lable subroutine),
 
91
 *    - the translation of Fortran integers into the proper C correspon-
 
92
 *      ding native type;
 
93
 *
 
94
 * and the following ease-of-programming issue:
 
95
 *
 
96
 *    - a pointer to the the first entry of vector operands (when appli-
 
97
 *      cable) is passed to the  ATLAS computational routine even if the
 
98
 *      corresponding input increment value is negative. This allows for
 
99
 *      a more natural expression in  C  of the computation performed by
 
100
 *      these ATLAS functions.
 
101
 *
 
102
 * ---------------------------------------------------------------------
 
103
 */
 
104
/* ..
 
105
 * .. Executable Statements ..
 
106
 *
 
107
 */
 
108
   Mjoin( PATL, spr2 )( *IUPLO, *N, SVVAL ALPHA, W1N( N, X, INCX ), *INCX,
 
109
                        W1N( N, Y, INCY ), *INCY, A );
 
110
/*
 
111
 * End of Mjoin( PATLF77WRAP, spr2 )
 
112
 */
 
113
}