次の方法で共有


operator* 演算子 (C++ AMP)

指定された引数の要素ごとの積を計算します。

template <
   int _Rank,
   template <int> class _Tuple_type
>
_Tuple_type<_Rank> operator*(
   const _Tuple_type<_Rank>& _Lhs,
   typename _Tuple_type<_Rank>::value_type _Rhs
) restrict(amp,cpu);

template <
   int _Rank,
   template <int> class _Tuple_type
>
_Tuple_type<_Rank> operator*(
   typename _Tuple_type<_Rank>::value_type _Lhs,
   const _Tuple_type<_Rank>& _Rhs
) restrict(amp, cpu);

パラメーター

  • _Rank
    タプルの引数のランク。

  • _Lhs
    乗算するタプルのいずれか。

  • _Rhs
    乗算するタプルのいずれか。

戻り値

指定された引数の要素ごとの積。

必要条件

ヘッダー: amp.h

名前空間: Concurrency

参照

関連項目

Concurrency 名前空間 (C++ AMP)