ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/FJPhaserJacobi.java
(Generate patch)

Comparing jsr166/src/test/loops/FJPhaserJacobi.java (file contents):
Revision 1.1 by dl, Fri Oct 23 19:57:06 2009 UTC vs.
Revision 1.5 by jsr166, Mon Nov 2 23:55:36 2009 UTC

# Line 1 | Line 1
1 + /*
2 + * Written by Doug Lea with assistance from members of JCP JSR-166
3 + * Expert Group and released to the public domain, as explained at
4 + * http://creativecommons.org/licenses/publicdomain
5 + */
6 +
7   // Barrier version of Jacobi iteration
8  
9   import java.util.concurrent.*;
# Line 18 | Line 24 | public class FJPhaserJacobi {
24              if (args.length > 1)
25                  steps = Integer.parseInt(args[1]);
26          }
27 <        
27 >
28          catch (Exception e) {
29 <            System.out.println("Usage: java ThreadPhaserJacobi <matrix size> <max steps>");
29 >            System.out.println("Usage: java FJPhaserJacobi <matrix size> <max steps>");
30              return;
31          }
32 <        
32 >
33          ForkJoinPool fjp = new ForkJoinPool();
34          int granularity = n * n / fjp.getParallelism();
35          dimGran = (int)(Math.sqrt(granularity));
36 <      
36 >
37          // allocate enough space for edges
38          int dim = n+2;
39          int ncells = dim * dim;
40          double[][] a = new double[dim][dim];
41          double[][] b = new double[dim][dim];
42          // Initialize interiors to small value
43 <        double smallVal = 1.0/dim;
43 >        double smallVal = 1.0/dim;
44          for (int i = 1; i < dim-1; ++i) {
45              for (int j = 1; j < dim-1; ++j)
46                  a[i][j] = smallVal;
# Line 51 | Line 57 | public class FJPhaserJacobi {
57              Driver driver = new Driver(a, b, 1, n, 1, n, steps);
58              long startTime = System.currentTimeMillis();
59              fjp.invoke(driver);
60 <            
60 >
61              long time = System.currentTimeMillis() - startTime;
62              double secs = ((double)time) / 1000.0;
63 <            
63 >
64              System.out.println("Compute Time: " + secs);
65              System.out.println(fjp);
66  
67          }
68 <        
68 >
69      }
70  
71      static class Segment extends CyclicAction {
72          double[][] A; // matrix to get old values from
73          double[][] B; // matrix to put new values into
74          // indices of current submatrix
75 <        final int loRow;  
75 >        final int loRow;
76          final int hiRow;
77          final int loCol;
78          final int hiCol;
79          volatile double maxDiff; // maximum difference between old and new values
80  
81 <        Segment(double[][] A, double[][] B,
81 >        Segment(double[][] A, double[][] B,
82                  int loRow, int hiRow,
83 <                int loCol, int hiCol,
83 >                int loCol, int hiCol,
84                  Phaser br) {
85              super(br);
86              this.A = A;   this.B = B;
# Line 104 | Line 110 | public class FJPhaserJacobi {
110  
111              return md;
112          }
113 <        
113 >
114      }
115  
116      static class MyPhaser extends Phaser {
# Line 115 | Line 121 | public class FJPhaserJacobi {
121          }
122      }
123  
124 <    static class Driver extends RecursiveAction {
124 >    static class Driver extends RecursiveAction {
125          double[][] A; // matrix to get old values from
126          double[][] B; // matrix to put new values into
127          final int loRow;   // indices of current submatrix
# Line 123 | Line 129 | public class FJPhaserJacobi {
129          final int loCol;
130          final int hiCol;
131          final int steps;
132 <        Driver(double[][] mat1, double[][] mat2,
132 >        Driver(double[][] mat1, double[][] mat2,
133                 int firstRow, int lastRow,
134                 int firstCol, int lastCol,
135                 int steps) {
136 <            
136 >
137              this.A = mat1;   this.B = mat2;
138              this.loRow = firstRow; this.hiRow = lastRow;
139              this.loCol = firstCol; this.hiCol = lastCol;
# Line 137 | Line 143 | public class FJPhaserJacobi {
143          public void compute() {
144              int rows = hiRow - loRow + 1;
145              int cols = hiCol - loCol + 1;
146 <            int rblocks = (int)(Math.round((float)rows / dimGran));
147 <            int cblocks = (int)(Math.round((float)cols / dimGran));
148 <            
146 >            int rblocks = Math.round((float)rows / dimGran);
147 >            int cblocks = Math.round((float)cols / dimGran);
148 >
149              int n = rblocks * cblocks;
150 <            
150 >
151              System.out.println("Using " + n + " segments");
152 <            
152 >
153              Segment[] segs = new Segment[n];
154              Phaser barrier = new MyPhaser(steps);
155              int k = 0;
# Line 151 | Line 157 | public class FJPhaserJacobi {
157                  int lr = loRow + i * dimGran;
158                  int hr = lr + dimGran;
159                  if (i == rblocks-1) hr = hiRow;
160 <                
160 >
161                  for (int j = 0; j < cblocks; ++j) {
162                      int lc = loCol + j * dimGran;
163                      int hc = lc + dimGran;
164                      if (j == cblocks-1) hc = hiCol;
165 <                    
165 >
166                      segs[k] = new Segment(A, B, lr, hr, lc, hc, barrier);
167                      ++k;
168                  }
# Line 171 | Line 177 | public class FJPhaserJacobi {
177          }
178      }
179   }
174

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines