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

« back to all changes in this revision

Viewing changes to tune/blas/level1/rottest.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:
27
27
   int n, i;
28
28
   const int malign = align >= misalign ? align : misalign;
29
29
 
30
 
   n = size + align + malign;
 
30
   n = size + align + align + malign;
31
31
   i = (n >> 3)<<3;
32
32
   if (n != i)
33
33
      n += n - i;
41
41
   ap->memA = align ? (void*) ((((size_t) cp)/align)*align + align) : cp;
42
42
/*
43
43
 * Misalign to misalign
 
44
 * We often need to make sure to unaligned addresses share the same modulo
 
45
 * so that they have the *same* degree of misalignment (so that their alignment
 
46
 * can be fixed by simple peeling), and so in this case force the address
 
47
 * modulo the misalign to be the exact align value.
44
48
 */
45
49
   if (misalign)
46
 
   {
47
 
      if (((size_t)ap->memA)%misalign == 0)
48
 
         ap->memA = ((char*)ap->memA) + align;
49
 
   }
 
50
      ap->memA = (void*)((((size_t)ap->memA)/malign)*malign + malign + align);
50
51
   ap->next = next;
51
52
   return(ap);
52
53
}
117
118
         for (ap=allocQ; ap && ap->memA != ptr; ap = ap->next) prev = ap;
118
119
         if (!ap)
119
120
         {
120
 
            fprintf(stderr, "Couldn't find mem=%ld\nmemQ=\n", ptr);
 
121
            fprintf(stderr, "Couldn't find mem=%ld\nmemQ=\n", (size_t)ptr);
121
122
            for (ap=allocQ; ap; ap = ap->next)
122
 
               fprintf(stderr, "   %ld, %ld\n", ap->memA, ap->mem);
 
123
               fprintf(stderr, "   %ld, %ld\n", (size_t)ap->memA,
 
124
                       (size_t)ap->mem);
123
125
         }
124
126
         assert(ap);
125
127
         if (ap == allocQ)
681
683
      FAy = sizeof(TYPE);
682
684
}
683
685
 
684
 
main(int nargs, char **args)
 
686
int main(int nargs, char **args)
685
687
{
686
688
   int nN, nX, nY, nal, nbe;
687
689
   int *Ns, *incXs, *incYs;
694
696
   if (betas) free(betas);
695
697
   free(incXs);
696
698
   free(incYs);
697
 
   exit(ierr);
 
699
   return(ierr);
698
700
}