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