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

Comparing jsr166/src/test/loops/ConcurrentDequeLoops.java (file contents):
Revision 1.8 by jsr166, Tue Mar 15 19:47:05 2011 UTC vs.
Revision 1.14 by jsr166, Sat Dec 31 19:02:43 2016 UTC

# Line 4 | Line 4
4   * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7 < import java.util.*;
8 < import java.util.concurrent.*;
9 < import java.util.concurrent.atomic.*;
10 < import java.util.concurrent.locks.*;
7 > import java.util.ArrayList;
8 > import java.util.Deque;
9 > import java.util.concurrent.Callable;
10 > import java.util.concurrent.CyclicBarrier;
11 > import java.util.concurrent.ExecutorService;
12 > import java.util.concurrent.Executors;
13 > import java.util.concurrent.Future;
14 > import java.util.concurrent.atomic.AtomicInteger;
15  
16   public class ConcurrentDequeLoops {
17      static final ExecutorService pool = Executors.newCachedThreadPool();
# Line 18 | Line 22 | public class ConcurrentDequeLoops {
22          int maxStages = 8;
23          int items = 1000000;
24  
25 <        Class klass = null;
25 >        Class<?> klass = null;
26          if (args.length > 0) {
27              try {
28                  klass = Class.forName(args[0]);
# Line 43 | Line 47 | public class ConcurrentDequeLoops {
47          Thread.sleep(100);
48          print = true;
49  
50 <        int k = 1;
47 <        for (int i = 1; i <= maxStages;) {
50 >        for (int k = 1, i = 1; i <= maxStages;) {
51              oneRun(klass, i, items);
52              if (i == k) {
53                  k = i << 1;
# Line 54 | Line 57 | public class ConcurrentDequeLoops {
57                  i = k;
58          }
59          pool.shutdown();
60 <   }
60 >    }
61  
62      static class Stage implements Callable<Integer> {
63          final Deque<Integer> queue;
# Line 117 | Line 120 | public class ConcurrentDequeLoops {
120          }
121      }
122  
123 <    static void oneRun(Class klass, int n, int items) throws Exception {
124 <        Deque<Integer> q = (Deque<Integer>) klass.newInstance();
123 >    static void oneRun(Class<?> klass, int n, int items) throws Exception {
124 >        Deque<Integer> q =
125 >            (Deque<Integer>) klass.getConstructor().newInstance();
126          LoopHelpers.BarrierTimer timer = new LoopHelpers.BarrierTimer();
127          CyclicBarrier barrier = new CyclicBarrier(n + 1, timer);
128          totalItems = new AtomicInteger(n * items);
# Line 141 | Line 145 | public class ConcurrentDequeLoops {
145              System.out.println(LoopHelpers.rightJustify(time / (items * n)) + " ns per item");
146          if (total == 0) // avoid overoptimization
147              System.out.println("useless result: " + total);
144
148      }
149   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines