diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-08-10 17:40:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-10 17:40:37 +0200 |
| commit | c0d829e588c5d25ee0fc0ff3212658c92c0fb0a8 (patch) | |
| tree | 39811fc48570ef219326fb23b2571ae27c55131a /src/cube.c | |
| parent | f148aa65dfe587e7b5d2f48b5005be670788dbe6 (diff) | |
| parent | 23c95fa1b64f35ba56594acc0bf06962647c4ba0 (diff) | |
| download | nissy-core-c0d829e588c5d25ee0fc0ff3212658c92c0fb0a8.tar.gz nissy-core-c0d829e588c5d25ee0fc0ff3212658c92c0fb0a8.zip | |
Merge pull request #1 from enricotenuti/master
cube_neon ver1
Diffstat (limited to 'src/cube.c')
| -rw-r--r-- | src/cube.c | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -27,6 +27,8 @@ void (*nissy_log)(const char *, ...); | |||
| 27 | #include <immintrin.h> | 27 | #include <immintrin.h> |
| 28 | #include "cube_avx2.h" | 28 | #include "cube_avx2.h" |
| 29 | #elif defined(CUBE_NEON) | 29 | #elif defined(CUBE_NEON) |
| 30 | #include <stdlib.h> | ||
| 31 | #include <arm_neon.h> | ||
| 30 | #include "cube_neon.h" | 32 | #include "cube_neon.h" |
| 31 | #else | 33 | #else |
| 32 | #include <stdlib.h> /* TODO: check if can be removed */ | 34 | #include <stdlib.h> /* TODO: check if can be removed */ |
