Simon
Simon
That's hopefully for the CPU OpenCL implementation, is it?
The CPU drivers are pretty buggy, which is why i've given up to support them for now... maybe i should add that to the readme ;) I dont think this...
weird... can you run the testsuite, so we can have a baseline of whats working generally?
This might actually be rather a problem with AMD. The test failures of OpenCL.jl don't look that grave. Can you try running only the GPU tests? ```Julia using CLArrays, CLArrays.Shorthands...
In other words, switching OS might not help you that much. I had huge problems with GPU support on Ubuntu, especially with AMD. Windows is the only rock solid platform...
>745 745 I guess that's the tests that pass? If true, that means most of the tests do actually pass :) I should really try to fix this OpenCL task...
Thank you! Can you check, that `Pkg.status("OpenCL")` is at least v0.6.1? I think that was my last attempt at fixing that task error. I really don't think it's a memory...
Can you try this on the branch: `Pkg.checkout("OpenCL", "sd/taskerror")` ```Julia using CLArrays CLArrays.init(CLArrays.devices(CLArrays.is_gpu)[1]) A = CLArray(rand(Float32, 1000, 1000)) sum(A) ```
can you use git to check it out manually?
So does it actually work now? I can only see warnings...