summaryrefslogtreecommitdiff
path: root/backend/kernels/store.cl
blob: 5c473786c432b98118c79d993660305dcc14393c (plain)
1
2
3
4
5
6
7
#include "stdlib.h"
__kernel void store(__global int *dst, __local int *dst0, int x)
{
  dst[0] = 1;
}