* @brief Debug function to print a vector of ints. */
| 1181 | * @brief Debug function to print a vector of ints. |
| 1182 | */ |
| 1183 | ASTCENC_SIMD_INLINE void print(vint8 a) |
| 1184 | { |
| 1185 | alignas(32) int v[8]; |
| 1186 | storea(a, v); |
| 1187 | printf("v8_i32:\n %8d %8d %8d %8d %8d %8d %8d %8d\n", |
| 1188 | v[0], v[1], v[2], v[3], v[4], v[5], v[6], v[7]); |
| 1189 | } |
| 1190 | |
| 1191 | /** |
| 1192 | * @brief Debug function to print a vector of ints. |