Vector256.ToVector512<T>(Vector256<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的向量轉換為新的 Vector512<T> ,並將較低的256位設定為指定向量的值,並將上層256位初始化為零。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector512<T> ToVector512(System::Runtime::Intrinsics::Vector256<T> vector);
public static System.Runtime.Intrinsics.Vector512<T> ToVector512<T> (this System.Runtime.Intrinsics.Vector256<T> vector);
static member ToVector512 : System.Runtime.Intrinsics.Vector256<'T> -> System.Runtime.Intrinsics.Vector512<'T>
<Extension()>
Public Function ToVector512(Of T) (vector As Vector256(Of T)) As Vector512(Of T)
類型參數
- T
輸入向量的類型。
參數
- vector
- Vector256<T>
要擴充的向量。
傳回
新的 , Vector512<T> 其下層 256 位設定為 的值 vector
,並將上層 256 位初始化為零。
例外狀況
不支援 vector
(T
) 的類型。