* @brief Return a float value for an integer vector. */
| 963 | * @brief Return a float value for an integer vector. |
| 964 | */ |
| 965 | ASTCENC_SIMD_INLINE vfloat int_to_float(vint a) |
| 966 | { |
| 967 | return vfloat(__riscv_vfcvt_f(a.m, vfloat::vl())); |
| 968 | } |
| 969 | |
| 970 | /** |
| 971 | * @brief Return a float value as an integer bit pattern (i.e. no conversion). |