diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-03 23:13:05 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-03 23:26:29 +0100 |
| commit | ade2ed050a2d472b4dd01e30666f5e7ec5030724 (patch) | |
| tree | bab29caba8fb2171348fb664d6098eb77d155a53 /src/cube.h | |
| parent | 9b1c9371333e20611ec5422e660ebec7e66c4261 (diff) | |
| download | nissy-core-ade2ed050a2d472b4dd01e30666f5e7ec5030724.tar.gz nissy-core-ade2ed050a2d472b4dd01e30666f5e7ec5030724.zip | |
Moves work with avx2, fixed some stuff
Diffstat (limited to 'src/cube.h')
| -rw-r--r-- | src/cube.h | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -3,6 +3,7 @@ typedef struct { | |||
| 3 | uint8_t e[16]; | 3 | uint8_t e[16]; |
| 4 | } cube_arr_t; | 4 | } cube_arr_t; |
| 5 | #ifdef CUBE_AVX2 | 5 | #ifdef CUBE_AVX2 |
| 6 | #include <immintrin.h> | ||
| 6 | typedef __m256i cube_t; | 7 | typedef __m256i cube_t; |
| 7 | #else | 8 | #else |
| 8 | typedef cube_arr_t cube_t; | 9 | typedef cube_arr_t cube_t; |
