Method YShuffleG4
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
YShuffleG4(Vector256<float>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
public static Vector256<float> YShuffleG4(Vector256<float> source, ShuffleControlG4 control)
Parameters
source
Vector256<float>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<float>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also
YShuffleG4(Vector256<double>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
public static Vector256<double> YShuffleG4(Vector256<double> source, ShuffleControlG4 control)
Parameters
source
Vector256<double>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<double>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also
YShuffleG4(Vector256<sbyte>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
[CLSCompliant(false)]
public static Vector256<sbyte> YShuffleG4(Vector256<sbyte> source, ShuffleControlG4 control)
Parameters
source
Vector256<sbyte>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<sbyte>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also
YShuffleG4(Vector256<byte>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
public static Vector256<byte> YShuffleG4(Vector256<byte> source, ShuffleControlG4 control)
Parameters
source
Vector256<byte>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<byte>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also
YShuffleG4(Vector256<short>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
public static Vector256<short> YShuffleG4(Vector256<short> source, ShuffleControlG4 control)
Parameters
source
Vector256<short>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<short>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also
YShuffleG4(Vector256<ushort>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
[CLSCompliant(false)]
public static Vector256<ushort> YShuffleG4(Vector256<ushort> source, ShuffleControlG4 control)
Parameters
source
Vector256<ushort>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<ushort>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also
YShuffleG4(Vector256<int>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
public static Vector256<int> YShuffleG4(Vector256<int> source, ShuffleControlG4 control)
Parameters
source
Vector256<int>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<int>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also
YShuffleG4(Vector256<uint>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
[CLSCompliant(false)]
public static Vector256<uint> YShuffleG4(Vector256<uint> source, ShuffleControlG4 control)
Parameters
source
Vector256<uint>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<uint>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also
YShuffleG4(Vector256<long>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
public static Vector256<long> YShuffleG4(Vector256<long> source, ShuffleControlG4 control)
Parameters
source
Vector256<long>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<long>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also
YShuffleG4(Vector256<ulong>, ShuffleControlG4)
For each 4-element groups in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替).
Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source)
. View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)]
.
[CLSCompliant(false)]
public static Vector256<ulong> YShuffleG4(Vector256<ulong> source, ShuffleControlG4 control)
Parameters
source
Vector256<ulong>The input source from which values are selected (从中选择值的输入向量).
control
ShuffleControlG4Shuffle control code (换位控制码).
Returns
- Vector256<ulong>
A new source containing the values from
source
selected by the givencontrol
(一个新向量,其中包含给定control
从source
中选择的值).
- See Also