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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
|
/*
* Copyright (c) 2009 JogAmp Community. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of JogAmp Community.
*/
package com.jogamp.opencl;
import com.jogamp.common.nio.AbstractBuffer;
import com.jogamp.common.nio.CachedBufferFactory;
import com.jogamp.opencl.util.CLProgramConfiguration;
import com.jogamp.opencl.util.CLUtil;
import com.jogamp.common.os.Platform;
import com.jogamp.common.nio.PointerBuffer;
import com.jogamp.opencl.llb.CL;
import com.jogamp.opencl.llb.impl.BuildProgramCallback;
import com.jogamp.opencl.util.CLBuildListener;
import java.nio.ByteBuffer;
import java.nio.IntBuffer;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.Map.Entry;
import java.util.Set;
import java.util.Map;
import java.util.concurrent.Semaphore;
import static com.jogamp.opencl.CLException.*;
import static com.jogamp.opencl.llb.CL.*;
import static com.jogamp.common.nio.Buffers.*;
/**
* Represents a OpenCL program executed on one or more {@link CLDevice}s.
* A CLProgram must be build using one of the build methods before creating {@link CLKernel}s.
* @see CLContext#createProgram(java.io.InputStream)
* @see CLContext#createProgram(java.lang.String)
* @see CLContext#createProgram(java.util.Map)
* @author Michael Bien, et al.
*/
public class CLProgram extends CLObjectResource {
// must use a semaphore instead of a reentrant lock because the CL implementation can call
// our notifier function from a different thread than the one that calls clBuildProgram
private final static Semaphore buildLock = new Semaphore(1, true);
private final CL binding;
private final Set<CLKernel> kernels;
private Map<CLDevice, Status> buildStatusMap;
private boolean executable;
private boolean released;
/** Set if program created from binary, or else getting source can crash the driver on Macs. */
private boolean noSource;
private CLProgram(final CLContext context, final long id) {
super(context, id);
this.kernels = new HashSet<CLKernel>();
this.binding = context.getPlatform().getCLBinding();
}
static CLProgram create(final CLContext context, final String src) {
final IntBuffer status = newDirectIntBuffer(1);
final PointerBuffer length = PointerBuffer.allocateDirect(1).put(0, src.length());
final String[] srcArray = new String[] {src};
// Create the program
final CL binding = context.getPlatform().getCLBinding();
final long id = binding.clCreateProgramWithSource(context.ID, 1, srcArray, length, status);
final int err = status.get();
if(err != CL_SUCCESS) {
throw newException(err, "can not create program with source on "+context);
}
return new CLProgram(context, id);
}
static CLProgram create(final CLContext context, final Map<CLDevice, byte[]> binaries) {
final Set<Entry<CLDevice, byte[]>> entries = binaries.entrySet();
// calculate buffer size
int binarySize = 0;
for (final Map.Entry<CLDevice, byte[]> entry : entries) {
binarySize += entry.getValue().length;
}
final int pbSize = AbstractBuffer.POINTER_SIZE;
final int deviceCount = binaries.size();
final CachedBufferFactory bf = CachedBufferFactory.create(binarySize + pbSize*deviceCount*3 + 4, true);
final PointerBuffer devices = PointerBuffer.wrap(bf.newDirectByteBuffer(deviceCount*pbSize));
final PointerBuffer codeBuffers = PointerBuffer.wrap(bf.newDirectByteBuffer(deviceCount*pbSize));
final PointerBuffer lengths = PointerBuffer.wrap(bf.newDirectByteBuffer(deviceCount*pbSize));
int i = 0;
for (final Map.Entry<CLDevice, byte[]> entry : entries) {
final byte[] bytes = entry.getValue();
final CLDevice device = entry.getKey();
devices.put(device.ID);
lengths.put(bytes.length);
codeBuffers.referenceBuffer(i, bf.newDirectByteBuffer(bytes));
i++;
}
devices.rewind();
lengths.rewind();
final IntBuffer errBuffer = bf.newDirectIntBuffer(1);
// IntBuffer status = newDirectByteBuffer(binaries.size()*4).asIntBuffer();
final CL binding = context.getPlatform().getCLBinding();
final long id = binding.clCreateProgramWithBinary(context.ID, devices.capacity(), devices, lengths, codeBuffers, /*status*/null, errBuffer);
// while(status.remaining() != 0) {
// checkForError(status.get(), "unable to load binaries on all devices");
// }
final int err = errBuffer.get();
if(err != CL_SUCCESS) {
throw newException(err, "can not create program on "+context +" with binaries "+binaries);
}
return new CLProgram(context, id);
}
private void initBuildStatus() {
if(buildStatusMap == null) {
final Map<CLDevice, Status> map = new HashMap<CLDevice, Status>();
final CLDevice[] devices = getCLDevices();
for (final CLDevice device : devices) {
final Status status = getBuildStatus(device);
if(status == Status.BUILD_SUCCESS) {
executable = true;
}
map.put(device, status);
}
this.buildStatusMap = Collections.unmodifiableMap(map);
}
}
private String getBuildInfoString(final CLDevice device, final int flag) {
if(released) {
return "";
}
final PointerBuffer size = PointerBuffer.allocateDirect(1);
int ret = binding.clGetProgramBuildInfo(ID, device.ID, flag, 0, null, size);
if(ret != CL_SUCCESS) {
throw newException(ret, "on clGetProgramBuildInfo with "+device);
}
final ByteBuffer buffer = newDirectByteBuffer((int)size.get(0));
ret = binding.clGetProgramBuildInfo(ID, device.ID, flag, buffer.capacity(), buffer, null);
if(ret != CL_SUCCESS) {
throw newException(ret, "on clGetProgramBuildInfo with "+device);
}
return CLUtil.clString2JavaString(buffer, (int)size.get(0));
}
private String getProgramInfoString(final int flag) {
if(released) {
return "";
}
final PointerBuffer size = PointerBuffer.allocateDirect(1);
int ret = binding.clGetProgramInfo(ID, flag, 0, null, size);
checkForError(ret, "on clGetProgramInfo");
final ByteBuffer buffer = newDirectByteBuffer((int)size.get(0));
ret = binding.clGetProgramInfo(ID, flag, buffer.capacity(), buffer, null);
checkForError(ret, "on clGetProgramInfo");
return CLUtil.clString2JavaString(buffer, (int)size.get(0));
}
private int getBuildInfoInt(final CLDevice device, final int flag) {
final ByteBuffer buffer = newDirectByteBuffer(4);
final int ret = binding.clGetProgramBuildInfo(ID, device.ID, flag, buffer.capacity(), buffer, null);
checkForError(ret, "error on clGetProgramBuildInfo");
return buffer.getInt();
}
/**
* Builds this program for all devices associated with the context.
* @return this
*/
public CLProgram build() {
build(null, (String)null, (CLDevice[]) null);
return this;
}
/**
* Builds this program for all devices associated with the context.
* @see CLBuildListener
* @param listener A listener who is notified when the program was built.
* @return this
*/
public CLProgram build(final CLBuildListener listener) {
build(listener, null, (CLDevice[])null);
return this;
}
/**
* Builds this program for the given devices.
* @param devices A list of devices this program should be build on or null for all devices of its context.
* @return this
*/
public CLProgram build(final CLDevice... devices) {
build(null, (String) null, devices);
return this;
}
/**
* Builds this program for the given devices.
* @see CLBuildListener
* @param listener A listener who is notified when the program was built.
* @param devices A list of devices this program should be build on or null for all devices of its context.
* @return this
*/
public CLProgram build(final CLBuildListener listener, final CLDevice... devices) {
build(listener,null, devices);
return this;
}
/**
* Builds this program for all devices associated with the context using the specified build options.
* @see CompilerOptions
* @return this
*/
public CLProgram build(final String options) {
build(null, options, (CLDevice[])null);
return this;
}
/**
* Builds this program for all devices associated with the context using the specified build options.
* @see CompilerOptions
* @see CLBuildListener
* @param listener A listener who is notified when the program was built.
* @return this
*/
public CLProgram build(final CLBuildListener listener, final String options) {
build(listener, options, (CLDevice[])null);
return this;
}
/**
* Builds this program for all devices associated with the context using the specified build options.
* @see CompilerOptions
*/
public CLProgram build(final String... options) {
build(null, optionsOf(options), (CLDevice[])null);
return this;
}
/**
* Builds this program for all devices associated with the context using the specified build options.
* @see CompilerOptions
* @see CLBuildListener
* @param listener A listener who is notified when the program was built.
*/
public CLProgram build(final CLBuildListener listener, final String... options) {
build(listener, optionsOf(options), (CLDevice[])null);
return this;
}
/**
* Builds this program for the given devices and with the specified build options. In case this program was
* already built and there are kernels associated with this program they will be released first before rebuild.
* @see CompilerOptions
* @param devices A list of devices this program should be build on or null for all devices of its context.
* @return this
*/
public CLProgram build(final String options, final CLDevice... devices) {
build(null, options, devices);
return this;
}
/**
* Builds this program for the given devices and with the specified build options. In case this program was
* already built and there are kernels associated with this program they will be released first before rebuild.
* @see CompilerOptions
* @see CLBuildListener
* @return this
* @param devices A list of devices this program should be build on or null for all devices of its context.
* @param listener A listener who is notified when the program was built.
*/
public CLProgram build(final CLBuildListener listener, String options, final CLDevice... devices) {
if(released) {
throw new CLException("can not build a released program");
}
if(!kernels.isEmpty()) {
//No changes to the program executable are allowed while there are
//kernel objects associated with a program object.
releaseKernels();
}
PointerBuffer deviceIDs = null;
int count = 0;
if(devices != null && devices.length != 0) {
deviceIDs = PointerBuffer.allocateDirect(devices.length);
for (int i = 0; i < devices.length; i++) {
deviceIDs.put(i, devices[i].ID);
}
deviceIDs.rewind();
count = devices.length;
}
// nvidia driver doesn't like empty strings
if(options != null && options.trim().isEmpty()) {
options = null;
}
// invalidate build status
buildStatusMap = null;
executable = false;
BuildProgramCallback callback = null;
if(listener != null) {
callback = new BuildProgramCallback() {
@Override
public void buildFinished(final long cl_program) {
buildLock.release();
listener.buildFinished(CLProgram.this);
}
};
}
// Build the program
int ret = 0;
// spec: building programs is not threadsafe, we are locking the API call to
// make sure only one thread calls it at a time until it completes (asynchronous or synchronously).
{
try {
buildLock.acquire();
} catch(final InterruptedException e) {
throw newException(ret, "\nInterrupted while waiting to get build lock");
}
boolean exception = true;
try{
ret = binding.clBuildProgram(ID, count, deviceIDs, options, callback);
exception = false;
}finally{
if(callback == null || exception) {
buildLock.release();
}
}
}
if(ret != CL_SUCCESS) {
throw newException(ret, "\n"+getBuildLog());
}
return this;
}
/**
* Prepares the build for this program by returning a new {@link CLProgramConfiguration}.
*/
public CLProgramConfiguration prepare() {
return CLProgramBuilder.createConfiguration(this);
}
/**
* Creates a kernel with the specified kernel name.
*/
public CLKernel createCLKernel(final String kernelName) {
if(released) {
return null;
}
final int[] err = new int[1];
final long id = binding.clCreateKernel(ID, kernelName, err, 0);
if(err[0] != CL_SUCCESS) {
throw newException(err[0], "unable to create Kernel with name: "+kernelName);
}
final CLKernel kernel = new CLKernel(this, kernelName, id);
kernels.add(kernel);
return kernel;
}
/**
* Creates all kernels of this program and stores them a Map with the kernel name as key.
*/
public Map<String, CLKernel> createCLKernels() {
if(released) {
return Collections.emptyMap();
}
final HashMap<String, CLKernel> newKernels = new HashMap<String, CLKernel>();
final IntBuffer numKernels = newDirectByteBuffer(4).asIntBuffer();
int ret = binding.clCreateKernelsInProgram(ID, 0, null, numKernels);
if(ret != CL_SUCCESS) {
throw newException(ret, "can not create kernels for "+this);
}
if(numKernels.get(0) > 0) {
final PointerBuffer kernelIDs = PointerBuffer.allocateDirect(numKernels.get(0));
ret = binding.clCreateKernelsInProgram(ID, kernelIDs.capacity(), kernelIDs, null);
if(ret != CL_SUCCESS) {
throw newException(ret, "can not create "+kernelIDs.capacity()+" kernels for "+this);
}
for (int i = 0; i < kernelIDs.capacity(); i++) {
final CLKernel kernel = new CLKernel(this, kernelIDs.get(i));
kernels.add(kernel);
newKernels.put(kernel.name, kernel);
}
}else{
initBuildStatus();
if(!isExecutable()) {
// It is illegal to create kernels from a not executable program.
// For consistency between AMD and NVIDIA drivers throw an exception at this point.
throw newException(CL_INVALID_PROGRAM_EXECUTABLE,
"can not initialize kernels, program is not executable. status: "+buildStatusMap);
}
}
return newKernels;
}
void onKernelReleased(final CLKernel kernel) {
this.kernels.remove(kernel);
}
/**
* Releases this program with its kernels.
*/
@Override
public void release() {
super.release();
releaseKernels();
executable = false;
released = true;
buildStatusMap = null;
final int ret = binding.clReleaseProgram(ID);
context.onProgramReleased(this);
if(ret != CL_SUCCESS) {
throw newException(ret, "can not release "+this);
}
}
private void releaseKernels() {
if(!kernels.isEmpty()) {
// copy to array to prevent concurrent modification exception
final CLKernel[] array = kernels.toArray(new CLKernel[kernels.size()]);
for (final CLKernel kernel : array) {
kernel.release();
}
}
}
/**
* Returns all devices associated with this program.
*/
public CLDevice[] getCLDevices() {
if(released) {
return new CLDevice[0];
}
final PointerBuffer size = PointerBuffer.allocateDirect(1);
int ret = binding.clGetProgramInfo(ID, CL_PROGRAM_DEVICES, 0, null, size);
if(ret != CL_SUCCESS) {
throw newException(ret, "on clGetProgramInfo of "+this);
}
final ByteBuffer bb = newDirectByteBuffer((int) size.get(0));
ret = binding.clGetProgramInfo(ID, CL_PROGRAM_DEVICES, bb.capacity(), bb, null);
if(ret != CL_SUCCESS) {
throw newException(ret, "on clGetProgramInfo of "+this);
}
final int count = bb.capacity() / (Platform.is32Bit()?4:8);
final CLDevice[] devices = new CLDevice[count];
for (int i = 0; i < count; i++) {
devices[i] = context.getDevice(Platform.is32Bit()?bb.getInt():bb.getLong());
}
return devices;
}
/**
* Returns the build log of this program on all devices. The contents of the log are
* implementation dependent.
*/
public String getBuildLog() {
if(released) {
return "";
}
final StringBuilder sb = new StringBuilder(200);
final CLDevice[] devices = getCLDevices();
for (int i = 0; i < devices.length; i++) {
final CLDevice device = devices[i];
sb.append(device).append(" build log:\n");
final String log = getBuildLog(device).trim();
sb.append(log.isEmpty()?" <empty>":log);
if(i != devices.length-1)
sb.append("\n");
}
return sb.toString();
}
/**
* Returns the build status enum of this program for each device as Map.
*/
public Map<CLDevice,Status> getBuildStatus() {
if(released) {
return Collections.emptyMap();
}
initBuildStatus();
return buildStatusMap;
}
/**
* Returns true if the build status 'BUILD_SUCCESS' for at least one device
* of this program exists.
*/
public boolean isExecutable() {
if(released) {
return false;
}
initBuildStatus();
return executable;
}
/**
* Returns the build log for this program on the specified device. The contents
* of the log are implementation dependent log can be an empty String.
*/
public String getBuildLog(final CLDevice device) {
return getBuildInfoString(device, CL_PROGRAM_BUILD_LOG);
}
/**
* Returns the build status enum for this program on the specified device.
*/
public Status getBuildStatus(final CLDevice device) {
if(released) {
return Status.BUILD_NONE;
}
final int clStatus = getBuildInfoInt(device, CL_PROGRAM_BUILD_STATUS);
return Status.valueOf(clStatus);
}
/**
* Must set this if the program is created from binary so we know not to call getSource(),
* which can SIGSEGV on Macs if there is no source.
*/
public void setNoSource() {
noSource = true;
}
/**
* Returns the source code of this program. Note: sources are not cached,
* each call of this method calls into Open
*/
public String getSource() {
if(noSource)
return "";
// some drivers return IVE codes if the program haven't been built from source.
try{
return getProgramInfoString(CL_PROGRAM_SOURCE);
}catch(final CLException.CLInvalidValueException ingore) {
return "";
}
}
/**
* Returns the binaries for this program in an ordered Map containing the device as key
* and the program binaries as value.
*/
public Map<CLDevice, byte[]> getBinaries() {
if(!isExecutable()) {
return Collections.emptyMap();
}
final CLDevice[] devices = getCLDevices();
final PointerBuffer sizes = PointerBuffer.allocateDirect(devices.length);
int ret = binding.clGetProgramInfo(ID, CL_PROGRAM_BINARY_SIZES, sizes.capacity()*sizes.elementSize(), sizes.getBuffer(), null);
if(ret != CL_SUCCESS) {
throw newException(ret, "on clGetProgramInfo(CL_PROGRAM_BINARY_SIZES) of "+this);
}
int binariesSize = 0;
while(sizes.remaining() != 0) {
final int size = (int) sizes.get();
binariesSize += size;
}
final ByteBuffer binaries = newDirectByteBuffer(binariesSize);
long address = InternalBufferUtil.getDirectBufferAddress(binaries);
final PointerBuffer addresses = PointerBuffer.allocateDirect(sizes.capacity());
sizes.rewind();
while(sizes.remaining() != 0) {
addresses.put(address);
address += sizes.get();
}
addresses.rewind();
ret = binding.clGetProgramInfo(ID, CL_PROGRAM_BINARIES, addresses.capacity()*addresses.elementSize(), addresses.getBuffer(), null);
if(ret != CL_SUCCESS) {
throw newException(ret, "on clGetProgramInfo(CL_PROGRAM_BINARIES) of "+this);
}
final Map<CLDevice, byte[]> map = new LinkedHashMap<CLDevice, byte[]>();
sizes.rewind();
for (int i = 0; i < devices.length; i++) {
final byte[] bytes = new byte[(int)sizes.get()];
binaries.get(bytes);
map.put(devices[i], bytes);
}
return map;
}
/**
* Utility method which builds a properly seperated option string.
*/
public static String optionsOf(final String... options) {
final StringBuilder sb = new StringBuilder(options.length * 24);
for (int i = 0; i < options.length; i++) {
sb.append(options[i]);
if(i!= options.length-1)
sb.append(" ");
}
return sb.toString();
}
/**
* Utility method for defining macros as build options (Returns "-D name").
*/
public static String define(final String name) {
return "-D "+name;
}
/**
* Utility method for defining macros as build options (Returns "-D name=value").
*/
public static String define(final String name, final Object value) {
return "-D "+name+"="+value;
}
@Override
public String toString() {
return "CLProgram [id: " + ID
+ " status: "+getBuildStatus()+"]";
}
@Override
public boolean equals(final Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final CLProgram other = (CLProgram) obj;
if (this.ID != other.ID) {
return false;
}
if (!this.context.equals(other.context)) {
return false;
}
return true;
}
@Override
public int hashCode() {
int hash = 7;
hash = 37 * hash + (this.context != null ? this.context.hashCode() : 0);
hash = 37 * hash + (int) (this.ID ^ (this.ID >>> 32));
return hash;
}
public enum Status {
BUILD_SUCCESS(CL_BUILD_SUCCESS),
BUILD_NONE(CL_BUILD_NONE),
BUILD_IN_PROGRESS(CL_BUILD_IN_PROGRESS),
BUILD_ERROR(CL_BUILD_ERROR);
/**
* Value of wrapped OpenCL device type.
*/
public final int STATUS;
private Status(final int status) {
this.STATUS = status;
}
public static Status valueOf(final int clBuildStatus) {
switch(clBuildStatus) {
case(CL_BUILD_SUCCESS):
return BUILD_SUCCESS;
case(CL_BUILD_NONE):
return BUILD_NONE;
case(CL_BUILD_IN_PROGRESS):
return BUILD_IN_PROGRESS;
case(CL_BUILD_ERROR):
return BUILD_ERROR;
// is this a standard state?
// case (CL_BUILD_PROGRAM_FAILURE):
// return BUILD_PROGRAM_FAILURE;
}
return null;
}
}
/**
* Common compiler options for the OpenCL compiler.
*/
public interface CompilerOptions {
/**
* Treat double precision floating-point constant as single precision constant.
*/
public final static String SINGLE_PRECISION_CONSTANTS = "-cl-single-precision-constant";
/**
* This option controls how single precision and double precision denormalized numbers are handled.
* If specified as a build option, the single precision denormalized numbers may be flushed to zero
* and if the optional extension for double precision is supported, double precision denormalized numbers
* may also be flushed to zero. This is intended to be a performance hint and the OpenCL compiler can choose
* not to flush denorms to zero if the device supports single precision (or double precision) denormalized numbers.<br>
* This option is ignored for single precision numbers if the device does not support single precision denormalized
* numbers i.e. {@link CLDevice.FPConfig#DENORM} is not present in the set returned by {@link CLDevice#getSingleFPConfig()}<br>
* This option is ignored for double precision numbers if the device does not support double precision or if it does support
* double precision but {@link CLDevice.FPConfig#DENORM} is not present in the set returned by {@link CLDevice#getDoubleFPConfig()}.<br>
* This flag only applies for scalar and vector single precision floating-point variables and computations on
* these floating-point variables inside a program. It does not apply to reading from or writing to image objects.
*/
public final static String DENORMS_ARE_ZERO = "-cl-denorms-are-zero";
/**
* This option disables all optimizations. The default is optimizations are enabled.
*/
public final static String DISABLE_OPT = "-cl-opt-disable";
/**
* This option allows the compiler to assume the strictest aliasing rules.
*/
public final static String STRICT_ALIASING = "-cl-strict-aliasing";
/**
* Allow a * b + c to be replaced by a mad. The mad computes a * b + c with reduced accuracy.
* For example, some OpenCL devices implement mad as truncate the result of a * b before adding it to c.
*/
public final static String ENABLE_MAD = "-cl-mad-enable";
/**
* Allow optimizations for floating-point arithmetic that ignore the signedness of zero.
* IEEE 754 arithmetic specifies the behavior of distinct +0.0 and -0.0 values, which then prohibits
* simplification of expressions such as x+0.0 or 0.0*x (even with -cl-finite-math-only ({@link #FINITE_MATH_ONLY})).
* This option implies that the sign of a zero result isn't significant.
*/
public final static String NO_SIGNED_ZEROS = "-cl-no-signed-zeros";
/**
* Allow optimizations for floating-point arithmetic that<br>
* (a) assume that arguments and results are valid,<br>
* (b) may violate IEEE 754 standard and<br>
* (c) may violate the OpenCL numerical compliance requirements as defined in section
* 7.4 for single-precision floating-point, section 9.3.9 for double-precision floating-point,
* and edge case behavior in section 7.5.
* This option includes the -cl-no-signed-zeros ({@link #NO_SIGNED_ZEROS})
* and -cl-mad-enable ({@link #ENABLE_MAD}) options.
*/
public final static String UNSAFE_MATH = "-cl-unsafe-math-optimizations";
/**
* Allow optimizations for floating-point arithmetic that assume that arguments and results are not NaNs or plus/minus infinity.
* This option may violate the OpenCL numerical compliance requirements defined in in section 7.4 for
* single-precision floating-point, section 9.3.9 for double-precision floating-point, and edge case behavior in section 7.5.
*/
public final static String FINITE_MATH_ONLY = "-cl-finite-math-only";
/**
* Sets the optimization options -cl-finite-math-only ({@link #FINITE_MATH_ONLY}) and -cl-unsafe-math-optimizations ({@link #UNSAFE_MATH}).
* This allows optimizations for floating-point arithmetic that may violate the IEEE 754
* standard and the OpenCL numerical compliance requirements defined in the specification
* in section 7.4 for single-precision floating-point, section 9.3.9 for double-precision
* floating-point, and edge case behavior in section 7.5. This option causes the preprocessor
* macro __FAST_RELAXED_MATH__ to be defined in the OpenCL program.
*/
public final static String FAST_RELAXED_MATH = "-cl-fast-relaxed-math";
/**
* Inhibit all warning messages.
*/
public final static String DISABLE_WARNINGS = "-w";
/**
* Make all warnings into errors.
*/
public final static String WARNINGS_ARE_ERRORS = "-Werror";
}
}
|