libmcl-sys 0.1.0

This system crate provides Rulst language bindings to the Minos Compute Library (MCL)
1
2
3
4
5
6
__kernel void VADD (__global unsigned long* x, __global unsigned long* y, __global unsigned long* out)
{
	const int i = get_global_id(0);

	out[i] = x[i] + y[i];
}