Searched refs:can_use_fixedpoint (Results 1 – 4 of 4) sorted by relevance
/aosp_15_r20/external/ComputeLibrary/src/cpu/kernels/ |
H A D | CpuSubKernel.cpp | 83 …ypeISASelectorData & data) { return ((data.dt == DataType::QASYMM8) && data.can_use_fixedpoint); }, in __anon510666dd0802() 88 …electorData & data) { return ((data.dt == DataType::QASYMM8_SIGNED) && data.can_use_fixedpoint); }, in __anon510666dd0902() 116 const auto can_use_fixedpoint = sub_q8_neon_fixedpoint_possible(&src0, &src1, &dst); in validate_arguments() local 117 …ubKernelDataTypeISASelectorData{ src0.data_type(), CPUInfo::get().get_isa(), can_use_fixedpoint }); in validate_arguments() 149 const auto can_use_fixedpoint = sub_q8_neon_fixedpoint_possible(src0, src1, dst); in configure() local 150 …bKernelDataTypeISASelectorData{ src0->data_type(), CPUInfo::get().get_isa(), can_use_fixedpoint }); in configure()
|
H A D | CpuAddKernel.cpp | 58 return (data.dt == DataType::QASYMM8) && data.can_use_fixedpoint; in __anon86e7f2dc0302() 66 return (data.dt == DataType::QASYMM8_SIGNED) && data.can_use_fixedpoint; in __anon86e7f2dc0402() 204 const auto can_use_fixedpoint = add_q8_neon_fixedpoint_possible(&src0, &src1, &dst); in validate_arguments() local 206 … CPUInfo::get().get_isa(), can_use_fixedpoint }); in validate_arguments() 218 const auto can_use_fixedpoint = add_q8_neon_fixedpoint_possible(src0, src1, dst); in configure() local 220 … CPUInfo::get().get_isa(), can_use_fixedpoint }); in configure()
|
H A D | CpuKernelSelectionTypes.h | 91 bool can_use_fixedpoint; member
|
/aosp_15_r20/external/ComputeLibrary/tests/validation/NEON/ |
H A D | ArithmeticAddition.cpp | 117 cpu_ext, data_type, can_use_fixedpoint) 127 …ementation(CpuAddKernelDataTypeISASelectorData{data_type, cpu_isa, can_use_fixedpoint}, cpu::Kerne… 134 if(qasymm8_any && can_use_fixedpoint)
|