Method YGroup3UnzipX2_Bit128
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
YGroup3UnzipX2_Bit128<T>(Vector128<T>, Vector128<T>, Vector128<T>, Vector128<T>, Vector128<T>, Vector128<T>, out Vector128<T>, out Vector128<T>, out Vector128<T>, out Vector128<T>, out Vector128<T>)
De-Interleave 3-element groups into 3 vectors and process 2x data (将3-元素组解交织为3个向量, 且处理2倍数据). It is specialized for process 128-bit element (它专门用于处理128位元素).
Mnemonic: (x, y, z) = YGroup3Unzip(data0, data1, data2)
, (xB, yB, zB) = YGroup3Unzip(data3, data4, data5)
.
public static Vector128<T> YGroup3UnzipX2_Bit128<T>(Vector128<T> data0, Vector128<T> data1, Vector128<T> data2, Vector128<T> data3, Vector128<T> data4, Vector128<T> data5, out Vector128<T> xB, out Vector128<T> y, out Vector128<T> yB, out Vector128<T> z, out Vector128<T> zB) where T : struct
Parameters
data0
Vector128<T>A vector made of 3-element groups - Part 0 (由3元素组所组成的向量 - 第0部分).
data1
Vector128<T>A vector made of 3-element groups - Part 1 (由3元素组所组成的向量 - 第1部分).
data2
Vector128<T>A vector made of 3-element groups - Part 2 (由3元素组所组成的向量 - 第2部分).
data3
Vector128<T>A vector made of 3-element groups - Part 3 (由3元素组所组成的向量 - 第3部分).
data4
Vector128<T>A vector made of 3-element groups - Part 4 (由3元素组所组成的向量 - 第4部分).
data5
Vector128<T>A vector made of 3-element groups - Part 5 (由3元素组所组成的向量 - 第5部分).
xB
Vector128<T>Returns the vector made of the X-components - Part 1 (返回X分量所组成的向量 - 第1部分).
y
Vector128<T>Returns the vector made of the Y-components - Part 0 (返回Y分量所组成的向量 - 第0部分).
yB
Vector128<T>Returns the vector made of the Y-components - Part 1 (返回Y分量所组成的向量 - 第1部分).
z
Vector128<T>Returns the vector made of the Z-components - Part 0 (返回Z分量所组成的向量 - 第0部分).
zB
Vector128<T>Returns the vector made of the Z-components - Part 1 (返回Z分量所组成的向量 - 第1部分).
Returns
- Vector128<T>
Returns the vector made of the X-components - Part 0 (返回X分量所组成的向量 - 第0部分).
Type Parameters
T
The element type of the input parameter (输入参数的元素类型).
- See Also