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

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