From ade2ed050a2d472b4dd01e30666f5e7ec5030724 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 3 Nov 2023 23:13:05 +0100 Subject: Moves work with avx2, fixed some stuff --- src/_trans_avx2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/_trans_avx2.c') diff --git a/src/_trans_avx2.c b/src/_trans_avx2.c index 29ee942..e80bf79 100644 --- a/src/_trans_avx2.c +++ b/src/_trans_avx2.c @@ -7,7 +7,7 @@ flipallcorners(cube_t c) shright = _mm256_srli_si256(c, 1); summed = _mm256_or_si256(shleft, shright); newco = _mm256_and_si256(summed, _co_avx2); - cleanco = _mm256_andnot_si256_(c, _co_avx2); + cleanco = _mm256_andnot_si256(c, _co_avx2); ret = _mm256_and_si256(cleanco, newco); return ret; -- cgit v1.3