Method YShuffleKernel_Args
- Namespace
- Zyl.VectorTraits.Impl
- Assembly
- VectorTraits.dll
YShuffleKernel_Args(Vector256<sbyte>, out Vector256<sbyte>, out Vector256<sbyte>)
Arguments calculation for only shuffle (仅换位的参数计算). Provide arguments for YShuffleKernel_Core (为 YShuffleKernel_Core 提供参数). If the index value is out of range, the result is undefined (若索引值超出范围, 结果是未定义的). You can use the IndexMask to constrain the parameters (可使用 IndexMask 掩码来约束参数).
Mnemonic: rt[i] := vector[indices[i]]
. Conditions: 0<=indices[i] && indices[i]<Count
.
void YShuffleKernel_Args(Vector256<sbyte> indices, out Vector256<sbyte> args0, out Vector256<sbyte> args1)
Parameters
indices
Vector256<sbyte>The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).
args0
Vector256<sbyte>Arguments 0 (参数0). Used for YShuffleKernel_Core .
args1
Vector256<sbyte>Arguments 1 (参数1). Used for YShuffleKernel_Core .
- See Also
YShuffleKernel_Args(Vector256<byte>, out Vector256<byte>, out Vector256<byte>)
Arguments calculation for only shuffle (仅换位的参数计算). Provide arguments for YShuffleKernel_Core (为 YShuffleKernel_Core 提供参数). If the index value is out of range, the result is undefined (若索引值超出范围, 结果是未定义的). You can use the IndexMask to constrain the parameters (可使用 IndexMask 掩码来约束参数).
Mnemonic: rt[i] := vector[indices[i]]
. Conditions: 0<=indices[i] && indices[i]<Count
.
void YShuffleKernel_Args(Vector256<byte> indices, out Vector256<byte> args0, out Vector256<byte> args1)
Parameters
indices
Vector256<byte>The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).
args0
Vector256<byte>Arguments 0 (参数0). Used for YShuffleKernel_Core .
args1
Vector256<byte>Arguments 1 (参数1). Used for YShuffleKernel_Core .
- See Also
YShuffleKernel_Args(Vector256<short>, out Vector256<short>, out Vector256<short>)
Arguments calculation for only shuffle (仅换位的参数计算). Provide arguments for YShuffleKernel_Core (为 YShuffleKernel_Core 提供参数). If the index value is out of range, the result is undefined (若索引值超出范围, 结果是未定义的). You can use the IndexMask to constrain the parameters (可使用 IndexMask 掩码来约束参数).
Mnemonic: rt[i] := vector[indices[i]]
. Conditions: 0<=indices[i] && indices[i]<Count
.
void YShuffleKernel_Args(Vector256<short> indices, out Vector256<short> args0, out Vector256<short> args1)
Parameters
indices
Vector256<short>The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).
args0
Vector256<short>Arguments 0 (参数0). Used for YShuffleKernel_Core .
args1
Vector256<short>Arguments 1 (参数1). Used for YShuffleKernel_Core .
- See Also
YShuffleKernel_Args(Vector256<ushort>, out Vector256<ushort>, out Vector256<ushort>)
Arguments calculation for only shuffle (仅换位的参数计算). Provide arguments for YShuffleKernel_Core (为 YShuffleKernel_Core 提供参数). If the index value is out of range, the result is undefined (若索引值超出范围, 结果是未定义的). You can use the IndexMask to constrain the parameters (可使用 IndexMask 掩码来约束参数).
Mnemonic: rt[i] := vector[indices[i]]
. Conditions: 0<=indices[i] && indices[i]<Count
.
void YShuffleKernel_Args(Vector256<ushort> indices, out Vector256<ushort> args0, out Vector256<ushort> args1)
Parameters
indices
Vector256<ushort>The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).
args0
Vector256<ushort>Arguments 0 (参数0). Used for YShuffleKernel_Core .
args1
Vector256<ushort>Arguments 1 (参数1). Used for YShuffleKernel_Core .
- See Also
YShuffleKernel_Args(Vector256<int>, out Vector256<int>, out Vector256<int>)
Arguments calculation for only shuffle (仅换位的参数计算). Provide arguments for YShuffleKernel_Core (为 YShuffleKernel_Core 提供参数). If the index value is out of range, the result is undefined (若索引值超出范围, 结果是未定义的). You can use the IndexMask to constrain the parameters (可使用 IndexMask 掩码来约束参数).
Mnemonic: rt[i] := vector[indices[i]]
. Conditions: 0<=indices[i] && indices[i]<Count
.
void YShuffleKernel_Args(Vector256<int> indices, out Vector256<int> args0, out Vector256<int> args1)
Parameters
indices
Vector256<int>The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).
args0
Vector256<int>Arguments 0 (参数0). Used for YShuffleKernel_Core .
args1
Vector256<int>Arguments 1 (参数1). Used for YShuffleKernel_Core .
- See Also
YShuffleKernel_Args(Vector256<uint>, out Vector256<uint>, out Vector256<uint>)
Arguments calculation for only shuffle (仅换位的参数计算). Provide arguments for YShuffleKernel_Core (为 YShuffleKernel_Core 提供参数). If the index value is out of range, the result is undefined (若索引值超出范围, 结果是未定义的). You can use the IndexMask to constrain the parameters (可使用 IndexMask 掩码来约束参数).
Mnemonic: rt[i] := vector[indices[i]]
. Conditions: 0<=indices[i] && indices[i]<Count
.
void YShuffleKernel_Args(Vector256<uint> indices, out Vector256<uint> args0, out Vector256<uint> args1)
Parameters
indices
Vector256<uint>The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).
args0
Vector256<uint>Arguments 0 (参数0). Used for YShuffleKernel_Core .
args1
Vector256<uint>Arguments 1 (参数1). Used for YShuffleKernel_Core .
- See Also
YShuffleKernel_Args(Vector256<long>, out Vector256<long>, out Vector256<long>)
Arguments calculation for only shuffle (仅换位的参数计算). Provide arguments for YShuffleKernel_Core (为 YShuffleKernel_Core 提供参数). If the index value is out of range, the result is undefined (若索引值超出范围, 结果是未定义的). You can use the IndexMask to constrain the parameters (可使用 IndexMask 掩码来约束参数).
Mnemonic: rt[i] := vector[indices[i]]
. Conditions: 0<=indices[i] && indices[i]<Count
.
void YShuffleKernel_Args(Vector256<long> indices, out Vector256<long> args0, out Vector256<long> args1)
Parameters
indices
Vector256<long>The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).
args0
Vector256<long>Arguments 0 (参数0). Used for YShuffleKernel_Core .
args1
Vector256<long>Arguments 1 (参数1). Used for YShuffleKernel_Core .
- See Also
YShuffleKernel_Args(Vector256<ulong>, out Vector256<ulong>, out Vector256<ulong>)
Arguments calculation for only shuffle (仅换位的参数计算). Provide arguments for YShuffleKernel_Core (为 YShuffleKernel_Core 提供参数). If the index value is out of range, the result is undefined (若索引值超出范围, 结果是未定义的). You can use the IndexMask to constrain the parameters (可使用 IndexMask 掩码来约束参数).
Mnemonic: rt[i] := vector[indices[i]]
. Conditions: 0<=indices[i] && indices[i]<Count
.
void YShuffleKernel_Args(Vector256<ulong> indices, out Vector256<ulong> args0, out Vector256<ulong> args1)
Parameters
indices
Vector256<ulong>The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).
args0
Vector256<ulong>Arguments 0 (参数0). Used for YShuffleKernel_Core .
args1
Vector256<ulong>Arguments 1 (参数1). Used for YShuffleKernel_Core .
- See Also