Home
last modified time | relevance | path

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

/external/ComputeLibrary/src/cpu/kernels/
DCpuQuantizeKernel.cpp139 std::string function_to_call("op_"); in configure() local
140 function_to_call += string_from_data_type(src->data_type()) + "_"; in configure()
141 function_to_call += string_from_data_type(dst->data_type()); in configure()
143 auto it = quant_map.find(function_to_call); in configure()
DCpuScaleKernel.cpp236 std::string function_to_call("scale_"); in configure() local
237 function_to_call += string_from_data_type(src->data_type()) + "_"; in configure()
238 function_to_call += string_from_data_layout(_data_layout) + "_"; in configure()
239 function_to_call += string_from_interpolation_policy(_policy); in configure()
265 auto it = map_function.find(function_to_call); in configure()