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

« back to all changes in this revision

Viewing changes to src/lapack/ATL_potrfL.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:
24
24
#else
25
25
   #define llt_syrk cblas_syrk
26
26
   #define llt_trans AtlasTrans
27
 
   #define lda2 lda
28
27
#endif
29
28
/*
30
 
 *             Automatically Tuned Linear Algebra Software v3.8.4
 
29
 *             Automatically Tuned Linear Algebra Software v3.10.1
31
30
 *                    (C) Copyright 1999 R. Clint Whaley
32
31
 *
33
32
 * Redistribution and use in source and binary forms, with or without
230
229
int ATL_potrfL(const int N, TYPE *A, const int lda)
231
230
{
232
231
   TYPE *An, *Ar;
 
232
   const size_t lda2=(lda SHIFT);
233
233
   int Nleft, Nright, ierr;
234
234
   #ifdef TREAL
235
235
      #define lda2 lda
236
236
      #define ONE ATL_rone
237
237
   #else
238
238
      static const TYPE ONE[2] = {ATL_rone, ATL_rzero};
239
 
      const int lda2=lda<<1;
240
239
   #endif
241
240
 
242
241
#ifdef TREAL