Table of Contents

Method YGroup3UnzipX2_Bit128

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

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

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

Parameters

data0 Vector256<T>

A vector made of 3-element groups - Part 0 (由3元素组所组成的向量 - 第0部分).

data1 Vector256<T>

A vector made of 3-element groups - Part 1 (由3元素组所组成的向量 - 第1部分).

data2 Vector256<T>

A vector made of 3-element groups - Part 2 (由3元素组所组成的向量 - 第2部分).

data3 Vector256<T>

A vector made of 3-element groups - Part 3 (由3元素组所组成的向量 - 第3部分).

data4 Vector256<T>

A vector made of 3-element groups - Part 4 (由3元素组所组成的向量 - 第4部分).

data5 Vector256<T>

A vector made of 3-element groups - Part 5 (由3元素组所组成的向量 - 第5部分).

xB Vector256<T>

Returns the vector made of the X-components - Part 1 (返回X分量所组成的向量 - 第1部分).

y Vector256<T>

Returns the vector made of the Y-components - Part 0 (返回Y分量所组成的向量 - 第0部分).

yB Vector256<T>

Returns the vector made of the Y-components - Part 1 (返回Y分量所组成的向量 - 第1部分).

z Vector256<T>

Returns the vector made of the Z-components - Part 0 (返回Z分量所组成的向量 - 第0部分).

zB Vector256<T>

Returns the vector made of the Z-components - Part 1 (返回Z分量所组成的向量 - 第1部分).

Returns

Vector256<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