From 643816eef6162c7b7f5432316b75f92cf1dd33d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=B5=E5=B0=8F=E5=87=A1?= <2672931+whyb@users.noreply.github.com> Date: Tue, 10 Oct 2023 14:17:45 +0800 Subject: [PATCH] Remove comments --- src/layer/x86/shufflechannel_x86.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/layer/x86/shufflechannel_x86.cpp b/src/layer/x86/shufflechannel_x86.cpp index 1e255fab50d..8afb22b2e2e 100644 --- a/src/layer/x86/shufflechannel_x86.cpp +++ b/src/layer/x86/shufflechannel_x86.cpp @@ -343,10 +343,6 @@ int ShuffleChannel_x86::forward(const Mat& bottom_blob, Mat& top_blob, const Opt for (int i = 0; i < size; i++) { __m256 _p0 = _mm256_loadu_ps(ptr0); - // macro `_mm256_loadu2_m128` is declared in IntelĀ® Intrinsics Guide but somehow missed in - // __m256 _p1 = _mm256_loadu2_m128(ptr2, ptr1); - // issue #5072 _mm256_set_m128 is only availble on gcc8+ - // __m256 _p1 = _mm256_set_m128(_mm_loadu_ps(ptr2), _mm_loadu_ps(ptr1)); __m256 _p1 = _mm256_castps128_ps256(_mm_loadu_ps(ptr1)); _p1 = _mm256_insertf128_ps(_p1, _mm_loadu_ps(ptr2), 1);