rust-opencl icon indicating copy to clipboard operation
rust-opencl copied to clipboard

OpenCL bindings for Rust.

Results 17 rust-opencl issues
Sort by recently updated
recently updated
newest added

It would be nice to have one.

As far as I can tell, `rust-opencl` implements OpenCL 1.1. Would it be possible to support OpenCL 1.2 and 2.0? (And maybe 1.0, I suppose.) I don't believe there are...

see http://doc.crates.io/crates-io.html

There are a lot of OpenCL extensions; it would be nifty to support them. I would be particularly interested in the OpenGL (and DirectX) extensions, but I'm not sure how...

I'm trying to write some quick example code using rust + opencl, I'm pretty new to rust but when I run ``` rust let (device, ctx, queue) = opencl::util::create_compute_context_prefer(opencl::util::PreferedType::GPUPrefered).unwrap(); let...

Are you going to add examples as well ? They would be really helpful.

Right now, `Context::create_command_queue` always enables profiling information. We should make this configurable, either as an optional parameter, a separate function, or maybe through some kind of options type.