Valentin Churavy

Results 1413 comments of Valentin Churavy

I think most of our compiler support split dwarf info? https://gcc.gnu.org/wiki/DebugFissionDWP

I just came across [`debuginfod`](https://sourceware.org/elfutils/Debuginfod.html) which seems very complementary. It allows for gdb and others to auto-fetch debuginfo!

My intuition would be that with http://www.khronos.org/registry/cl/sdk/1.1/docs/man/xhtml/clSetEventCallback.html we should be able to build either RemoteReferences or Tasks that completes when the underlying events complete. Also of interest might be something...

Something along those lines might be helpful. More information here: http://julialang.org/blog/2013/05/callback/ ``` julia using OpenCL; const cl = OpenCL type Event status :: Symbol error_code :: Int Event() = Event(:undefined)...

I just hit the same issue in #104

Sorry, I don't have a mac available for testing. ~I will see if I can reproduce this with travis.~ Couldn't reproduce it on travis

@esproff Are you using Julia v0.4?

Can you run the following code to see what devices are available for you? ``` for platform in OpenCL.platforms() @show platform @show OpenCL.available_devices(platform) end ```

Can you run your code on the CPU device? OpenCL implementation are all over the board and I wouldn't be surprised if there is a problem with the combination of...