summaryrefslogtreecommitdiffstats
path: root/libclc/generic/lib/cl_khr_int64_base_atomics/atom_sub.cl
blob: c1b9272a3ca04c37659f1df6f7aab9373e52e1a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <clc/clc.h>

#ifdef cl_khr_int64_base_atomics

#define IMPL(AS, TYPE) \
_CLC_OVERLOAD _CLC_DEF TYPE atom_sub(volatile AS TYPE *p, TYPE val) { \
  return __sync_fetch_and_sub_8(p, val); \
}

IMPL(global, long)
IMPL(global, unsigned long)
IMPL(local, long)
IMPL(local, unsigned long)
#undef IMPL

#endif
OpenPOWER on IntegriCloud