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

« back to all changes in this revision

Viewing changes to tune/blas/level1/AXPY/axpy1_x0y0.c

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru
  • Date: 2009-09-17 23:31:54 UTC
  • mto: (2.2.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20090917233154-9esw88ub02twbuab
Tags: upstream-3.8.3
ImportĀ upstreamĀ versionĀ 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
               TYPE *Y, const int incY)
4
4
{
5
5
   int i;
6
 
   for (i=0; i != N; i++, X += incX, Y += incY) *Y += alpha * *X;
 
6
   for (i=0; i < N; i++, X += incX, Y += incY) *Y += alpha * *X;
7
7
}