Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Atomically computes the maximum of a value and the value of a memory location and stores the maximum value to the memory location.
inline int atomic_fetch_max(
_Inout_ int * _Dest,
int _Value
) restrict(amp);
inline unsigned int atomic_fetch_max(
_Inout_ unsigned int * _Dest,
unsigned int _Value
) restrict(amp);
Parameters
_Dest
Pointer to the destination location._Value
The value to be compared.
Return Value
The original value of the memory location.
Requirements
Header: amp.h
Namespace: Concurrency