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
|
/*
* 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.opencl.impl.CLTLInfoAccessor;
import com.jogamp.opencl.llb.CLEventBinding;
import com.jogamp.opencl.llb.impl.CLEventCallback;
import com.jogamp.common.nio.PointerBuffer;
import java.nio.Buffer;
import static com.jogamp.opencl.llb.CL.*;
import static com.jogamp.opencl.CLException.*;
/**
* Event objects can be used for synchronizing command queues, e.g you can wait until a
* event occurs or they can also be used to capture profiling information that
* measure execution time of a command.
* Profiling of OpenCL commands can be enabled by using a {@link com.jogamp.opencl.CLCommandQueue} created with
* {@link com.jogamp.opencl.CLCommandQueue.Mode#PROFILING_MODE}.
* @author Michael Bien, et al.
*/
public class CLEvent extends CLObjectResource {
private final CLEventInfoAccessor eventInfo;
private final CLEventProfilingInfoAccessor eventProfilingInfo;
private final CLEventBinding binding;
CLEvent(CLContext context, long id) {
super(context, id);
binding = context.getPlatform().getEventBinding();
this.eventInfo = new CLEventInfoAccessor();
this.eventProfilingInfo = new CLEventProfilingInfoAccessor();
}
/**
* Registers a callback which will be called when the event terminates (COMPLETE or ERROR).
*/
public void registerCallback(final CLEventListener callback) {
this.registerCallback(callback, ExecutionStatus.COMPLETE);
}
// apparently only ExecutionStatus.COMPLETE is allowed -> private
private void registerCallback(final CLEventListener callback, ExecutionStatus trigger) {
binding.clSetEventCallback(ID, trigger.STATUS, new CLEventCallback() {
@Override public void eventStateChanged(long event, int status) {
callback.eventStateChanged(CLEvent.this, status);
}
});
}
@Override
public void release() {
super.release();
int ret = binding.clReleaseEvent(ID);
checkForError(ret, "can not release event");
}
/**
* Returns the execution status of the command which triggers this event.
*/
public ExecutionStatus getStatus() {
return ExecutionStatus.valueOf(getStatusCode());
}
/**
* Returns true only if {@link #getStatus} returns {@link ExecutionStatus#COMPLETE}.
*/
public boolean isComplete() {
return ExecutionStatus.COMPLETE.equals(getStatus());
}
public int getStatusCode() {
return (int)eventInfo.getLong(CL_EVENT_COMMAND_EXECUTION_STATUS);
}
public CommandType getType() {
int status = (int)eventInfo.getLong(CL_EVENT_COMMAND_TYPE);
return CommandType.valueOf(status);
}
public long getProfilingInfo(ProfilingCommand command) {
return eventProfilingInfo.getLong(command.COMMAND);
}
@Override
public String toString() {
return getClass().getSimpleName()+" [id: " + ID
+ " name: " + getType()
+ " status: " + getStatus()+"]";
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final CLEvent other = (CLEvent) obj;
if (this.context != other.context && (this.context == null || !this.context.equals(other.context))) {
return false;
}
if (this.ID != other.ID) {
return false;
}
return true;
}
@Override
public int hashCode() {
int hash = 5;
hash = 13 * hash + (this.context != null ? this.context.hashCode() : 0);
hash = 13 * hash + (int) (this.ID ^ (this.ID >>> 32));
return hash;
}
private class CLEventInfoAccessor extends CLTLInfoAccessor {
@Override
protected int getInfo(int name, long valueSize, Buffer value, PointerBuffer valueSizeRet) {
return binding.clGetEventInfo(ID, name, valueSize, value, valueSizeRet);
}
}
private class CLEventProfilingInfoAccessor extends CLTLInfoAccessor {
@Override
protected int getInfo(int name, long valueSize, Buffer value, PointerBuffer valueSizeRet) {
return binding.clGetEventProfilingInfo(ID, name, valueSize, value, valueSizeRet);
}
}
// TODO merge with ExecutionStatus?
public enum ProfilingCommand {
/**
* A 64-bit value that describes the current device time counter in nanoseconds
* when the command identified by event is enqueued in a command-queue by the host.
*/
QUEUED(CL_PROFILING_COMMAND_QUEUED),
/**
* A 64-bit value that describes the current device time counter in nanoseconds when
* the command identified by event that has been enqueued is submitted by the host to
* the device associated with the commandqueue.
*/
SUBMIT(CL_PROFILING_COMMAND_SUBMIT),
/**
* A 64-bit value that describes the current device time counter in nanoseconds when
* the command identified by event starts execution on the device.
*/
START(CL_PROFILING_COMMAND_START),
/**
* A 64-bit value that describes the current device time counter in nanoseconds when
* the command identified by event has finished execution on the device.
*/
END(CL_PROFILING_COMMAND_END);
/**
* Value of wrapped OpenCL profiling command.
*/
public final int COMMAND;
private ProfilingCommand(int command) {
this.COMMAND = command;
}
public static ProfilingCommand valueOf(int status) {
switch(status) {
case(CL_PROFILING_COMMAND_QUEUED):
return QUEUED;
case(CL_PROFILING_COMMAND_SUBMIT):
return SUBMIT;
case(CL_PROFILING_COMMAND_START):
return START;
case(CL_PROFILING_COMMAND_END):
return END;
}
return null;
}
}
public enum ExecutionStatus {
/**
* Command has been enqueued in the command-queue.
*/
QUEUED(CL_QUEUED),
/**
* Enqueued command has been submitted by the host to the device
* associated with the command-queue.
*/
SUBMITTED(CL_SUBMITTED),
/**
* Device is currently executing this command.
*/
RUNNING(CL_RUNNING),
/**
* The command has completed.
*/
COMPLETE(CL_COMPLETE),
/**
* The command did not complete because of an error.
*/
ERROR(-1);
/**
* Value of wrapped OpenCL command execution status.
*/
public final int STATUS;
private ExecutionStatus(int status) {
this.STATUS = status;
}
public static ExecutionStatus valueOf(int status) {
switch(status) {
case(CL_QUEUED):
return QUEUED;
case(CL_SUBMITTED):
return SUBMITTED;
case(CL_RUNNING):
return RUNNING;
case(CL_COMPLETE):
return COMPLETE;
}
if(status < 0) {
return ERROR;
}
return null;
}
}
public enum CommandType {
NDRANGE_KERNEL(CL_COMMAND_NDRANGE_KERNEL),
TASK(CL_COMMAND_TASK),
NATIVE_KERNEL(CL_COMMAND_NATIVE_KERNEL),
READ_BUFFER(CL_COMMAND_READ_BUFFER),
WRITE_BUFFER(CL_COMMAND_WRITE_BUFFER),
COPY_BUFFER(CL_COMMAND_COPY_BUFFER),
READ_IMAGE(CL_COMMAND_READ_IMAGE),
WRITE_IMAGE(CL_COMMAND_WRITE_IMAGE),
COPY_IMAGE(CL_COMMAND_COPY_IMAGE),
COPY_BUFFER_TO_IMAGE(CL_COMMAND_COPY_BUFFER_TO_IMAGE),
COPY_IMAGE_TO_BUFFER(CL_COMMAND_COPY_IMAGE_TO_BUFFER),
MAP_BUFFER(CL_COMMAND_MAP_BUFFER),
MAP_IMAGE(CL_COMMAND_MAP_IMAGE),
UNMAP_MEM_OBJECT(CL_COMMAND_UNMAP_MEM_OBJECT),
MARKER(CL_COMMAND_MARKER),
READ_BUFFER_RECT(CL_COMMAND_READ_BUFFER_RECT),
WRITE_BUFFER_RECT(CL_COMMAND_WRITE_BUFFER_RECT),
COPY_BUFFER_RECT(CL_COMMAND_COPY_BUFFER_RECT),
USER(CL_COMMAND_USER),
ACQUIRE_GL_OBJECTS(CL_COMMAND_ACQUIRE_GL_OBJECTS),
RELEASE_GL_OBJECTS(CL_COMMAND_RELEASE_GL_OBJECTS),
GL_FENCE_SYNC_OBJECT_KHR(CL_COMMAND_GL_FENCE_SYNC_OBJECT_KHR);
/**
* Value of wrapped OpenCL command type.
*/
public final int TYPE;
private CommandType(int type) {
this.TYPE = type;
}
public static CommandType valueOf(int commandType) {
CommandType[] values = CommandType.values();
for (CommandType value : values) {
if(value.TYPE == commandType)
return value;
}
return null;
}
}
}
|