* @brief Factory that returns a vector loaded from 32B aligned memory. */
| 102 | * @brief Factory that returns a vector loaded from 32B aligned memory. |
| 103 | */ |
| 104 | static ASTCENC_SIMD_INLINE vfloat8 loada(const float* p) |
| 105 | { |
| 106 | return vfloat8(_mm256_load_ps(p)); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * @brief The vector ... |