Forum Discussion

FHuss10's avatar
FHuss10
Icon for New Contributor rankNew Contributor
5 years ago

How can I get the kernel code to implement a sample by sample processing instead of an array?

__kernel void ADD_TO_ARRAY ( __global const short* restrict k_din, __global const short* restrict k_din2, __global short * restrict k_out ) { for(unsigned i=0; i<20; i++) k_dout[i] = k_din[i] * ...