libmcl-sys 0.1.2-rc

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

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