Home
last modified time | relevance | path

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

/aosp_15_r20/external/pytorch/torch/csrc/jit/mobile/
H A Dquantization.cpp13 std::string quantize_method_name = "quantize_" + method_name; in quantize_dynamic() local
27 m.find_method(quantize_method_name), in quantize_dynamic()
29 quantize_method_name, in quantize_dynamic()
48 m.get_method(quantize_method_name)(inputs); in quantize_dynamic() local
56 m.unsafeRemoveMethod(quantize_method_name); in quantize_dynamic()
/aosp_15_r20/external/pytorch/torch/ao/quantization/
H A Dquantize_jit.py167 quantize_method_name = "quantize_" + method_name
173 model_c, QuantType.DYNAMIC, quantize_method_name
/aosp_15_r20/external/pytorch/torch/csrc/jit/passes/quantization/
H A Dinsert_quant_dequant.cpp1831 std::string quantize_method_name = "quantize_" + orig_method_name; in InsertQuantDeQuantOnDevicePTQ() local
1832 cloneMethod(module, method_name, quantize_method_name); in InsertQuantDeQuantOnDevicePTQ()
1834 h.runForOnDevicePTQ(module, quantize_method_name); in InsertQuantDeQuantOnDevicePTQ()