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

« back to all changes in this revision

Viewing changes to benchmarks/arrdaxpyf.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
 
       subroutine arrdaxpyf(A, B, N, iters, c1)
 
1
       subroutine arrdaxpyf(A, B, N, c1)
2
2
       integer N, iters
3
3
       double precision A(N,N,N), B(N,N,N)
4
4
       double precision c1
5
5
       double precision c2
6
6
       c2 = - c1
7
7
 
8
 
       do z=1,iters
9
 
       
10
8
         do k=2,N-1
11
9
           do j=2,N-1
12
10
             do i=2,N-1
23
21
           enddo
24
22
         enddo
25
23
 
26
 
       enddo
27
 
 
28
24
       return
29
25
       end
30
26