OpenCL

分类:编程技术 时间:2024-02-20 17:24 浏览:0 评论:0
0

文章OpenCL,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

http://man.opencl.org/dataTypes.html

 

://stackoverflow.com/questions/28904114/opencl-sending-float3-host-to-device

 

://community.khronos.org/t/typedef-cl-float4-cl-float3-cl-platform-h/2530

They shouldn’t and they won’t. cl_float3 is identical in size, alignment, and behavior to cl_float4.

It’s really just there to let you write self-documenting code. You can just as well use cl_float4 and forget that cl_float3 ever existed. It’s a convenience but the opencl types such as float and double are aligned to powers of 2 (cl_float2, cl_float4, cl_float8, and cl_float16 which are aligned to 8, 16, 32, and 64 bytes respectively).

Typedef is just saying “use this type but call it another name.” What’s being done with “typedef cl_float4 cl_float3” is that you’re being allowed to say your variable is a type of cl_float3 but to the machine, it still sees it as a cl_float4. No matter what you call it, the machine will still treat it the same.

 

 

://www.codenong.com/17361274/

 

 

://community.amd.com/t5/archives-discussions/cl-float3/td-p/333687

 

 

In a kernel it must be an error, not in the host program, as the spec only defines the kernel language definition. From the spec:
"float3 pos;
pos.z = 1.0f; // is legal
pos.w = 1.0f; // is illegal"
This only is illegal for a float3, not a cl_float3.
On a side note, the header file that defines cl_float3 is straight from Khronos, not something that we create. So if it is behavior you want changed, you need to go through Khronos to get it changed.

 

://github.com/KhronosGroup/OpenCL-Headers/blob/main/CL/cl_platform.h

/* cl_float3 is identical in size, alignment and behavior to cl_float4. See section 6.1.5. */typedef  cl_float4  cl_float3;

 



1. 本站所有资源来源于用户上传或网络,仅作为参考研究使用,如有侵权请邮件联系站长!
2. 本站积分货币获取途径以及用途的解读,想在本站混的好,请务必认真阅读!
3. 本站强烈打击盗版/破解等有损他人权益和违法作为,请各位会员支持正版!
4. 编程技术 > OpenCL

用户评论