Method YGroup3ZipX2_Bit128
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
YGroup3ZipX2_Bit128<T>(Vector256<T>, Vector256<T>, Vector256<T>, Vector256<T>, Vector256<T>, Vector256<T>, out Vector256<T>, out Vector256<T>, out Vector256<T>, out Vector256<T>, out Vector256<T>)
Interleave 3 vectors into 3-element groups and process 2x data (将3个向量交织为3-元素组, 且处理2倍数据).
Mnemonic: (data0, data1, data2) = YGroup3Zip(x, y, z)
, (data3, data4, data5) = YGroup3Zip(xB, yB, zB)
.
public static Vector256<T> YGroup3ZipX2_Bit128<T>(Vector256<T> x, Vector256<T> xB, Vector256<T> y, Vector256<T> yB, Vector256<T> z, Vector256<T> zB, out Vector256<T> data1, out Vector256<T> data2, out Vector256<T> data3, out Vector256<T> data4, out Vector256<T> data5) where T : struct
Parameters
x
Vector256<T>A vector consisting purely of X-components - Part 0 (纯由X分量所组成的向量 - 第0部分).
xB
Vector256<T>A vector consisting purely of X-components - Part 1 (纯由X分量所组成的向量 - 第1部分).
y
Vector256<T>A vector consisting purely of Y-components - Part 0 (纯由Y分量所组成的向量 - 第0部分).
yB
Vector256<T>A vector consisting purely of Y-components - Part 1 (纯由Y分量所组成的向量 - 第1部分).
z
Vector256<T>A vector consisting purely of Z-components - Part 0 (纯由Z分量所组成的向量 - 第0部分).
zB
Vector256<T>A vector consisting purely of Z-components - Part 1 (纯由Z分量所组成的向量 - 第1部分).
data1
Vector256<T>Returns part 1 of the interleaved data (返回交织后数据的第1部分).
data2
Vector256<T>Returns part 2 of the interleaved data (返回交织后数据的第2部分).
data3
Vector256<T>Returns part 3 of the interleaved data (返回交织后数据的第3部分).
data4
Vector256<T>Returns part 4 of the interleaved data (返回交织后数据的第4部分).
data5
Vector256<T>Returns part 5 of the interleaved data (返回交织后数据的第5部分).
Returns
- Vector256<T>
Returns part 0 of the interleaved data (返回交织后数据的第0部分).
Type Parameters
T
The element type of the input parameter (输入参数的元素类型).