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

« back to all changes in this revision

Viewing changes to benchmarks/loop16f90.f90

  • 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
 
      SUBROUTINE loop16_F90(N, x, a, b, c, y, u)
 
1
 
 
2
      SUBROUTINE loop16_F90(N, y, x, a, b, c, u)
2
3
      INTEGER i, N
3
 
      REAL*8 x(N), a(N), b(N), c(N), y(N), u
 
4
      REAL*8 y(N), x(N), a(N), b(N), c(N), u
4
5
 
5
 
      x=a+b+c
6
 
        y=x+c+u
 
6
      x = a+b+c; y = x+c+u
7
7
      RETURN
8
8
      END
9
9
 
10
10
 
11
 
      SUBROUTINE loop16_F90Overhead(N, x, a, b, c, y, u)
 
11
      SUBROUTINE loop16_F90Overhead(N, y, x, a, b, c, u)
12
12
      INTEGER i, N
13
 
      REAL*8 x(N), a(N), b(N), c(N), y(N), u
 
13
      REAL*8 y(N), x(N), a(N), b(N), c(N), u
14
14
 
15
15
      RETURN
16
16
      END