~ubuntu-branches/ubuntu/utopic/blitz++/utopic-proposed

« back to all changes in this revision

Viewing changes to benchmarks/loop21f.f

  • Committer: Package Import Robot
  • Author(s): Christophe Trophime
  • Date: 2012-07-06 09:15:30 UTC
  • mfrom: (11.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20120706091530-vzrb8zf0vpbf8tp9
Tags: 1:0.10-1
* New upstream release
  Closes: #679407
* debian/rules:
  - update for new release
  - add override_dh_auto_test target
  - regenerate configure and Makefile.am
* debian/control:
  - add libtool, automake to BuildDepends
* debian/libblitz-doc.install
  - modify path for html files
* remove uneeded patches
* add examples.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
1
2
      SUBROUTINE loop21_F77(N, x, a, b, c, d)
2
3
      INTEGER i, N
3
4
      REAL*8 x(N), a(N), b(N), c(N), d(N)
4
5
 
5
6
      DO i=1,N
6
 
          x(i)=a(i)*b(i)+c(i)*d(i)
 
7
          x(i) = a(i)*b(i) + c(i)*d(i);
7
8
      END DO
8
9
      RETURN
9
10
      END