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