Vector512.WithUpper<T>(Vector512<T>, Vector256<T>) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した値に上位 256 ビットが設定され、下位の 256 ビットが指定されたベクターと同じ値に設定された新しい Vector512<T> を作成します。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector512<T> WithUpper(System::Runtime::Intrinsics::Vector512<T> vector, System::Runtime::Intrinsics::Vector256<T> value);
public static System.Runtime.Intrinsics.Vector512<T> WithUpper<T> (this System.Runtime.Intrinsics.Vector512<T> vector, System.Runtime.Intrinsics.Vector256<T> value);
static member WithUpper : System.Runtime.Intrinsics.Vector512<'T> * System.Runtime.Intrinsics.Vector256<'T> -> System.Runtime.Intrinsics.Vector512<'T>
<Extension()>
Public Function WithUpper(Of T) (vector As Vector512(Of T), value As Vector256(Of T)) As Vector512(Of T)
型パラメーター
- T
入力ベクターの型。
パラメーター
- vector
- Vector512<T>
下位 256 ビットを取得するベクトル。
- value
- Vector256<T>
上位 256 ビットの 値を として指定 Vector256<T>します。
戻り値
上位 256 ビットが にvalue
設定され、下位の 256 ビットが のvector
場合と同じ値に設定された新しい Vector512<T> 。
例外
vector
の型 (T
) がサポートされていません。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET