libmcl-sys 0.1.1

This system crate provides Rust language bindings to the Minos Compute Library (MCL)
Documentation
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];
}