From 50ddac13b7248ac7934d77aba4ae2864d742cfc7 Mon Sep 17 00:00:00 2001 From: Yang Hau Date: Sat, 24 Aug 2024 19:40:26 +0800 Subject: [PATCH] wip --- tests/impl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/impl.cpp b/tests/impl.cpp index 656acefa..1db390a9 100644 --- a/tests/impl.cpp +++ b/tests/impl.cpp @@ -11798,17 +11798,17 @@ static int popcnt_reference(uint64_t a) count += a & 1; a >>= 1; } - printf("return count\n"); + // printf("return count\n"); return count; } result_t test_mm_popcnt_u32(const SSE2NEONTestImpl &impl, uint32_t iter) { const uint64_t *a = (const uint64_t *) impl.mTestIntPointer1; - printf("mm_popcnt_u32\n"); + // printf("mm_popcnt_u32\n"); ASSERT_RETURN(popcnt_reference((uint32_t) a[0]) == _mm_popcnt_u32((unsigned int) a[0])); - printf("end\n"); + // printf("end\n"); return TEST_SUCCESS; }