Table of Contents

Method YGroup3ZipX2_Bit128

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

YGroup3ZipX2_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>)

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

Parameters

x Vector128<T>

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

xB Vector128<T>

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

y Vector128<T>

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

yB Vector128<T>

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

z Vector128<T>

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

zB Vector128<T>

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

data1 Vector128<T>

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

data2 Vector128<T>

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

data3 Vector128<T>

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

data4 Vector128<T>

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

data5 Vector128<T>

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

Returns

Vector128<T>

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

Type Parameters

T

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