summaryrefslogtreecommitdiff
path: root/backend/kernels/short.cl
blob: 246cf023d17b55b39b5175688f3e8fea72f2169a (plain)
1
2
3
4
5
6
7
#include "stdlib.h"
__kernel void short_write(__global short *dst, short x, short y)
{
  dst[0] = x + y;
}