Blame view

kernels/simple.cl 713 Bytes
1b1e928cc   glaville   initial import of...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  #if __OPENCL_VERSION__ <= CL_VERSION_1_0
      #define atomic_add(p, v) atom_add(p, v)
      #define atomic_inc(p) atom_inc(p)
  #endif
  
  kernel void double(constant int input[], global int output[])
  {
      const int i = get_global_id(0);
      output[i] = input[i] * 2;
  }
  
  #define CAPACITY(store) store[0]
  #define NTH_LIST(store, index) (store + 1 + index * (CAPACITY(store) + 1))
  #define LIST_SIZE(list) list[0]
  #define LIST_GET(list, index) list[1 + index]
  #define LIST_SET(list, index, val) list[1 + index] = val
  #define LIST_APPEND(list, val) LIST_SET(list, atomic_inc(list), val)
  
  kernel void fill(global int * store, int size)
  {
      global int * list = NTH_LIST(store, 1);
      LIST_APPEND(list, get_global_id(0));
  }