Skip to content

Commit

Permalink
i8mm doesn't work either
Browse files Browse the repository at this point in the history
Signed-off-by: Martmists <[email protected]>
  • Loading branch information
Martmists-GH committed Aug 5, 2024
1 parent e5b71a4 commit 88b3752
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ kotlin {
)
} else {
listOf(
"i8mm_neon64",
// "i8mm_neon64", // Similar error to avx512vnni_avx512vbmi
"neon64",
"neon",
"sve_128",
Expand Down
9 changes: 8 additions & 1 deletion src/lib/cpp/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,14 @@ using arch_list = xsimd::arch_list<
xsimd::sse2
>;
#elif defined(__aarch64__)
using arch_list = xsimd::all_arm_architectures;
using arch_list = xsimd::arch_list<
xsimd::detail::sve<512>,
xsimd::detail::sve<256>,
xsimd::detail::sve<128>,
// xsimd::i8mm<xsimd::neon64>,
xsimd::neon64,
xsimd::neon
>;
#else
#error "Unsupported architecture"
#endif
Expand Down

0 comments on commit 88b3752

Please sign in to comment.