Home
last modified time | relevance | path

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

/aosp_15_r20/external/pytorch/torch/ao/ns/
H A D_numeric_suite.py230 def _convert_tuple_to_list(t: Any) -> Any: function
231 return [_convert_tuple_to_list(x) for x in t] if type(t) is tuple else t
268 xl = _convert_tuple_to_list(x)
/aosp_15_r20/external/pytorch/torch/quantization/
H A D_numeric_suite.py11 _convert_tuple_to_list,