All Downloads are FREE. Search and download functionalities are using the official Maven repository.

parapi-examples.2.0.0.source-code.squarer.cl Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
__kernel void square( __global float *in, __global float *out){
   const size_t id = get_global_id(0);
   out[id] = in[id]*in[id];
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy