summaryrefslogtreecommitdiff
path: root/mod_four.cl
blob: 4ef75835f0f1574d974a5f8a4ebf361d3f079b70 (plain)
1
2
3
4
5

__kernel void mod_four(__global int * out, int arg0, int arg1)
{
  out[0] = arg0 % 4;
}