Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GatherVector256() [9/9]

static unsafe Vector256< ulong > System.Runtime.Intrinsics.X86.Avx2.GatherVector256 ( ulong * baseAddress,
Vector256< long > index,
byte scale )
inlinestaticinherited

Definition at line 994 of file Avx2.cs.

995 {
996 return scale switch
997 {
998 1 => GatherVector256(baseAddress, index, 1),
999 2 => GatherVector256(baseAddress, index, 2),
1000 4 => GatherVector256(baseAddress, index, 4),
1001 8 => GatherVector256(baseAddress, index, 8),
1002 _ => throw new ArgumentOutOfRangeException("scale"),
1003 };
1004 }
static unsafe Vector256< int > GatherVector256(int *baseAddress, Vector256< int > index, byte scale)
Definition Avx2.cs:886

References System.Runtime.Intrinsics.X86.Avx2.GatherVector256(), and System.index.