ocl icon indicating copy to clipboard operation
ocl copied to clipboard

OpenCL for Rust

Results 59 ocl issues
Sort by recently updated
recently updated
newest added

Now panics examples/events :) Rest of examples works fine.

wontfix

As mentioned in #9, the events example panics (on OS X with an Intel Iris Pro GPU, in this case). Here's the output: ``` Enqueuing kernel [itr:0]... Enqueuing read buffer...

wontfix

I noticed that removing the assert_eq!() in the basics.rs example on line 80 caused the printed values to change. Not sure if this is intended, but it doesn't seem like...

1. Added functions: - `Image::from_d3d11_texture2d` - `Image::from_d3d11_texture3d` - `Image::d3d11_acquire` - `Image::d3d11_release` - `Buffer::from_d3d11_buffer` - `Buffer::d3d11_acquire` - `Buffer::d3d11_release` 2. Supports both `cl_khr_d3d11_sharing` and `cl_nv_d3d11_sharing` extension 3. Fixed `get_gl_context_info_khr` - I noticed...

The docs say that > [OclPrm] Can also be implemented for custom types as long as layout and alignment are conserved between Rust and OpenCL (repr “C”). I spend quite...

The lifetime bounds in the methods `as_slice` and `as_slice_mut` in `types::abs::MemMap` ([link](https://github.com/cogciprocate/ocl/blob/4c4578948c45e0c1c02efd2aa2902b768cae1179/ocl-core/src/types/abs.rs#L752-L760)) are currently ``` #[inline(always)] pub unsafe fn as_slice &'_ [T] { slice::from_raw_parts(self.0, len) } #[inline(always)] pub unsafe fn...

### Summary :wave: Hello! This PR updates incomplete links in the documentation to point to the expected page. ### Updated links Here are the anchors to where these updates begin...

According to my research, it seems like future has been deprecated, is there a way to use it under the latest version of tokio?