* @brief Return a float value for an integer vector. */
| 987 | * @brief Return a float value for an integer vector. |
| 988 | */ |
| 989 | ASTCENC_SIMD_INLINE vfloat8 int_to_float(vint8 a) |
| 990 | { |
| 991 | return vfloat8(_mm256_cvtepi32_ps(a.m)); |
| 992 | } |
| 993 | |
| 994 | /** |
| 995 | * @brief Return a float value as an integer bit pattern (i.e. no conversion). |