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

« back to all changes in this revision

Viewing changes to tune/blas/level1/SCAL/scal1_x1.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:
2
2
void ATL_USCAL(const int N, const SCALAR alpha, TYPE *X, const int incX)
3
3
{
4
4
   int i;
5
 
   for (i=0; i != N; i++) X[i] *= alpha;
 
5
   for (i=0; i < N; i++) X[i] *= alpha;
6
6
}