summaryrefslogtreecommitdiff
path: root/add.cl
blob: 2fa9378eab94be8a4be83eb48e47a3037bec17fd (plain)
1
2
3
4
__kernel void add(__global int * out, int arg0, int arg1)
{
  out[0] = arg0 + arg1;
}