Handbook
Glossary
cl-profile-counters ( event -- queued submitted started finished )
Vocabulary
opencl
Inputs
event
a
cl-event
Outputs
queued
an
integer
submitted
an
integer
started
an
integer
finished
an
integer
Word description
Returns the profiling counters for the operation represented by event.
Definition
USING:
accessors
combinators
opencl.ffi
opencl.private
;
IN:
opencl
:
cl-profile-counters
( event -- queued submitted started finished )
handle>>
{
[
CL_PROFILING_COMMAND_QUEUED
profiling-info-ulong
]
[
CL_PROFILING_COMMAND_SUBMIT
profiling-info-ulong
]
[
CL_PROFILING_COMMAND_START
profiling-info-ulong
]
[
CL_PROFILING_COMMAND_END
profiling-info-ulong
]
}
cleave
;
inline