* @brief Load a vector of gathered results from an array; */
| 918 | * @brief Load a vector of gathered results from an array; |
| 919 | */ |
| 920 | ASTCENC_SIMD_INLINE vfloat8 gatherf(const float* base, vint8 indices) |
| 921 | { |
| 922 | return vfloat8(_mm256_i32gather_ps(base, indices.m, 4)); |
| 923 | } |
| 924 | |
| 925 | /** |
| 926 | * @brief Load a vector of gathered results from an array using byte indices from memory |
no test coverage detected