rust-opencl
rust-opencl copied to clipboard
OpenCL bindings for Rust.
There's a .travis.yml but https://travis-ci.org/luqmana/rust-opencl doesn't appear to be active?
Note: this PR contains a variety of different bits of work over the course of several months. Apologies. Fixes: - removed std crate reference - removed `raw_pointer_derive` lint - remove...
(Opening a bunch of issues today!) This would require finding an `OpenCL.lib` from one of the various SDKs and linking to it. (Which doesn't currently happen, I believe.) That could...
Is it possible to set arguments with qualifiers other than global? Thanks
I started to implement the `clGetDeviceInfo` queries. Two remarks here: - I changed the return type of the `compute_units` call from `usize` to `u32` to better match the OpenCL API...
The rustdocs don't seem to generate without adding these 2 lines to src/lib.rs: # ![feature(libc)] # ![feature(rustc_private)]
In [cl.rs](https://github.com/luqmana/rust-opencl/blob/master/src/cl.rs), all the constants are defined as `static`s instead of `const`s, which gets annoying if you're trying to wrap the values in things like the `bitmasks!` macro. Is there...
I am evaluating writing a project in Rust instead of C++. I am not sure if rust-opencl works with the stable Rust compilers. I have tried compiling rust-opencl with rustc...
In line with pyopencl, it would be very useful to have support for prefix sums and ad hoc elementwise kernels. Do you consider rust-opencl the right place, or would you...