From 67d3fe3f81e3d58b1398da6a603c3ba11d37f979 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Wed, 6 Nov 2024 14:51:16 -0500 Subject: [PATCH] Missing SSSE3 requirement for some uninterleave implementations --- src/singeli/src/transpose.singeli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/singeli/src/transpose.singeli b/src/singeli/src/transpose.singeli index fc970eb6..7fc67f9b 100644 --- a/src/singeli/src/transpose.singeli +++ b/src/singeli/src/transpose.singeli @@ -220,7 +220,7 @@ fn interleave{T}(r0:*void, x0:*void, x1:*void, n:u64) : void = { } } # SIMD implementations -def uninterleave{r0:*T, r1:*T, xp:*T, n if has_simd} = { +def uninterleave{r0:*T, r1:*T, xp:*T, n if has_simd and (not hasarch{'X86_64'} or width{T}>=32 or hasarch{'SSSE3'})} = { def l = arch_defvw / width{T} def V = [l]T rv0 := *V~~r0; rv1 := *V~~r1; xv := *V~~xp