Vector512.AsVector512<T>(Vector<T>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 Vector<T> 重新解释为新的 Vector512<T>。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector512<T> AsVector512(System::Numerics::Vector<T> value);
public static System.Runtime.Intrinsics.Vector512<T> AsVector512<T> (this System.Numerics.Vector<T> value);
static member AsVector512 : System.Numerics.Vector<'T> -> System.Runtime.Intrinsics.Vector512<'T>
<Extension()>
Public Function AsVector512(Of T) (value As Vector(Of T)) As Vector512(Of T)
类型参数
- T
向量中元素的类型。
参数
- value
- Vector<T>
要重新解释的向量。
返回
重新解释为新的 Vector512<T> 的 value
。
例外
不支持 value
类型 (T
)。