* @brief Return the sqrt of the lanes in the vector. */
| 910 | * @brief Return the sqrt of the lanes in the vector. |
| 911 | */ |
| 912 | ASTCENC_SIMD_INLINE vfloat8 sqrt(vfloat8 a) |
| 913 | { |
| 914 | return vfloat8(_mm256_sqrt_ps(a.m)); |
| 915 | } |
| 916 | |
| 917 | /** |
| 918 | * @brief Load a vector of gathered results from an array; |