次の方法で共有


atomic_fetch_min 関数

アトミック値と、メモリ位置の値の最小値を計算して、最小値、メモリの場所に格納されます。

inline int atomic_fetch_min(
   _Inout_ int * _Dest,
   int _Value                     
) restrict(amp);
                     
inline unsigned int atomic_fetch_min(
   _Inout_ unsigned int * _Dest,
   unsigned int _Value                     
) restrict(amp);

パラメーター

  • _Dest
    コピー先の場所へのポインター。

  • _Value
    場所を比較する値を指定します。

戻り値

場所の元の値。

必要条件

ヘッダー: amp.h

名前空間: Concurrency

参照

関連項目

Concurrency 名前空間 (C++ AMP)