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

Comparing jsr166/src/test/loops/MultipleProducersSingleConsumerLoops.java (file contents):
Revision 1.3 by dl, Mon Feb 19 00:46:06 2007 UTC vs.
Revision 1.11 by jsr166, Mon Aug 10 03:13:33 2015 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
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7 + import java.util.*;
8   import java.util.concurrent.*;
9 + //import jsr166y.*;
10  
11   public class MultipleProducersSingleConsumerLoops {
12 <    static final int CAPACITY =      100;
12 >    static final int NCPUS = Runtime.getRuntime().availableProcessors();
13 >    static final Random rng = new Random();
14      static final ExecutorService pool = Executors.newCachedThreadPool();
15      static boolean print = false;
16      static int producerSum;
17      static int consumerSum;
15
18      static synchronized void addProducerSum(int x) {
19          producerSum += x;
20      }
# Line 26 | Line 28 | public class MultipleProducersSingleCons
28              throw new Error("CheckSum mismatch");
29      }
30  
31 +    // Number of elements passed around -- must be power of two
32 +    // Elements are reused from pool to minimize alloc impact
33 +    static final int POOL_SIZE = 1 << 8;
34 +    static final int POOL_MASK = POOL_SIZE-1;
35 +    static final Integer[] intPool = new Integer[POOL_SIZE];
36 +    static {
37 +        for (int i = 0; i < POOL_SIZE; ++i)
38 +            intPool[i] = Integer.valueOf(i);
39 +    }
40 +
41 +    // Number of puts by producers or takes by consumers
42 +    static final int ITERS = 1 << 20;
43 +
44 +    // max lag between a producer and consumer to avoid
45 +    // this becoming a GC test rather than queue test.
46 +    static final int LAG = (1 << 12);
47 +    static final int LAG_MASK = LAG - 1;
48 +
49      public static void main(String[] args) throws Exception {
50 <        int maxProducers = 100;
31 <        int iters = 100000;
50 >        int maxn = 12; // NCPUS * 3 / 2;
51  
52 <        if (args.length > 0)
53 <            maxProducers = Integer.parseInt(args[0]);
52 >        if (args.length > 0)
53 >            maxn = Integer.parseInt(args[0]);
54  
55 <        print = false;
37 <        System.out.println("Warmup...");
38 <        oneTest(1, 10000);
39 <        Thread.sleep(100);
40 <        oneTest(2, 10000);
41 <        Thread.sleep(100);
55 >        warmup();
56          print = true;
57 <        
44 <        for (int i = 1; i <= maxProducers; i += (i+1) >>> 1) {
57 >        for (int k = 1, i = 1; i <= maxn;) {
58              System.out.println("Producers:" + i);
59 <            oneTest(i, iters);
60 <            Thread.sleep(100);
59 >            oneTest(i, ITERS);
60 >            if (i == k) {
61 >                k = i << 1;
62 >                i = i + (i >>> 1);
63 >            }
64 >            else
65 >                i = k;
66          }
67          pool.shutdown();
68 <   }
68 >    }
69 >
70 >    static void warmup() throws Exception {
71 >        print = false;
72 >        System.out.print("Warmup ");
73 >        int it = 2000;
74 >        for (int j = 5; j > 0; --j) {
75 >            oneTest(j, it);
76 >            System.out.print(".");
77 >            it += 1000;
78 >        }
79 >        System.gc();
80 >        it = 20000;
81 >        for (int j = 5; j > 0; --j) {
82 >            oneTest(j, it);
83 >            System.out.print(".");
84 >            it += 10000;
85 >        }
86 >        System.gc();
87 >        System.out.println();
88 >    }
89 >
90 >    static void oneTest(int n, int iters) throws Exception {
91 >        int fairIters = iters/16;
92  
93 <    static void oneTest(int producers, int iters) throws Exception {
93 >        Thread.sleep(100); // System.gc();
94          if (print)
95 <            System.out.print("ArrayBlockingQueue      ");
96 <        oneRun(new ArrayBlockingQueue<Integer>(CAPACITY), producers, iters);
95 >            System.out.print("LinkedTransferQueue     ");
96 >        oneRun(new LinkedTransferQueue<Integer>(), n, iters);
97  
98 +        Thread.sleep(100); // System.gc();
99          if (print)
100              System.out.print("LinkedBlockingQueue     ");
101 <        oneRun(new LinkedBlockingQueue<Integer>(CAPACITY), producers, iters);
101 >        oneRun(new LinkedBlockingQueue<Integer>(), n, iters);
102 >
103 >        Thread.sleep(100); // System.gc();
104 >        if (print)
105 >            System.out.print("LinkedBlockingQueue(cap)");
106 >        oneRun(new LinkedBlockingQueue<Integer>(POOL_SIZE), n, iters);
107 >
108 >        Thread.sleep(100); // System.gc();
109 >        if (print)
110 >            System.out.print("LinkedBlockingDeque     ");
111 >        oneRun(new LinkedBlockingDeque<Integer>(), n, iters);
112  
113 <        // Don't run PBQ since can legitimately run out of memory
114 <        //        if (print)
115 <        //            System.out.print("PriorityBlockingQueue   ");
116 <        //        oneRun(new PriorityBlockingQueue<Integer>(), producers, iters);
113 >        Thread.sleep(100); // System.gc();
114 >        if (print)
115 >            System.out.print("ArrayBlockingQueue      ");
116 >        oneRun(new ArrayBlockingQueue<Integer>(POOL_SIZE), n, iters);
117  
118 +        Thread.sleep(100); // System.gc();
119          if (print)
120              System.out.print("SynchronousQueue        ");
121 <        oneRun(new SynchronousQueue<Integer>(), producers, iters);
121 >        oneRun(new SynchronousQueue<Integer>(), n, iters);
122  
123 +        Thread.sleep(100); // System.gc();
124          if (print)
125              System.out.print("SynchronousQueue(fair)  ");
126 <        oneRun(new SynchronousQueue<Integer>(true), producers, iters);
126 >        oneRun(new SynchronousQueue<Integer>(true), n, iters);
127 >
128 >        Thread.sleep(100); // System.gc();
129 >        if (print)
130 >            System.out.print("LinkedTransferQueue(xfer)");
131 >        oneRun(new LTQasSQ<Integer>(), n, iters);
132 >
133 >        Thread.sleep(100); // System.gc();
134 >        if (print)
135 >            System.out.print("LinkedTransferQueue(half)");
136 >        oneRun(new HalfSyncLTQ<Integer>(), n, iters);
137 >
138 >        Thread.sleep(100); // System.gc();
139 >        if (print)
140 >            System.out.print("PriorityBlockingQueue   ");
141 >        oneRun(new PriorityBlockingQueue<Integer>(), n, fairIters);
142  
143 +        Thread.sleep(100); // System.gc();
144          if (print)
145              System.out.print("ArrayBlockingQueue(fair)");
146 <        oneRun(new ArrayBlockingQueue<Integer>(CAPACITY, true), producers, iters/10);
146 >        oneRun(new ArrayBlockingQueue<Integer>(POOL_SIZE, true), n, fairIters);
147      }
148 <    
149 <    static abstract class Stage implements Runnable {
148 >
149 >    abstract static class Stage implements Runnable {
150          final int iters;
151          final BlockingQueue<Integer> queue;
152          final CyclicBarrier barrier;
153 <        Stage (BlockingQueue<Integer> q, CyclicBarrier b, int iters) {
154 <            queue = q;
153 >        final Phaser lagPhaser;
154 >        final int lag;
155 >        Stage(BlockingQueue<Integer> q, CyclicBarrier b, Phaser s,
156 >              int iters, int lag) {
157 >            queue = q;
158              barrier = b;
159 +            lagPhaser = s;
160              this.iters = iters;
161 +            this.lag = lag;
162          }
163      }
164  
165      static class Producer extends Stage {
166 <        Producer(BlockingQueue<Integer> q, CyclicBarrier b, int iters) {
167 <            super(q, b, iters);
166 >        Producer(BlockingQueue<Integer> q, CyclicBarrier b, Phaser s,
167 >                 int iters, int lag) {
168 >            super(q, b, s, iters, lag);
169          }
170  
171          public void run() {
172              try {
173                  barrier.await();
174 <                int s = 0;
175 <                int l = hashCode();
174 >                int ps = 0;
175 >                int r = hashCode();
176 >                int j = 0;
177                  for (int i = 0; i < iters; ++i) {
178 <                    l = LoopHelpers.compute1(l);
179 <                    l = LoopHelpers.compute2(l);
180 <                    queue.put(new Integer(l));
181 <                    s += l;
178 >                    r = LoopHelpers.compute7(r);
179 >                    Integer v = intPool[r & POOL_MASK];
180 >                    int k = v.intValue();
181 >                    queue.put(v);
182 >                    ps += k;
183 >                    if (++j == lag) {
184 >                        j = 0;
185 >                        lagPhaser.arriveAndAwaitAdvance();
186 >                    }
187                  }
188 <                addProducerSum(s);
188 >                addProducerSum(ps);
189                  barrier.await();
190              }
191 <            catch (Exception ie) {
192 <                ie.printStackTrace();
193 <                return;
191 >            catch (Exception ie) {
192 >                ie.printStackTrace();
193 >                return;
194              }
195          }
196      }
197  
198      static class Consumer extends Stage {
199 <        Consumer(BlockingQueue<Integer> q, CyclicBarrier b, int iters) {
200 <            super(q, b, iters);
199 >        Consumer(BlockingQueue<Integer> q, CyclicBarrier b, Phaser s,
200 >                 int iters, int lag) {
201 >            super(q, b, s, iters, lag);
202          }
203  
204          public void run() {
205              try {
206                  barrier.await();
207 <                int s = 0;
207 >                int cs = 0;
208 >                int j = 0;
209                  for (int i = 0; i < iters; ++i) {
210 <                    s += queue.take().intValue();
210 >                    Integer v = queue.take();
211 >                    int k = v.intValue();
212 >                    cs += k;
213 >                    if (++j == lag) {
214 >                        j = 0;
215 >                        lagPhaser.arriveAndAwaitAdvance();
216 >                    }
217                  }
218 <                addConsumerSum(s);
218 >                addConsumerSum(cs);
219                  barrier.await();
220              }
221 <            catch (Exception ie) {
222 <                ie.printStackTrace();
223 <                return;
221 >            catch (Exception ie) {
222 >                ie.printStackTrace();
223 >                return;
224              }
225          }
226  
227      }
228  
229 <    static void oneRun(BlockingQueue<Integer> q, int nproducers, int iters) throws Exception {
229 >    static void oneRun(BlockingQueue<Integer> q, int n, int iters) throws Exception {
230 >
231          LoopHelpers.BarrierTimer timer = new LoopHelpers.BarrierTimer();
232 <        CyclicBarrier barrier = new CyclicBarrier(nproducers + 2, timer);
233 <        for (int i = 0; i < nproducers; ++i) {
234 <            pool.execute(new Producer(q, barrier, iters));
232 >        CyclicBarrier barrier = new CyclicBarrier(n + 2, timer);
233 >        Phaser s = new Phaser(n + 1);
234 >        for (int i = 0; i < n; ++i) {
235 >            pool.execute(new Producer(q, barrier, s, iters, LAG));
236          }
237 <        pool.execute(new Consumer(q, barrier, iters * nproducers));
237 >        pool.execute(new Consumer(q, barrier, s, iters * n, LAG * n));
238          barrier.await();
239          barrier.await();
240          long time = timer.getTime();
241          checkSum();
242          if (print)
243 <            System.out.println("\t: " + LoopHelpers.rightJustify(time / (iters * nproducers)) + " ns per transfer");
243 >            System.out.println("\t: " + LoopHelpers.rightJustify(time / (iters * (n + 1))) + " ns per transfer");
244 >    }
245 >
246 >    static final class LTQasSQ<T> extends LinkedTransferQueue<T> {
247 >        LTQasSQ() { super(); }
248 >        public void put(T x) {
249 >            try { super.transfer(x);
250 >            } catch (InterruptedException ex) { throw new Error(); }
251 >        }
252      }
253  
254 +    static final class HalfSyncLTQ<T> extends LinkedTransferQueue<T> {
255 +        int calls;
256 +        HalfSyncLTQ() { super(); }
257 +        public void put(T x) {
258 +            if ((++calls & 1) == 0)
259 +                super.put(x);
260 +            else {
261 +                try { super.transfer(x);
262 +                } catch (InterruptedException ex) {
263 +                    throw new Error();
264 +                }
265 +            }
266 +        }
267 +    }
268   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines