blob: aa482a8f463974ae135bd2fc8d26efae6278d83f [file]
//===----------------------------------------------------------------------===//
//
// 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/atomic_max.h>
#define __CLC_IMPL(TYPE, AS, OP) \
_CLC_OVERLOAD _CLC_DEF TYPE atomic_max(volatile AS TYPE *p, TYPE val) { \
return __sync_fetch_and_##OP(p, val); \
}
__CLC_IMPL(int, global, max)
__CLC_IMPL(unsigned int, global, umax)
__CLC_IMPL(int, local, max)
__CLC_IMPL(unsigned int, local, umax)
#undef __CLC_IMPL