Vector256.ToVector512Unsafe<T>(Vector256<T>) メソッド

定義

指定されたベクターを、指定されたベクターの値に設定された下位 256 ビットと、初期化されていない上位 256 ビットを持つ新しい Vector512<T> に変換します。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Runtime::Intrinsics::Vector512<T> ToVector512Unsafe(System::Runtime::Intrinsics::Vector256<T> vector);
public static System.Runtime.Intrinsics.Vector512<T> ToVector512Unsafe<T> (this System.Runtime.Intrinsics.Vector256<T> vector);
static member ToVector512Unsafe : System.Runtime.Intrinsics.Vector256<'T> -> System.Runtime.Intrinsics.Vector512<'T>
<Extension()>
Public Function ToVector512Unsafe(Of T) (vector As Vector256(Of T)) As Vector512(Of T)

型パラメーター

T

入力ベクターの型。

パラメーター

vector
Vector256<T>

拡張するベクター。

戻り値

下位 256 ビットが の値vectorに設定され、上位 256 ビットが初期化されていない状態の新しい Vector512<T>

例外

vector の型 (T) がサポートされていません。

適用対象