Vector256.ToVector512Unsafe<T>(Vector256<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的向量轉換為新的 Vector512<T> ,並將較低的 256 位設定為指定向量的值,並將上方 256 位保留為未初始化。
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>
要擴充的向量。
傳回
Vector512<T>新的 ,其下層 256 位設定為 的值vector
,而上層 256 位則保持未初始化狀態。
例外狀況
不支援 vector
(T
) 的類型。