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
|
package com.jogamp.opencl;
import com.jogamp.opencl.util.CLBuildConfiguration;
import com.jogamp.opencl.util.CLBuildListener;
import com.jogamp.opencl.util.CLProgramConfiguration;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* CLProgramBuilder is a helper for building programs with more complex configurations or
* building multiple programs with similar configurations.
* @see CLProgram#prepare()
* @see #createConfiguration()
* @see #createConfiguration(com.jogamp.opencl.CLProgram)
* @see #loadConfiguration(java.io.ObjectInputStream)
* @see #loadConfiguration(java.io.ObjectInputStream, com.jogamp.opencl.CLContext)
* @author Michael Bien
*/
public final class CLProgramBuilder implements CLProgramConfiguration, Serializable {
static final long serialVersionUID = 42;
private static final byte[] NO_BINARIES = new byte[0];
private transient CLProgram program;
private transient Map<CLDevice, byte[]> binariesMap = new LinkedHashMap<CLDevice, byte[]>();
private String source;
private final Set<String> optionSet = new LinkedHashSet<String>();
private final Set<String> defineSet = new LinkedHashSet<String>();
private CLProgramBuilder() {
this(null);
}
private CLProgramBuilder(CLProgram program) {
this(program, null, null);
}
private CLProgramBuilder(CLProgram program, String source, Map<CLDevice, byte[]> map) {
this.program = program;
this.source = source;
if(map != null) {
this.binariesMap.putAll(map);
}
}
/**
* Creates a new CLBuildConfiguration.
*/
public static CLBuildConfiguration createConfiguration() {
return createConfiguration(null);
}
/**
* Creates a new CLProgramConfiguration for this program.
*/
public static CLProgramConfiguration createConfiguration(CLProgram program) {
return new CLProgramBuilder(program);
}
/**
* Loads a CLBuildConfiguration.
* @param ois The ObjectInputStream for reading the object.
*/
public static CLBuildConfiguration loadConfiguration(ObjectInputStream ois) throws IOException, ClassNotFoundException {
return (CLBuildConfiguration) ois.readObject();
}
/**
* Loads a CLProgramConfiguration containing a CLProgram.
* The CLProgram is initialized and ready to be build after this method call.
* This method preferes program initialization from binaries if this fails or if
* no binaries have been found, it will try to load the program from sources. If
* This also fails an appropriate exception will be thrown.
* @param ois The ObjectInputStream for reading the object.
* @param context The context used for program initialization.
*/
public static CLProgramConfiguration loadConfiguration(ObjectInputStream ois, CLContext context) throws IOException, ClassNotFoundException {
CLProgramBuilder config = (CLProgramBuilder) ois.readObject();
if(config.binariesMap.size() > 0 && config.binariesMap.values().iterator().next().length > 0) {
try{
config.program = context.createProgram(config.binariesMap);
}catch(CLException.CLInvalidBinaryException ex) {
if(config.source != null) {
config.program = context.createProgram(config.source);
}else{
throw new IOException("Program configuration contained invalid program binaries and no source.", ex);
}
}
}else if(config.source != null) {
config.program = context.createProgram(config.source);
}else{
throw new IOException("Program configuration did not contain program sources or binaries");
}
return config;
}
@Override
public void save(ObjectOutputStream oos) throws IOException {
if(program != null) {
this.source = program.getSource();
if(program.isExecutable()) {
binariesMap = program.getBinaries();
}
}
oos.writeObject(this);
}
@Override
public CLProgramBuilder withOption(String option) {
optionSet.add(option);
return this;
}
@Override
public CLProgramBuilder withOptions(String... options) {
for (String option : options) {
optionSet.add(option);
}
return this;
}
@Override
public CLProgramBuilder withDefine(String name) {
defineSet.add(CLProgram.define(name));
return this;
}
@Override
public CLProgramBuilder withDefines(String... names) {
for (String name : names) {
defineSet.add(CLProgram.define(name));
}
return this;
}
@Override
public CLProgramBuilder withDefine(String name, Object value) {
defineSet.add(CLProgram.define(name, value.toString()));
return this;
}
@Override
public CLProgramBuilder withDefines(Map<String, ? extends Object> defines) {
for (String name : defines.keySet()) {
defineSet.add(CLProgram.define(name, defines.get(name)));
}
return this;
}
@Override
public CLProgramBuilder forDevice(CLDevice device) {
binariesMap.put(device, NO_BINARIES);
return this;
}
@Override
public CLProgramBuilder forDevices(CLDevice... devices) {
for (CLDevice device : devices) {
binariesMap.put(device, NO_BINARIES);
}
return this;
}
@Override
public CLProgram build() {
return build(program, null);
}
@Override
public CLProgram build(CLBuildListener listener) {
return build(program, listener);
}
@Override
public CLProgram build(CLProgram program) {
return build(program, null);
}
@Override
public CLProgram build(CLProgram program, CLBuildListener listener) {
if(program == null) {
throw new NullPointerException("no program has been set");
}
List<String> setup = new ArrayList<String>();
setup.addAll(optionSet);
setup.addAll(defineSet);
String options = CLProgram.optionsOf(setup.toArray(new String[setup.size()]));
CLDevice[] devices = binariesMap.keySet().toArray(new CLDevice[binariesMap.size()]);
return program.build(listener, options, devices);
}
@Override
public CLProgramBuilder reset() {
resetOptions();
resetDefines();
resetDevices();
return this;
}
@Override
public CLProgramConfiguration resetDefines() {
defineSet.clear();
return this;
}
@Override
public CLProgramConfiguration resetDevices() {
binariesMap.clear();
return this;
}
@Override
public CLProgramConfiguration resetOptions() {
optionSet.clear();
return this;
}
private void writeObject(ObjectOutputStream out) throws IOException {
out.defaultWriteObject();
out.writeInt(binariesMap.size());
for (CLDevice device : binariesMap.keySet()) {
byte[] binaries = binariesMap.get(device);
out.writeLong(device.ID);
out.writeInt(binaries.length);
out.write(binaries);
}
}
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
in.defaultReadObject();
this.binariesMap = new LinkedHashMap<CLDevice, byte[]>();
int mapSize = in.readInt();
for (int i = 0; i < mapSize; i++) {
long deviceID = in.readLong();
int length = in.readInt();
byte[] binaries = new byte[length];
in.readFully(binaries);
CLDevice device = new CLDevice(CLPlatform.getLowLevelCLInterface(), deviceID);
binariesMap.put(device, binaries);
}
}
@Override
public CLProgramBuilder asBuildConfiguration() {
CLProgramBuilder builder = new CLProgramBuilder();
builder.defineSet.addAll(defineSet);
builder.optionSet.addAll(optionSet);
return builder;
}
@Override
public CLProgramBuilder clone() {
CLProgramBuilder builder = new CLProgramBuilder(program, source, binariesMap);
builder.defineSet.addAll(defineSet);
builder.optionSet.addAll(optionSet);
return builder;
}
public CLProgram getProgram() {
return program;
}
public CLProgramBuilder setProgram(CLProgram program) {
this.program = program;
return this;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append("CLProgramBuilder");
sb.append("{options=").append(optionSet);
sb.append(", defines=").append(defineSet);
sb.append(", devices=").append(binariesMap);
sb.append('}');
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CLProgramBuilder that = (CLProgramBuilder) o;
if (source != null ? !source.equals(that.source) : that.source != null) return false;
if (defineSet != null ? !defineSet.equals(that.defineSet) : that.defineSet != null) return false;
if (optionSet != null ? !optionSet.equals(that.optionSet) : that.optionSet != null) return false;
if(binariesMap != null && that.binariesMap != null) {
if(binariesMap.size() != that.binariesMap.size()) {
return false;
}
Iterator<CLDevice> iterator0 = binariesMap.keySet().iterator();
Iterator<CLDevice> iterator1 = that.binariesMap.keySet().iterator();
for (int i = 0; i < binariesMap.size(); i++) {
CLDevice device0 = iterator0.next();
CLDevice device1 = iterator1.next();
if(!device0.equals(device1) || !Arrays.equals(binariesMap.get(device0), that.binariesMap.get(device1)))
return false;
}
}else if(binariesMap != null || that.binariesMap != null) {
return false;
}
return true;
}
@Override
public int hashCode() {
int result = optionSet != null ? optionSet.hashCode() : 0;
result = 31 * result + (defineSet != null ? defineSet.hashCode() : 0);
result = 31 * result + (binariesMap != null ? binariesMap.hashCode() : 0);
return result;
}
}
|