Home
last modified time | relevance | path

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

/aosp_15_r20/external/pytorch/torch/csrc/jit/mobile/model_tracer/
H A DMobileModelRunner.cpp148 std::string function_to_call = entry.second; in get_many_functions_bundled_inputs() local
150 auto has_func_to_call = module_->find_method(function_to_call); in get_many_functions_bundled_inputs()
154 function_to_call, in get_many_functions_bundled_inputs()
157 c10::IValue bundled_inputs = module_->run_method(function_to_call); in get_many_functions_bundled_inputs()
/aosp_15_r20/external/ComputeLibrary/src/cpu/kernels/
H A 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()
H A 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()