Hi all,
Does any body know how to create const vector variables(int4, float4,...) in the Intel Kernel Builder? I had written a kernel with const vector variables and wanted to analyze it with Intel Kernel Builder. However I do not find a way to create vector variables and assign them to the kernel. Does any one know how to get this done? My kernel is written as:
__kernel void sample_kernel(__global uchar4* pTarget, __global uchar4* pSource, const int2 whSize, const float4 iColor) { .... }