* @brief Factory that returns a vector loaded from 32B aligned memory. */
| 199 | * @brief Factory that returns a vector loaded from 32B aligned memory. |
| 200 | */ |
| 201 | static ASTCENC_SIMD_INLINE vint8 loada(const int* p) |
| 202 | { |
| 203 | return vint8(_mm256_load_si256(reinterpret_cast<const __m256i*>(p))); |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * @brief Factory that returns a vector containing the lane IDs. |