blob: 58f389bfa465c33cbd8c95a14aecab1e8dd5eb86 (
plain)
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
|
/*
* Created onSaturday, May 07 2011 00:40
*/
package com.jogamp.opencl.util.concurrent;
import com.jogamp.opencl.CLCommandQueue;
import com.jogamp.opencl.CLProgram;
import com.jogamp.opencl.util.concurrent.CLQueueContext.CLSimpleQueueContext;
/**
* Creates {@link CLQueueContext}s.
* @author Michael Bien
*/
public abstract class CLQueueContextFactory<C extends CLQueueContext> {
/**
* Creates a new queue context for the given queue.
* @param old the old context or null.
*/
public abstract C setup(CLCommandQueue queue, CLQueueContext old);
/**
* Creates a simple context factory producing single program contexts.
* @param source sourcecode of a OpenCL program.
*/
public static CLSimpleContextFactory createSimple(String source) {
return new CLSimpleContextFactory(source);
}
/**
* Creates {@link CLSimpleQueueContext}s containing a precompiled program.
* @author Michael Bien
*/
public static class CLSimpleContextFactory extends CLQueueContextFactory<CLSimpleQueueContext> {
private final String source;
public CLSimpleContextFactory(String source) {
this.source = source;
}
@Override
public CLSimpleQueueContext setup(CLCommandQueue queue, CLQueueContext old) {
CLProgram program = queue.getContext().createProgram(source).build(queue.getDevice());
return new CLSimpleQueueContext(queue, program);
}
}
}
|