Table of Contents

Method YGroup2ZipHigh

Namespace
Zyl.VectorTraits.Impl
Assembly
VectorTraits.dll

YGroup2ZipHigh<T>(IWVectorTraits512, Vector512<T>, Vector512<T>)

Interleave 2 vectors into 2-element groups and returns the data in the high position. (将2个向量交织为2-元素组, 并返回高位置的数据). Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := (i+T.Count)/2.

[CLSCompliant(false)]
[Obsolete("It is only suitable for unit testing because it contains branching statements and has poor performance. In general, it is recommended to use the non-generic version of the methods (因它含有分支语句, 性能较差, 仅适用于单元测试. 一般情况下, 建议使用非泛型版方法).")]
public static Vector512<T> YGroup2ZipHigh<T>(this IWVectorTraits512 athis, Vector512<T> x, Vector512<T> y) where T : struct

Parameters

athis IWVectorTraits512
x Vector512<T>

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

y Vector512<T>

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

Returns

Vector512<T>

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

Type Parameters

T
See Also

YGroup2ZipHigh(IWVectorTraits512, Vector512<Int128>, Vector512<Int128>)

Interleave 2 vectors into 2-element groups and returns the data in the high position. (将2个向量交织为2-元素组, 并返回高位置的数据). Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := (i+T.Count)/2.

[CLSCompliant(false)]
public static Vector512<Int128> YGroup2ZipHigh(this IWVectorTraits512 athis, Vector512<Int128> x, Vector512<Int128> y)

Parameters

athis IWVectorTraits512
x Vector512<Int128>

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

y Vector512<Int128>

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

Returns

Vector512<Int128>

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

See Also

YGroup2ZipHigh(IWVectorTraits512, Vector512<UInt128>, Vector512<UInt128>)

Interleave 2 vectors into 2-element groups and returns the data in the high position. (将2个向量交织为2-元素组, 并返回高位置的数据). Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := (i+T.Count)/2.

[CLSCompliant(false)]
public static Vector512<UInt128> YGroup2ZipHigh(this IWVectorTraits512 athis, Vector512<UInt128> x, Vector512<UInt128> y)

Parameters

athis IWVectorTraits512
x Vector512<UInt128>

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

y Vector512<UInt128>

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

Returns

Vector512<UInt128>

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

See Also