Table of Contents

Method YGroup2Zip

Namespace
Zyl.VectorTraits.Impl.AVector512
Assembly
VectorTraits.dll

YGroup2Zip(Vector512<float>, Vector512<float>, out Vector512<float>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

public virtual Vector512<float> YGroup2Zip(Vector512<float> x, Vector512<float> y, out Vector512<float> data1)

Parameters

x Vector512<float>

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

y Vector512<float>

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

data1 Vector512<float>

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

Returns

Vector512<float>

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

See Also

YGroup2Zip(Vector512<double>, Vector512<double>, out Vector512<double>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

public virtual Vector512<double> YGroup2Zip(Vector512<double> x, Vector512<double> y, out Vector512<double> data1)

Parameters

x Vector512<double>

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

y Vector512<double>

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

data1 Vector512<double>

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

Returns

Vector512<double>

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

See Also

YGroup2Zip(Vector512<sbyte>, Vector512<sbyte>, out Vector512<sbyte>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

[CLSCompliant(false)]
public virtual Vector512<sbyte> YGroup2Zip(Vector512<sbyte> x, Vector512<sbyte> y, out Vector512<sbyte> data1)

Parameters

x Vector512<sbyte>

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

y Vector512<sbyte>

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

data1 Vector512<sbyte>

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

Returns

Vector512<sbyte>

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

See Also

YGroup2Zip(Vector512<byte>, Vector512<byte>, out Vector512<byte>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

public virtual Vector512<byte> YGroup2Zip(Vector512<byte> x, Vector512<byte> y, out Vector512<byte> data1)

Parameters

x Vector512<byte>

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

y Vector512<byte>

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

data1 Vector512<byte>

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

Returns

Vector512<byte>

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

See Also

YGroup2Zip(Vector512<short>, Vector512<short>, out Vector512<short>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

public virtual Vector512<short> YGroup2Zip(Vector512<short> x, Vector512<short> y, out Vector512<short> data1)

Parameters

x Vector512<short>

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

y Vector512<short>

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

data1 Vector512<short>

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

Returns

Vector512<short>

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

See Also

YGroup2Zip(Vector512<ushort>, Vector512<ushort>, out Vector512<ushort>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

[CLSCompliant(false)]
public virtual Vector512<ushort> YGroup2Zip(Vector512<ushort> x, Vector512<ushort> y, out Vector512<ushort> data1)

Parameters

x Vector512<ushort>

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

y Vector512<ushort>

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

data1 Vector512<ushort>

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

Returns

Vector512<ushort>

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

See Also

YGroup2Zip(Vector512<int>, Vector512<int>, out Vector512<int>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

public virtual Vector512<int> YGroup2Zip(Vector512<int> x, Vector512<int> y, out Vector512<int> data1)

Parameters

x Vector512<int>

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

y Vector512<int>

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

data1 Vector512<int>

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

Returns

Vector512<int>

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

See Also

YGroup2Zip(Vector512<uint>, Vector512<uint>, out Vector512<uint>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

[CLSCompliant(false)]
public virtual Vector512<uint> YGroup2Zip(Vector512<uint> x, Vector512<uint> y, out Vector512<uint> data1)

Parameters

x Vector512<uint>

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

y Vector512<uint>

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

data1 Vector512<uint>

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

Returns

Vector512<uint>

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

See Also

YGroup2Zip(Vector512<long>, Vector512<long>, out Vector512<long>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

public virtual Vector512<long> YGroup2Zip(Vector512<long> x, Vector512<long> y, out Vector512<long> data1)

Parameters

x Vector512<long>

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

y Vector512<long>

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

data1 Vector512<long>

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

Returns

Vector512<long>

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

See Also

YGroup2Zip(Vector512<ulong>, Vector512<ulong>, out Vector512<ulong>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

[CLSCompliant(false)]
public virtual Vector512<ulong> YGroup2Zip(Vector512<ulong> x, Vector512<ulong> y, out Vector512<ulong> data1)

Parameters

x Vector512<ulong>

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

y Vector512<ulong>

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

data1 Vector512<ulong>

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

Returns

Vector512<ulong>

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

See Also

YGroup2Zip(Vector512<ExInt128>, Vector512<ExInt128>, out Vector512<ExInt128>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

public virtual Vector512<ExInt128> YGroup2Zip(Vector512<ExInt128> x, Vector512<ExInt128> y, out Vector512<ExInt128> data1)

Parameters

x Vector512<ExInt128>

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

y Vector512<ExInt128>

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

data1 Vector512<ExInt128>

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

Returns

Vector512<ExInt128>

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

See Also

YGroup2Zip(Vector512<ExUInt128>, Vector512<ExUInt128>, out Vector512<ExUInt128>)

Interleave 2 vectors into 2-element groups. It converts the 2-element groups SoA to AoS (将2个向量交织为2-元素组. 它能将2元素组的 结构体数组 转为 数组结构体). Mnemonic: element_ref(i, data0, data1) := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := i/2.

[CLSCompliant(false)]
public virtual Vector512<ExUInt128> YGroup2Zip(Vector512<ExUInt128> x, Vector512<ExUInt128> y, out Vector512<ExUInt128> data1)

Parameters

x Vector512<ExUInt128>

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

y Vector512<ExUInt128>

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

data1 Vector512<ExUInt128>

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

Returns

Vector512<ExUInt128>

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

See Also