Home
last modified time | relevance | path

Searched refs:has_avx (Results 1 – 23 of 23) sorted by relevance

/external/llvm-project/lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/
DTestMPXOffsetIntersection.py40 has_avx = False
44 has_avx = True
47 if not (has_avx and has_mpx):
/external/virglrenderer/src/gallium/auxiliary/util/
Du_cpu_detect.c369 util_cpu_caps.has_avx = ((regs2[2] >> 28) & 1) && // AVX in util_cpu_detect()
385 if (util_cpu_caps.has_avx && regs[0] >= 0x00000007) { in util_cpu_detect()
407 util_cpu_caps.has_xop = util_cpu_caps.has_avx && in util_cpu_detect()
445 debug_printf("util_cpu_caps.has_avx = %u\n", util_cpu_caps.has_avx); in util_cpu_detect()
Du_cpu_detect.h66 unsigned has_avx:1; member
/external/libchrome/base/
Dcpu_unittest.cc65 if (cpu.has_avx()) { in TEST()
115 if (cpu.has_avx()) { in TEST()
Dcpu.h49 bool has_avx() const { return has_avx_; } in has_avx() function
Dcpu.cc232 if (has_avx()) return AVX; in GetIntelMicroArchitecture()
/external/mesa3d/src/util/
Du_cpu_detect.c619 util_cpu_caps.has_avx = ((regs2[2] >> 28) & 1) && // AVX in util_cpu_detect_once()
622 util_cpu_caps.has_f16c = ((regs2[2] >> 29) & 1) && util_cpu_caps.has_avx; in util_cpu_detect_once()
623 util_cpu_caps.has_fma = ((regs2[2] >> 12) & 1) && util_cpu_caps.has_avx; in util_cpu_detect_once()
636 if (util_cpu_caps.has_avx && regs[0] >= 0x00000007) { in util_cpu_detect_once()
675 util_cpu_caps.has_xop = util_cpu_caps.has_avx && in util_cpu_detect_once()
722 debug_printf("util_cpu_caps.has_avx = %u\n", util_cpu_caps.has_avx); in util_cpu_detect_once()
Du_cpu_detect.h77 unsigned has_avx:1; member
/external/libyuv/files/util/
Dcpuid.c82 int has_avx = TestCpuFlag(kCpuHasAVX); in main() local
98 printf("Has AVX %x\n", has_avx); in main()
/external/rust/crates/aho-corasick/src/packed/teddy/
Dcompile.rs90 let has_avx = is_x86_feature_detected!("avx2"); in build_imp() localVariable
92 if !has_avx { in build_imp()
101 } else if !has_ssse3 && !has_avx { in build_imp()
104 has_avx in build_imp()
/external/libyuv/files/unit_test/
Dcpu_test.cc35 int has_avx = TestCpuFlag(kCpuHasAVX); in TEST_F() local
52 printf("Has AVX %d\n", has_avx); in TEST_F()
/external/tensorflow/tensorflow/core/platform/
Dport_test.cc184 const bool has_avx = TestCPUFeature(CPUFeature::AVX); in TEST() local
185 LOG(INFO) << "has_avx = " << has_avx; in TEST()
/external/llvm-project/lldb/test/API/commands/register/register/register_command/
DTestRegisters.py401 has_avx = False
407 has_avx = True
416 if has_avx:
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_init.c441 util_cpu_caps.has_avx = 0; in lp_build_init()
448 if (util_cpu_caps.has_avx2 || util_cpu_caps.has_avx) { in lp_build_init()
469 util_cpu_caps.has_avx = 0; in lp_build_init()
Dlp_bld_arit.c113 else if (type.length <= 4 || !util_cpu_caps.has_avx) { in lp_build_min_simple()
127 else if (type.length == 2 || !util_cpu_caps.has_avx) { in lp_build_min_simple()
283 else if (type.length <= 4 || !util_cpu_caps.has_avx) { in lp_build_max_simple()
297 else if (type.length == 2 || !util_cpu_caps.has_avx) { in lp_build_max_simple()
720 else if (util_cpu_caps.has_avx && bld->type.width == 32 && in lp_build_hadd_partial4()
1335 (util_cpu_caps.has_avx && type.width == 32 && type.length == 8)) && in lp_build_div()
1902 (util_cpu_caps.has_avx && type.width*type.length == 256) || in arch_rounding_available()
1964 assert(util_cpu_caps.has_avx); in lp_build_iround_nearest_sse2()
2382 (util_cpu_caps.has_avx && type.width == 32 && type.length == 8)) { in lp_build_iround()
2668 (util_cpu_caps.has_avx && type.width == 32 && type.length == 8))){ in lp_build_rcp()
[all …]
Dlp_bld_misc.cpp415 MAttrs.push_back(util_cpu_caps.has_avx ? "+avx" : "-avx"); in lp_build_create_jit_compiler_for_module()
Dlp_bld_conv.c503 util_cpu_caps.has_avx) in lp_build_conv_auto()
713 util_cpu_caps.has_avx) { in lp_build_conv()
Dlp_bld_logic.c353 (util_cpu_caps.has_avx && in lp_build_select()
Dlp_bld_pack.c325 if (type.length == 2 && type.width == 128 && util_cpu_caps.has_avx) { in lp_build_interleave2()
/external/mesa3d/src/gallium/drivers/swr/
Dswr_loader.cpp126 if (util_cpu_caps.has_avx) { in swr_create_screen()
/external/cpu_features/
DREADME.md81 instruction set (e.g., `g++ -mavx`) and sets `has_avx` accordingly.
89 static const bool has_avx = CPU_FEATURES_COMPILED_X86_AVX || features.avx;
91 // use has_avx.
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_bld_depth.c449 else if(util_cpu_caps.has_avx && type.length == 8) { in lp_build_occlusion_count()
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/x86_64/
DDNBArchImplX86_64.cpp70 bool LogAVXAndReturn(AVXPresence has_avx, int err, const char * os_ver) { in LogAVXAndReturn() argument
73 has_avx, err, os_ver); in LogAVXAndReturn()
74 return (has_avx == eAVXPresent); in LogAVXAndReturn()