Home
last modified time | relevance | path

Searched refs:have_avx2 (Results 1 – 3 of 3) sorted by relevance

/external/adhd/cras/
Dconfigure.ac121 …[AS_HELP_STRING([--enable-avx2],[enable AVX2 optimizations])], have_avx2=$enableval, have_avx2=yes)
123 have_avx2=no
125 if test "$have_avx2" = "yes"; then
129 AM_CONDITIONAL(HAVE_AVX2, test "$have_avx2" = "yes")
152 AS_IF([test "$have_avx2" = "yes"], ENABLE_AVX2=yes, ENABLE_AVX2=no)
/external/valgrind/coregrind/
Dm_machine.c938 Bool have_lzcnt, have_avx, have_bmi, have_avx2; in VG_() local
1038 have_avx2 = False; in VG_()
1042 have_avx2 = (ebx & (1<<5)) != 0; /* True => have AVX2 */ in VG_()
1052 | (have_avx2 ? VEX_HWCAPS_AMD64_AVX2 : 0) in VG_()
/external/valgrind/VEX/priv/
Dmain_main.c1864 Bool have_avx2 = (hwcaps & VEX_HWCAPS_AMD64_AVX2) != 0; in check_hwcaps() local
1871 if (have_avx2 && !have_avx) in check_hwcaps()