Skip to content

klonikar/openclpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

openclpp: OpenCL C++ Wrapper classes header - Fluent style (http://en.wikipedia.org/wiki/Fluent_interface)

This interface is different from the one described on https://www.khronos.org/registry/cl/specs/opencl-cplusplus-1.2.pdf Notable differences:

  1. CLPlatform::getAllPlatforms() returns pointer to first platform in the array instead of STL vector
  2. CLPlatform.devices() returns pointer to first device in the array instead of STL vector
  3. CLPlatform, CLDevice contain the attributes instead of having to call getPlatformInfo or getDeviceInfo. In general total independence from functions and macros defined in cl.h.
  4. Fluent style functions so that functions can be chained. Functions like CLProgram.build, CLKernel.setArg, CLCommandQueue.enqueue* return the "this" object. See sample code to know how it simplifies the usage.

Implementation Notes:

  1. Creating context from device type is not yet supported (clCreateContextFromType)
  2. Command queues can be created using the devices used for creating context.
  3. Does not support all the attributes and functors yet.

About

OpenCL C++ Wrapper classes header - Fluent style

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors