Commit 80cab4a1 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #12094 from seiko2plus:coreFixAvx2Interleave32

parents 9076bb60 47202b33
...@@ -2156,9 +2156,9 @@ inline void v_store_interleave( unsigned* ptr, const v_uint32x8& b, const v_uint ...@@ -2156,9 +2156,9 @@ inline void v_store_interleave( unsigned* ptr, const v_uint32x8& b, const v_uint
} }
else else
{ {
_mm256_stream_si256((__m256i*)ptr, bgr0); _mm256_storeu_si256((__m256i*)ptr, bgr0);
_mm256_stream_si256((__m256i*)(ptr + 8), p2); _mm256_storeu_si256((__m256i*)(ptr + 8), p2);
_mm256_stream_si256((__m256i*)(ptr + 16), bgr2); _mm256_storeu_si256((__m256i*)(ptr + 16), bgr2);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment