summaryrefslogtreecommitdiffstats
path: root/libclc/generic/lib/atomic/atomic_xor.cl
blob: fcbe48145e7fa296e4d209ea7901a71bad3732cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <clc/clc.h>

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

IMPL(int, global)
IMPL(unsigned int, global)
IMPL(int, local)
IMPL(unsigned int, local)
#undef IMPL
OpenPOWER on IntegriCloud