libmcl-sys 0.1.2

This system crate provides Rust language bindings to the Minos Compute Library (MCL)
Documentation
1
2
3
4
5
6
__kernel void SAXPY (const __global float* x, const __global float* y, float a, __global float* z)
{
    const int i = get_global_id (0);

    z[i] = a*x[i] + y[i];
}