File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " opencl3"
3- version = " 0.10 .0"
3+ version = " 0.11 .0"
44authors = [" Ken Barker <ken.barker@via-technology.aero>" ]
55description = " A Rust implementation of the Khronos OpenCL 3.0 API and extensions."
66documentation = " https://docs.rs/opencl3/"
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ OpenCL 2.0 ICD loader then just add the following to your project's `Cargo.toml`
6666
6767``` toml
6868[dependencies ]
69- opencl3 = " 0.9 "
69+ opencl3 = " 0.11 "
7070```
7171
7272If your OpenCL ICD loader supports higher versions of OpenCL then add the
@@ -75,15 +75,15 @@ following to your project's `Cargo.toml` instead:
7575
7676``` toml
7777[dependencies .opencl3 ]
78- version = " 0.9 "
78+ version = " 0.11 "
7979features = [" CL_VERSION_2_1" , " CL_VERSION_2_2" , " CL_VERSION_3_0" ]
8080```
8181
8282OpenCL extensions and ` serde ` support can also be enabled by adding their features, e.g.:
8383
8484``` toml
8585[dependencies .opencl3 ]
86- version = " 0.9 "
86+ version = " 0.11 "
8787features = [" cl_khr_gl_sharing" , " cl_khr_dx9_media_sharing" , " serde" ]
8888```
8989
Original file line number Diff line number Diff line change 11# Releases
22
3+ ## Version 0.11.0 (2025-02-19)
4+
5+ ### Changes
6+
7+ * Up to date with OpenCL-Headers tag v2024.10.24.
8+
39## Version 0.10.0 (2024-12-21)
410
511### Bug fixes
1016
1117* Issue [ #70 ] ( https://github.com/kenba/opencl3/issues/70 ) UpdSupport dynamic linking.
1218
13-
1419## Version 0.9.5 (2023-12-22)
1520
1621### New Features
Original file line number Diff line number Diff line change @@ -255,8 +255,8 @@ impl<T> Buffer<T> {
255255 /// * `flags` - a bit-field used to specify allocation and usage information
256256 /// about the sub-buffer memory object being created, see:
257257 /// [Memory Flags](https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_API.html#memory-flags-table).
258- /// * `origin` - the offset in number of objects of type `T`` .
259- /// * `count` - the size of the sub-buffer in number of objects of type `T`` .
258+ /// * `origin` - the offset in number of objects of type `T`.
259+ /// * `count` - the size of the sub-buffer in number of objects of type `T`.
260260 ///
261261 /// returns a Result containing the new OpenCL buffer object
262262 /// or the error code from the OpenCL C API function.
You can’t perform that action at this time.
0 commit comments