Table of Contents

Method YGroup3ZipX2_Bit128

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

YGroup3ZipX2_Bit128<T>(Vector<T>, Vector<T>, Vector<T>, Vector<T>, Vector<T>, Vector<T>, out Vector<T>, out Vector<T>, out Vector<T>, out Vector<T>, out Vector<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 Vector<T> YGroup3ZipX2_Bit128<T>(Vector<T> x, Vector<T> xB, Vector<T> y, Vector<T> yB, Vector<T> z, Vector<T> zB, out Vector<T> data1, out Vector<T> data2, out Vector<T> data3, out Vector<T> data4, out Vector<T> data5) where T : struct

Parameters

x Vector<T>

A vector consisting purely of X-components - Part 0 (纯由X分量所组成的向量 - 第0部分).

xB Vector<T>

A vector consisting purely of X-components - Part 1 (纯由X分量所组成的向量 - 第1部分).

y Vector<T>

A vector consisting purely of Y-components - Part 0 (纯由Y分量所组成的向量 - 第0部分).

yB Vector<T>

A vector consisting purely of Y-components - Part 1 (纯由Y分量所组成的向量 - 第1部分).

z Vector<T>

A vector consisting purely of Z-components - Part 0 (纯由Z分量所组成的向量 - 第0部分).

zB Vector<T>

A vector consisting purely of Z-components - Part 1 (纯由Z分量所组成的向量 - 第1部分).

data1 Vector<T>

Returns part 1 of the interleaved data (返回交织后数据的第1部分).

data2 Vector<T>

Returns part 2 of the interleaved data (返回交织后数据的第2部分).

data3 Vector<T>

Returns part 3 of the interleaved data (返回交织后数据的第3部分).

data4 Vector<T>

Returns part 4 of the interleaved data (返回交织后数据的第4部分).

data5 Vector<T>

Returns part 5 of the interleaved data (返回交织后数据的第5部分).

Returns

Vector<T>

Returns part 0 of the interleaved data (返回交织后数据的第0部分).

Type Parameters

T

The element type of the input parameter (输入参数的元素类型).