Ben Ashbaugh
Ben Ashbaugh
> The only difference is that we are naming our library files differently... This is my concern, though I'm not sure if it's a real concern or if I'm just...
Hi @mgorchak-blackberry, thank you for your contribution (and for your patience)! We discussed this PR in our weekly teleconference and our biggest concern is maintaining this build environment. Would it...
I took a look at this. Here is what I think is happening: * There are two SVM allocators with two different contexts. * The allocation itself (`clSVMAlloc`) is done...
Merging as discussed in the June 25th teleconference.
`clEnqueueSVMMemFill` and `clEnqueueSVMMemcpy` were added recently. We still do not have support for `clEnqueueSVMMemFill` though (the reason this issue was filed).
Host to Device copy has: ```c++ #if defined(_MSC_VER) std::copy( startIterator, endIterator, stdext::checked_array_iterator( pointer, length)); #else std::copy(startIterator, endIterator, pointer); #endif ``` Device to Host copy currently only has: ```c++ std::copy(pointer, pointer...
Thanks, this is super helpful! I believe this is because we redirect a lot of individual pages in the online reference pages (like the math built-in functions) or types (like...
Related to https://github.com/KhronosGroup/OpenCL-CLHPP/issues/233
We should revisit how these C++ bindings handle deprecated enums too - see related review comment https://github.com/KhronosGroup/OpenCL-CLHPP/pull/136#pullrequestreview-644858031. We currently have a small code block to handle enums that were deprecated...
Hi @Glinttsd, I've transferred your issue to the OpenCL-Guide repository for now. Have you had a look at the OpenCL guide section describing how to compile OpenCL kernels using offline...