mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 03:00:14 +08:00
42ac089e12
- _mm256_bslli_epi128() works in GCC 4.9.3+ only - Android NDK r10 doesn't support this instruction
12 lines
340 B
C++
12 lines
340 B
C++
#if !defined __AVX2__ // MSVC supports this flag since MSVS 2013
|
|
#error "__AVX2__ define is missing"
|
|
#endif
|
|
#include <immintrin.h>
|
|
void test()
|
|
{
|
|
int data[8] = {0,0,0,0, 0,0,0,0};
|
|
__m256i a = _mm256_loadu_si256((const __m256i *)data);
|
|
__m256i b = _mm256_bslli_epi128(a, 1); // available in GCC 4.9.3+
|
|
}
|
|
int main() { return 0; }
|