Home
last modified time | relevance | path

Searched refs:get_cpu_model (Results 1 – 20 of 20) sorted by relevance

/external/ComputeLibrary/src/core/CPP/
DCPPTypes.cpp68 CPUModel CPUInfo::get_cpu_model(unsigned int cpuid) const in get_cpu_model() function in CPUInfo
111 CPUModel CPUInfo::get_cpu_model() const in get_cpu_model() function in CPUInfo
114 return get_cpu_model(0); in get_cpu_model()
116 return get_cpu_model(sched_getcpu()); in get_cpu_model()
/external/ComputeLibrary/src/core/NEON/kernels/arm_gemm/kernels/
Da64_sgemm_8x12.hpp71 switch (ci->get_cpu_model()) { in get_performance_parameters()
90 switch(ci->get_cpu_model()) { in cls_a64_sgemm_8x12()
Da64_hgemm_8x24.hpp67 switch (ci->get_cpu_model()) { in get_performance_parameters()
80 auto model = ci->get_cpu_model(); in cls_a64_hgemm_8x24()
Da32_sgemm_8x6.hpp71 switch(ci->get_cpu_model()) { in sgemm_8x6()
Da64_hybrid_fp32_mla_6x16.hpp74 switch (ci->get_cpu_model()) { in get_performance_parameters()
Da64_hybrid_fp16_mla_6x32.hpp76 switch (ci->get_cpu_model()) { in get_performance_parameters()
Da64_smallK_hybrid_s8s32_dot_6x4.hpp83 if (ci->get_cpu_model() == CPUModel::A55r1) { in cls_a64_smallK_hybrid_s8s32_dot_6x4()
Da64_smallK_hybrid_u8u32_dot_6x4.hpp83 if (ci->get_cpu_model() == CPUModel::A55r1) { in cls_a64_smallK_hybrid_u8u32_dot_6x4()
Da64_smallK_hybrid_s8s32_dot_8x4.hpp83 if (ci->get_cpu_model() == CPUModel::A55r1) { in cls_a64_smallK_hybrid_s8s32_dot_8x4()
Da64_smallK_hybrid_u8u32_dot_8x4.hpp83 if (ci->get_cpu_model() == CPUModel::A55r1) { in cls_a64_smallK_hybrid_u8u32_dot_8x4()
Da64_gemm_s8_8x12.hpp66 auto mod = ci->get_cpu_model(); in cls_a64_gemm_s8_8x12()
Da64_gemm_u8_8x12.hpp74 auto mod = ci->get_cpu_model(); in cls_a64_gemm_u8_8x12()
/external/ComputeLibrary/arm_compute/core/CPP/
DCPPTypes.h145 CPUModel get_cpu_model(unsigned int cpuid) const;
150 CPUModel get_cpu_model() const;
/external/ComputeLibrary/src/core/NEON/kernels/arm_gemm/
Dgemm_int8.cpp108 … [](const GemmArgs &args) { return args._ci->get_cpu_model() == CPUModel::A53 && args._Ksize>4; }, in __anon6d71441c1002()
Dgemm_uint8.cpp109 [](const GemmArgs &args) { return args._ci->get_cpu_model() == CPUModel::A53; }, in __anonb2d5b2910f02()
Dgemm_qint8.cpp131 …[](const GemmArgs &args, const Requantize32 &) { return args._ci->get_cpu_model() == CPUModel::A53… in __anone0e3ee8d1202()
Dgemm_quint8.cpp121 …[](const GemmArgs &args, const Requantize32 &) { return args._ci->get_cpu_model() == CPUModel::A53… in __anon949dab221002()
/external/ComputeLibrary/src/core/
DTracePoint.cpp97 str << "[CPUCore " << k << "]" << to_string(arg._ci->get_cpu_model(0)) << " "; in to_string()
/external/ComputeLibrary/tests/
Dmain.cpp253 const CPUModel model = cpu_info.get_cpu_model(j); in main()
/external/ComputeLibrary/src/runtime/NEON/functions/
DNEConvolutionLayer.cpp203 …if(NEScheduler::get().cpu_info().get_cpu_model() == CPUModel::A55r1 && enable_fast_math && input->… in get_convolution_method()