This unifies naming scheme of macros to address review comment https://github.com/intel/llvm/pull/19779#discussion_r2272194357 math constant value macros are not changed, e.g. `#define AU0 -9.86494292470009928597e-03`
43 lines
1.5 KiB
Common Lisp
43 lines
1.5 KiB
Common Lisp
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include <clc/opencl/atomic/atom_dec.h>
|
|
#include <clc/opencl/atomic/atom_sub.h>
|
|
#include <clc/opencl/atomic/atomic_dec.h>
|
|
|
|
#define __CLC_IMPL(AS, TYPE) \
|
|
_CLC_OVERLOAD _CLC_DEF TYPE atom_dec(volatile AS TYPE *p) { \
|
|
return atomic_dec(p); \
|
|
}
|
|
|
|
#ifdef cl_khr_global_int32_base_atomics
|
|
__CLC_IMPL(global, int)
|
|
__CLC_IMPL(global, unsigned int)
|
|
#endif // cl_khr_global_int32_base_atomics
|
|
#ifdef cl_khr_local_int32_base_atomics
|
|
__CLC_IMPL(local, int)
|
|
__CLC_IMPL(local, unsigned int)
|
|
#endif // cl_khr_local_int32_base_atomics
|
|
|
|
#undef __CLC_IMPL
|
|
|
|
#ifdef cl_khr_int64_base_atomics
|
|
|
|
#define __CLC_IMPL(AS, TYPE) \
|
|
_CLC_OVERLOAD _CLC_DEF TYPE atom_dec(volatile AS TYPE *p) { \
|
|
return atom_sub(p, (TYPE)1); \
|
|
}
|
|
|
|
__CLC_IMPL(global, long)
|
|
__CLC_IMPL(global, unsigned long)
|
|
__CLC_IMPL(local, long)
|
|
__CLC_IMPL(local, unsigned long)
|
|
#undef __CLC_IMPL
|
|
|
|
#endif // cl_khr_int64_base_atomics
|