Merge pull request #12094 from seiko2plus:coreFixAvx2Interleave32

pull/12102/head
Alexander Alekhin 6 years ago
commit 80cab4a163
  1. 6
      modules/core/include/opencv2/core/hal/intrin_avx.hpp

@ -2156,9 +2156,9 @@ inline void v_store_interleave( unsigned* ptr, const v_uint32x8& b, const v_uint
}
else
{
_mm256_stream_si256((__m256i*)ptr, bgr0);
_mm256_stream_si256((__m256i*)(ptr + 8), p2);
_mm256_stream_si256((__m256i*)(ptr + 16), bgr2);
_mm256_storeu_si256((__m256i*)ptr, bgr0);
_mm256_storeu_si256((__m256i*)(ptr + 8), p2);
_mm256_storeu_si256((__m256i*)(ptr + 16), bgr2);
}
}

Loading…
Cancel
Save