1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
|
/*
* Created on Tuesday, May 03 2011
*/
package com.jogamp.opencl.util.concurrent;
import com.jogamp.opencl.CLCommandQueue;
import com.jogamp.opencl.CLDevice;
import com.jogamp.opencl.CLResource;
import com.jogamp.opencl.util.CLMultiContext;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.concurrent.FutureTask;
import java.util.concurrent.LinkedBlockingDeque;
import java.util.concurrent.RunnableFuture;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
/**
* A multithreaded, fixed size pool of OpenCL command queues.
* CLCommandQueuePool serves as a multiplexer distributing tasks over N queues usually connected to N devices.
* The usage of this pool is similar to {@link ExecutorService} but it uses {@link CLTask}s
* instead of {@link Callable}s and provides a per-queue context for resource sharing across all tasks of one queue.
* @author Michael Bien
*/
public class CLCommandQueuePool implements CLResource {
private ThreadPoolExecutor excecutor;
private FinishAction finishAction = FinishAction.DO_NOTHING;
private boolean released;
private final List<CLCommandQueue> queues;
private CLCommandQueuePool(Collection<CLCommandQueue> queues) {
this.queues = new ArrayList<CLCommandQueue>(queues);
initExecutor();
}
private void initExecutor() {
BlockingQueue<Runnable> queue = new LinkedBlockingDeque<Runnable>();
QueueThreadFactory factory = new QueueThreadFactory(queues);
int size = queues.size();
this.excecutor = new CLThreadPoolExecutor(size, size, 0L, TimeUnit.MILLISECONDS, queue, factory);
}
public static CLCommandQueuePool create(CLMultiContext mc, CLCommandQueue.Mode... modes) {
return create(mc.getDevices(), modes);
}
public static CLCommandQueuePool create(Collection<CLDevice> devices, CLCommandQueue.Mode... modes) {
List<CLCommandQueue> queues = new ArrayList<CLCommandQueue>(devices.size());
for (CLDevice device : devices) {
queues.add(device.createCommandQueue(modes));
}
return create(queues);
}
public static CLCommandQueuePool create(Collection<CLCommandQueue> queues) {
return new CLCommandQueuePool(queues);
}
/**
* Submits this task to the pool for execution returning its {@link Future}.
* @see ExecutorService#submit(java.util.concurrent.Callable)
*/
public <R> Future<R> submit(CLTask<? extends CLQueueContext, R> task) {
return excecutor.submit(wrapTask(task));
}
/**
* Submits all tasks to the pool for execution and returns their {@link Future}.
* Calls {@link #submit(com.jogamp.opencl.util.concurrent.CLTask)} for every task.
*/
public <R> List<Future<R>> submitAll(Collection<? extends CLTask<? extends CLQueueContext, R>> tasks) {
List<Future<R>> futures = new ArrayList<Future<R>>(tasks.size());
for (CLTask<? extends CLQueueContext, R> task : tasks) {
futures.add(submit(task));
}
return futures;
}
/**
* Submits all tasks to the pool for immediate execution (blocking) and returns their {@link Future} holding the result.
* @see ExecutorService#invokeAll(java.util.Collection)
*/
public <R> List<Future<R>> invokeAll(Collection<? extends CLTask<? extends CLQueueContext, R>> tasks) throws InterruptedException {
List<TaskWrapper<R>> wrapper = wrapTasks(tasks);
return excecutor.invokeAll(wrapper);
}
/**
* Submits all tasks to the pool for immediate execution (blocking) and returns their {@link Future} holding the result.
* @see ExecutorService#invokeAll(java.util.Collection, long, java.util.concurrent.TimeUnit)
*/
public <R> List<Future<R>> invokeAll(Collection<? extends CLTask<? extends CLQueueContext, R>> tasks, long timeout, TimeUnit unit) throws InterruptedException {
List<TaskWrapper<R>> wrapper = wrapTasks(tasks);
return excecutor.invokeAll(wrapper, timeout, unit);
}
/**
* Submits all tasks for immediate execution (blocking) until a result can be returned.
* All other unfinished but started tasks are cancelled.
* @see ExecutorService#invokeAny(java.util.Collection)
*/
public <R> R invokeAny(Collection<? extends CLTask<? extends CLQueueContext, R>> tasks) throws InterruptedException, ExecutionException {
List<TaskWrapper<R>> wrapper = wrapTasks(tasks);
return excecutor.invokeAny(wrapper);
}
/*public*/ CLTask<? extends CLQueueContext, ?> takeCLTask() throws InterruptedException {
return ((CLFutureTask<?>)excecutor.getQueue().take()).getCLTask();
}
/**
* Submits all tasks for immediate execution (blocking) until a result can be returned.
* All other unfinished but started tasks are cancelled.
* @see ExecutorService#invokeAny(java.util.Collection, long, java.util.concurrent.TimeUnit)
*/
public <R> R invokeAny(Collection<? extends CLTask<? super CLQueueContext, R>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
List<TaskWrapper<R>> wrapper = wrapTasks(tasks);
return excecutor.invokeAny(wrapper, timeout, unit);
}
<R> TaskWrapper<R> wrapTask(CLTask<? extends CLQueueContext, R> task) {
return new TaskWrapper(task, finishAction);
}
private <R> List<TaskWrapper<R>> wrapTasks(Collection<? extends CLTask<? extends CLQueueContext, R>> tasks) {
List<TaskWrapper<R>> wrapper = new ArrayList<TaskWrapper<R>>(tasks.size());
for (CLTask<? extends CLQueueContext, R> task : tasks) {
if(task == null) {
throw new NullPointerException("at least one task was null");
}
wrapper.add(new TaskWrapper<R>((CLTask<CLQueueContext, R>)task, finishAction));
}
return wrapper;
}
/**
* Calls {@link CLCommandQueue#flush()} on all queues.
*/
public void flushQueues() {
for (CLCommandQueue queue : queues) {
queue.flush();
}
}
/**
* Calls {@link CLCommandQueue#finish()} on all queues.
*/
public void finishQueues() {
for (CLCommandQueue queue : queues) {
queue.finish();
}
}
/**
* Releases the queue context, all queues including a shutdown of the internal threadpool.
* The call will block until all currently executing tasks have finished, no new tasks are started.
*/
@Override
public void release() {
if(released) {
throw new RuntimeException(getClass().getSimpleName()+" already released");
}
released = true;
excecutor.shutdownNow(); // threads will cleanup CL resources on exit
try {
excecutor.awaitTermination(Long.MAX_VALUE, TimeUnit.MILLISECONDS);
} catch (InterruptedException ex) {
throw new RuntimeException(ex);
}
}
ExecutorService getExcecutor() {
return excecutor;
}
/**
* Returns the command queues used in this pool.
*/
public List<CLCommandQueue> getQueues() {
return Collections.unmodifiableList(queues);
}
/**
* Returns the size of this pool (number of command queues).
*/
public int getPoolSize() {
return queues.size();
}
/**
* Returns the action which is executed when a task finishes.
*/
public FinishAction getFinishAction() {
return finishAction;
}
/**
* Returns the approximate total number of tasks that have ever been scheduled for execution.
* Because the states of tasks and threads may change dynamically during computation, the returned
* value is only an approximation.
*/
public long getTaskCount() {
return excecutor.getTaskCount();
}
/**
* Returns the approximate total number of tasks that have completed execution.
* Because the states of tasks and threads may change dynamically during computation,
* the returned value is only an approximation, but one that does not ever decrease across successive calls.
*/
public long getCompletedTaskCount() {
return excecutor.getCompletedTaskCount();
}
/**
* Returns the approximate number of queues that are actively executing tasks.
*/
public int getActiveCount() {
return excecutor.getActiveCount();
}
@Override
public boolean isReleased() {
return released;
}
/**
* Sets the action which is run after every completed task.
* This is mainly intended for debugging, default value is {@link FinishAction#DO_NOTHING}.
*/
public void setFinishAction(FinishAction action) {
this.finishAction = action;
}
@Override
public String toString() {
return getClass().getSimpleName()+" [queues: "+getPoolSize()+" on finish: "+finishAction+"]";
}
private static class QueueThreadFactory implements ThreadFactory {
private final List<CLCommandQueue> queues;
private int index;
private QueueThreadFactory(List<CLCommandQueue> queues) {
this.queues = queues;
this.index = 0;
}
@Override
public synchronized Thread newThread(Runnable runnable) {
SecurityManager sm = System.getSecurityManager();
ThreadGroup group = (sm != null) ? sm.getThreadGroup() : Thread.currentThread().getThreadGroup();
CLCommandQueue queue = queues.get(index);
QueueThread thread = new QueueThread(group, runnable, queue, index++);
thread.setDaemon(true);
return thread;
}
}
private static class QueueThread extends Thread {
private final CLCommandQueue queue;
private final Map<Object, CLQueueContext> contextMap;
public QueueThread(ThreadGroup group, Runnable runnable, CLCommandQueue queue, int index) {
super(group, runnable, "queue-worker-thread-"+index+"["+queue+"]");
this.queue = queue;
this.contextMap = new HashMap<Object, CLQueueContext>();
}
@Override
public void run() {
super.run();
//release threadlocal contexts
queue.finish();
for (CLQueueContext context : contextMap.values()) {
context.release();
}
}
}
private static class TaskWrapper<R> implements Callable<R> {
private final CLTask<CLQueueContext, R> task;
private final FinishAction mode;
private TaskWrapper(CLTask<CLQueueContext, R> task, FinishAction mode) {
this.task = task;
this.mode = mode;
}
@Override
public R call() throws Exception {
QueueThread thread = (QueueThread)Thread.currentThread();
final Object key = task.getContextKey();
CLQueueContext context = thread.contextMap.get(key);
if(context == null) {
context = task.createQueueContext(thread.queue);
thread.contextMap.put(key, context);
}
R result = task.execute(context);
if(mode.equals(FinishAction.FLUSH)) {
context.queue.flush();
}else if(mode.equals(FinishAction.FINISH)) {
context.queue.finish();
}
return result;
}
}
private static class CLFutureTask<R> extends FutureTask<R> {
private final TaskWrapper<R> wrapper;
public CLFutureTask(TaskWrapper<R> wrapper) {
super(wrapper);
this.wrapper = wrapper;
}
public CLTask<? extends CLQueueContext, R> getCLTask() {
return wrapper.task;
}
}
private static class CLThreadPoolExecutor extends ThreadPoolExecutor {
public CLThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) {
super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory);
}
@Override
protected <R> RunnableFuture<R> newTaskFor(Callable<R> callable) {
TaskWrapper<R> wrapper = (TaskWrapper<R>)callable;
return new CLFutureTask<R>(wrapper);
}
}
/**
* The action executed after a task completes.
*/
public enum FinishAction {
/**
* Does nothing, the task is responsible to make sure all computations
* have finished when the task finishes
*/
DO_NOTHING,
/**
* Flushes the queue on task completion.
*/
FLUSH,
/**
* Finishes the queue on task completion.
*/
FINISH
}
}
|