本文主要是介绍OpenCL学习之介绍,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
OpenCL 介绍
因为公司项目的需要,我开始接触opencl,之前只知道opencl是做平行计算的,可以加速绝大多数数值计算。目前,有很多知名的算法都被用opencl提速,如fft等。
楔子
学习之路漫长,记录工作中的点点滴滴。
opencl框架
opencl能进行算法加速的好处就不在这里累赘的说明了,网上有大把的文章来“赞美它”,摘要最直观的一幅图
上图可以很明显的看出GPU的优势。
opencl主要函数介绍
1 获取平台clGetPlatFormIDs
cl_int clGetPlatFormIDs(cl_uint num_entries, cl_platform _id * platforms,cl_uint *num_platforms)
- num_entries 可加入platforms的数目,如果platforms不等于NULL,num_entries必须大于0.
- platforms 返回所找到OpenCL平台列表
- num_platforms 返回实际可用的OpenCL平台集。如果num _ platform等于NULL,则被忽略。
2 查询设备clGetDeviceIDs
cl_int clGetDeviceIDs(cl_platform_id platform,cl_device_type device_type, cl_uint num_entries, cl_device_id *devices, cl_uint *num_devices);
* platform 是clGetPlatformIDs返回的平台ID或者为NULL.
* device _ type 用来标示OpenCL设备的类型。
* devices 返回一个列表,其中存放所找到的OpenCL设备
* num _ devices 返回与device _ type 相匹配的可用OpenCL设备的数目,如果num _ devices 是NULL ,则忽略此参数。
3 上下文clCreateContext
cl_context clCreateContext(const cl_context_properties * properties, cl_uint num_devices, const cl_device_id * devices, (void)(*pfn_notify) (const char * errinfo, const void *private_info ,size_t cb, void *user_data), void *user _data, cl_int * errcode_ret);
* properties 指向一个列表,其中有上下文属性名称以及其对应的值。每个属性名称后面紧跟器对应的期望值
* num_devices 是参数devices中设备的数目
* devices 是一
这篇关于OpenCL学习之介绍的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!