com.syncleus.aparapi.examples.extension.squarer.cl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aparapi-examples Show documentation
Show all versions of aparapi-examples Show documentation
A collection of examples for the aparapi framework.
The 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