Re: user events, CLEventList
Posted by
notzed on
Mar 11, 2012; 7:19am
URL: https://forum.jogamp.org/user-events-CLEventList-tp3811516p3816282.html
Hi Michael,
Michael Bien wrote
hi michael (notzed),
i am still subscribed to this list and i am using jocl basically
fulltime. However i am either working on frameworks on top of jocl
(distributed computing and similar stuff) or writing kernels but use
only a small fraction of the CL 1.2 api. So your feedback is always
appreciated :)
Ok thanks for the background. Yes I am barely touching the 1.1 stuff, and this was one case of it.
lets take a look at CLEvents.
I remember i had a reason why i didn't add that.. but don't know what it
was. I will just go ahead and add a few utility methods (add(CLEvent)
and add(CLEventList)) and see how it works or where the problem was.
what was your other usecase regarding events again?
Basically I want to pass (CLEventList condition, CLEventList event) as arguments to a function, and have that function participate in the global CL event scheduling as if it were any other enqueue() call: including the case where that function is just (e.g. multi-threaded) Java code. This seems to be what user events are for.
The only reason I could imagine not to expose it in that way would be to hide the reference counting issues (e.g. passing ownership or not).
Cheers,
Michael