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.3 by jsr166, Thu Oct 29 23:16:47 2009 UTC vs.
Revision 1.9 by jsr166, Wed Jul 4 20:07:01 2012 UTC

# Line 1 | Line 1
1   // Barrier version of Jacobi iteration
2  
3   import java.util.concurrent.*;
4 //import jsr166y.*;
4  
5   public class FJPhaserJacobi {
6  
# Line 20 | Line 19 | public class FJPhaserJacobi {
19          }
20  
21          catch (Exception e) {
22 <            System.out.println("Usage: java FJPhaserJacobi <matrix size> <max steps>");
22 >            System.out.println("Usage: java ThreadPhaserJacobi <matrix size> <max steps>");
23              return;
24          }
25  
26          ForkJoinPool fjp = new ForkJoinPool();
27 +        //        int granularity = (n * n / fjp.getParallelism()) / 2;
28          int granularity = n * n / fjp.getParallelism();
29          dimGran = (int)(Math.sqrt(granularity));
30  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines