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

« back to all changes in this revision

Viewing changes to src/blas/level2/kernel/ATL_tbmvUT.c

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot, Sylvestre Ledru, Sébastien Villemot
  • Date: 2013-06-11 15:58:16 UTC
  • mfrom: (1.1.4) (25 sid)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: package-import@ubuntu.com-20130611155816-8xeeiziu1iml040c
Tags: 3.10.1-1
[ Sylvestre Ledru ]
* New upstream release (Closes: #609287)

[ Sébastien Villemot ]
* Provide architectural defaults (i.e. precomputed timings) for all
  release archs (except armel and mips for the time being, due to slow
  porterboxes). This will make the package build much faster and should
  eliminate transient build failures due to excessive variance in the
  timings.
* Move symlinks for lib{cblas,f77blas,atlas,lapack_atlas} out of the
  libblas.so.3 alternative and make them always present, so that
  software relying on these libs do not break when another alternative
  is selected for BLAS
* ATLAS now has improved ARM support with native asm constructs. This required
  the following tunes:
  + armel-is-v4t.diff: new patch, prevents FTBFS on armel; otherwise,
    ATLAS uses asm constructs too recent for the platform (armel is only v4t)
  + debian/rules: on armhf, define the ATL_ARM_HARDFP flag; otherwise the asm
    constructs use the soft-float ABI for passing floating points
  + on armhf, ensure that -mfloat-abi=softfp and -mcpu=vfpv3 flags are never
    used; this is implemented via a patch (armhf.diff) and by the use of fixed
    archdefs
* The generic package is now built without multi-threading, because otherwise
  the package fails to build on some single-processor machines (this required
  the introduction of a patch: fix-non-threaded-build.diff). As a side effect,
  the build of the custom package gracefully handles non-threaded
  builds. (Closes: #602524)
* Add libblas.a as slave in the libblas.so alternative (Closes: #701921)
* Add symlinks for lib{f77blas,atlas}.a in /usr/lib (Closes: #666203)
* Modify shlibs file of libatlas3-base, such that packages using
  libblas/liblapack depend on any BLAS/LAPACK alternative, while packages
  depending on ATLAS-specific libraries (e.g. libatlas.so) depend specifically
  on libatlas3-base.
* corei1.diff: remove patch, applied upstream
* Use my @debian.org email address
* Remove obsolete DM-Upload-Allowed flag
* Switch VCS to git
* Remove Conflicts/Replaces against pre-squeeze packages
* libatlas-base-dev now provides libblas.so, as libblas-dev
* No longer use -Wa,--noexecstack in CFLAGS, it makes the package FTBFS
* Do not use POWER3 arch for powerpcspe port (Closes: #701068)
* Bump to debhelper compat level 9
* README.Debian: mention that devscripts is needed to compile the custom
  package (Closes: #697431)
* Bump Standards-Version to 3.9.4. As a consequence, add Built-Using
  fields because the package embeds stuff from liblapack-pic

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
 
 * Author         : Antoine P. Petitet
9
 
 * Originally developed at the University of Tennessee,
10
 
 * Innovative Computing Laboratory, Knoxville TN, 37996-1301, USA.
11
 
 *
12
 
 * ---------------------------------------------------------------------
13
 
 *
14
 
 * -- Copyright notice and Licensing terms:
15
 
 *
16
 
 *  Redistribution  and  use in  source and binary forms, with or without
17
 
 *  modification, are  permitted provided  that the following  conditions
18
 
 *  are met:
19
 
 *
20
 
 * 1. Redistributions  of  source  code  must retain the above copyright
21
 
 *    notice, this list of conditions and the following disclaimer.
22
 
 * 2. Redistributions in binary form must reproduce  the above copyright
23
 
 *    notice,  this list of conditions, and the  following disclaimer in
24
 
 *    the documentation and/or other materials provided with the distri-
25
 
 *    bution.
26
 
 * 3. The name of the University,  the ATLAS group,  or the names of its
27
 
 *    contributors  may not be used to endorse or promote products deri-
28
 
 *    ved from this software without specific written permission.
29
 
 *
30
 
 * -- Disclaimer:
31
 
 *
32
 
 * THIS  SOFTWARE  IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33
 
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,  INCLUDING,  BUT NOT
34
 
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
35
 
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY
36
 
 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,  INDIRECT, INCIDENTAL, SPE-
37
 
 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
38
 
 * TO,  PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
39
 
 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEO-
40
 
 * RY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  (IN-
41
 
 * CLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
42
 
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43
 
 *
44
 
 * ---------------------------------------------------------------------
45
 
 */
46
 
/*
47
 
 * Include files
48
 
 */
49
 
#include "atlas_misc.h"
50
 
#include "atlas_mv.h"
51
 
#include "atlas_r1.h"
52
 
#include "atlas_level1.h"
53
 
#include "atlas_kernel2.h"
54
 
#include "atlas_reflvl2.h"
55
 
#include "atlas_lvl2.h"
56
 
 
57
 
void Mjoin( PATL, tbmvUT )
58
 
(
59
 
   const enum ATLAS_DIAG      DIAG,
60
 
   const int                  N,         /* N > 0 assumed */
61
 
   const int                  K,
62
 
   const TYPE                 * A,
63
 
   const int                  LDA,
64
 
   TYPE                       * X
65
 
)
66
 
{
67
 
/*
68
 
 * Purpose
69
 
 * =======
70
 
 *
71
 
 * Mjoin( PATL, tbmvUT ) performs the following matrix-vector operation
72
 
 *
73
 
 *    x := A'* x,
74
 
 *
75
 
 * where x is an n-element vector and  A is an n by n unit or  non-unit,
76
 
 * upper triangular band matrix.
77
 
 *
78
 
 * This is a blocked version of the algorithm.  For a more detailed des-
79
 
 * cription of  the arguments of this function, see the reference imple-
80
 
 * mentation in the  ATLAS/src/blas/reference directory.
81
 
 *
82
 
 * ---------------------------------------------------------------------
83
 
 */
84
 
/*
85
 
 * .. Local Variables ..
86
 
 */
87
 
   void                       (*tbmv0)( const int, const int, const TYPE *,
88
 
                              const int, TYPE * );
89
 
#ifdef TREAL
90
 
#define    one                ATL_rone
91
 
#define    lda2               LDA
92
 
#else
93
 
   TYPE                       one[2] = { ATL_rone, ATL_rzero };
94
 
   const int                  lda2   = ( LDA SHIFT );
95
 
#endif
96
 
   int                        ia, ian, j, kl, ku, m1, ma, mb, mb1, na, nb;
97
 
#define    gbmv0              Mjoin( PATL, gbmvT_a1_x1_b1_y1  )
98
 
/* ..
99
 
 * .. Executable Statements ..
100
 
 *
101
 
 */
102
 
   ATL_GetPartMVT( A, LDA, &mb, &nb );
103
 
 
104
 
   if( DIAG == AtlasNonUnit ) tbmv0 = Mjoin( PATL, tbmvUTN );
105
 
   else                       tbmv0 = Mjoin( PATL, tbmvUTU );
106
 
 
107
 
   mb1  = N - ( m1 = ( ( N - 1 ) / mb ) * mb );
108
 
 
109
 
   tbmv0( mb1, K, A+m1*lda2, LDA, X+(m1 SHIFT) );
110
 
 
111
 
   for( j = m1 - mb; j >= 0; j -= mb )
112
 
   {
113
 
      ian = j + mb; ia = mb - K; ia = j + Mmax( ia, 0 ); ma = ian - ia;
114
 
      na = N - ian; na = Mmin( na, K ); kl = ma - 1; kl = Mmax( kl, 0 );
115
 
      ku = K - 1 - kl; ku = Mmax( ku, 0 );
116
 
      gbmv0( na, ma, kl, ku, one, A+ian*lda2, LDA, X+(ia SHIFT), 1, one,
117
 
             X+(ian SHIFT), 1 );
118
 
      tbmv0( mb, K, A+j*lda2, LDA, X+(j SHIFT) );
119
 
   }
120
 
/*
121
 
 * End of Mjoin( PATL, tbmvUT )
122
 
 */
123
 
}