Vector512.Widen Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Widen(Vector512<Byte>) |
Widens a Vector512<T> into two Vector512<T>. |
Widen(Vector512<Int16>) |
Widens a Vector512<T> into two Vector512<T>. |
Widen(Vector512<Int32>) |
Widens a Vector512<T> into two Vector512<T>. |
Widen(Vector512<SByte>) |
Widens a Vector512<T> into two Vector512<T>. |
Widen(Vector512<Single>) |
Widens a Vector512<T> into two Vector512<T>. |
Widen(Vector512<UInt16>) |
Widens a Vector512<T> into two Vector512<T>. |
Widen(Vector512<UInt32>) |
Widens a Vector512<T> into two Vector512<T>. |
Widen(Vector512<Byte>)
- Source:
- Vector512.cs
- Source:
- Vector512.cs
Important
This API is not CLS-compliant.
Widens a Vector512<T> into two Vector512<T>.
public:
static ValueTuple<System::Runtime::Intrinsics::Vector512<System::UInt16>, System::Runtime::Intrinsics::Vector512<System::UInt16>> Widen(System::Runtime::Intrinsics::Vector512<System::Byte> source);
[System.CLSCompliant(false)]
public static (System.Runtime.Intrinsics.Vector512<ushort> Lower, System.Runtime.Intrinsics.Vector512<ushort> Upper) Widen (System.Runtime.Intrinsics.Vector512<byte> source);
[<System.CLSCompliant(false)>]
static member Widen : System.Runtime.Intrinsics.Vector512<byte> -> ValueTuple<System.Runtime.Intrinsics.Vector512<uint16>, System.Runtime.Intrinsics.Vector512<uint16>>
Public Function Widen (source As Vector512(Of Byte)) As ValueTuple(Of Vector512(Of UShort), Vector512(Of UShort))
Parameters
Returns
A pair of vectors that contain the widened lower and upper halves of source
.
- Attributes
Applies to
Widen(Vector512<Int16>)
- Source:
- Vector512.cs
- Source:
- Vector512.cs
Widens a Vector512<T> into two Vector512<T>.
public:
static ValueTuple<System::Runtime::Intrinsics::Vector512<int>, System::Runtime::Intrinsics::Vector512<int>> Widen(System::Runtime::Intrinsics::Vector512<short> source);
public static (System.Runtime.Intrinsics.Vector512<int> Lower, System.Runtime.Intrinsics.Vector512<int> Upper) Widen (System.Runtime.Intrinsics.Vector512<short> source);
static member Widen : System.Runtime.Intrinsics.Vector512<int16> -> ValueTuple<System.Runtime.Intrinsics.Vector512<int>, System.Runtime.Intrinsics.Vector512<int>>
Public Function Widen (source As Vector512(Of Short)) As ValueTuple(Of Vector512(Of Integer), Vector512(Of Integer))
Parameters
Returns
A pair of vectors that contain the widened lower and upper halves of source
.
Applies to
Widen(Vector512<Int32>)
- Source:
- Vector512.cs
- Source:
- Vector512.cs
Widens a Vector512<T> into two Vector512<T>.
public:
static ValueTuple<System::Runtime::Intrinsics::Vector512<long>, System::Runtime::Intrinsics::Vector512<long>> Widen(System::Runtime::Intrinsics::Vector512<int> source);
public static (System.Runtime.Intrinsics.Vector512<long> Lower, System.Runtime.Intrinsics.Vector512<long> Upper) Widen (System.Runtime.Intrinsics.Vector512<int> source);
static member Widen : System.Runtime.Intrinsics.Vector512<int> -> ValueTuple<System.Runtime.Intrinsics.Vector512<int64>, System.Runtime.Intrinsics.Vector512<int64>>
Public Function Widen (source As Vector512(Of Integer)) As ValueTuple(Of Vector512(Of Long), Vector512(Of Long))
Parameters
Returns
A pair of vectors that contain the widened lower and upper halves of source
.
Applies to
Widen(Vector512<SByte>)
- Source:
- Vector512.cs
- Source:
- Vector512.cs
Important
This API is not CLS-compliant.
Widens a Vector512<T> into two Vector512<T>.
public:
static ValueTuple<System::Runtime::Intrinsics::Vector512<short>, System::Runtime::Intrinsics::Vector512<short>> Widen(System::Runtime::Intrinsics::Vector512<System::SByte> source);
[System.CLSCompliant(false)]
public static (System.Runtime.Intrinsics.Vector512<short> Lower, System.Runtime.Intrinsics.Vector512<short> Upper) Widen (System.Runtime.Intrinsics.Vector512<sbyte> source);
[<System.CLSCompliant(false)>]
static member Widen : System.Runtime.Intrinsics.Vector512<sbyte> -> ValueTuple<System.Runtime.Intrinsics.Vector512<int16>, System.Runtime.Intrinsics.Vector512<int16>>
Public Function Widen (source As Vector512(Of SByte)) As ValueTuple(Of Vector512(Of Short), Vector512(Of Short))
Parameters
Returns
A pair of vectors that contain the widened lower and upper halves of source
.
- Attributes
Applies to
Widen(Vector512<Single>)
- Source:
- Vector512.cs
- Source:
- Vector512.cs
Widens a Vector512<T> into two Vector512<T>.
public:
static ValueTuple<System::Runtime::Intrinsics::Vector512<double>, System::Runtime::Intrinsics::Vector512<double>> Widen(System::Runtime::Intrinsics::Vector512<float> source);
public static (System.Runtime.Intrinsics.Vector512<double> Lower, System.Runtime.Intrinsics.Vector512<double> Upper) Widen (System.Runtime.Intrinsics.Vector512<float> source);
static member Widen : System.Runtime.Intrinsics.Vector512<single> -> ValueTuple<System.Runtime.Intrinsics.Vector512<double>, System.Runtime.Intrinsics.Vector512<double>>
Public Function Widen (source As Vector512(Of Single)) As ValueTuple(Of Vector512(Of Double), Vector512(Of Double))
Parameters
Returns
A pair of vectors that contain the widened lower and upper halves of source
.
Applies to
Widen(Vector512<UInt16>)
- Source:
- Vector512.cs
- Source:
- Vector512.cs
Important
This API is not CLS-compliant.
Widens a Vector512<T> into two Vector512<T>.
public:
static ValueTuple<System::Runtime::Intrinsics::Vector512<System::UInt32>, System::Runtime::Intrinsics::Vector512<System::UInt32>> Widen(System::Runtime::Intrinsics::Vector512<System::UInt16> source);
[System.CLSCompliant(false)]
public static (System.Runtime.Intrinsics.Vector512<uint> Lower, System.Runtime.Intrinsics.Vector512<uint> Upper) Widen (System.Runtime.Intrinsics.Vector512<ushort> source);
[<System.CLSCompliant(false)>]
static member Widen : System.Runtime.Intrinsics.Vector512<uint16> -> ValueTuple<System.Runtime.Intrinsics.Vector512<uint32>, System.Runtime.Intrinsics.Vector512<uint32>>
Public Function Widen (source As Vector512(Of UShort)) As ValueTuple(Of Vector512(Of UInteger), Vector512(Of UInteger))
Parameters
Returns
A pair of vectors that contain the widened lower and upper halves of source
.
- Attributes
Applies to
Widen(Vector512<UInt32>)
- Source:
- Vector512.cs
- Source:
- Vector512.cs
Important
This API is not CLS-compliant.
Widens a Vector512<T> into two Vector512<T>.
public:
static ValueTuple<System::Runtime::Intrinsics::Vector512<System::UInt64>, System::Runtime::Intrinsics::Vector512<System::UInt64>> Widen(System::Runtime::Intrinsics::Vector512<System::UInt32> source);
[System.CLSCompliant(false)]
public static (System.Runtime.Intrinsics.Vector512<ulong> Lower, System.Runtime.Intrinsics.Vector512<ulong> Upper) Widen (System.Runtime.Intrinsics.Vector512<uint> source);
[<System.CLSCompliant(false)>]
static member Widen : System.Runtime.Intrinsics.Vector512<uint32> -> ValueTuple<System.Runtime.Intrinsics.Vector512<uint64>, System.Runtime.Intrinsics.Vector512<uint64>>
Public Function Widen (source As Vector512(Of UInteger)) As ValueTuple(Of Vector512(Of ULong), Vector512(Of ULong))
Parameters
Returns
A pair of vectors that contain the widened lower and upper halves of source
.
- Attributes