Home
last modified time | relevance | path

Searched refs:have_avx512 (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/platform/
Dcpu_info.cc169 const bool have_avx512 = in Initialize() local
194 cpuid->have_avx512f_ = have_avx512 && ((ebx >> 16) & 0x1); in Initialize()
195 cpuid->have_avx512cd_ = have_avx512 && ((ebx >> 28) & 0x1); in Initialize()
196 cpuid->have_avx512er_ = have_avx512 && ((ebx >> 27) & 0x1); in Initialize()
197 cpuid->have_avx512pf_ = have_avx512 && ((ebx >> 26) & 0x1); in Initialize()
198 cpuid->have_avx512vl_ = have_avx512 && ((ebx >> 31) & 0x1); in Initialize()
199 cpuid->have_avx512bw_ = have_avx512 && ((ebx >> 30) & 0x1); in Initialize()
200 cpuid->have_avx512dq_ = have_avx512 && ((ebx >> 17) & 0x1); in Initialize()
201 cpuid->have_avx512vbmi_ = have_avx512 && ((ecx >> 1) & 0x1); in Initialize()
202 cpuid->have_avx512ifma_ = have_avx512 && ((ebx >> 21) & 0x1); in Initialize()
[all …]
/external/cpu_features/src/
Dcpuinfo_x86.c1173 bool have_avx512; member
1192 os_support.have_avx512 = HasZmmOsXSave(xcr0_eax); in CheckOsSupport()
1335 if (os_support.have_avx512) { in ParseCpuId()