Home
last modified time | relevance | path

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

/aosp_15_r20/external/pytorch/torch/_dynamo/variables/
H A Dtensor.py1268 self, proxy: torch.fx.Proxy, *, raw_value=None, need_unwrap=True, **kwargs argument
1272 self.need_unwrap = need_unwrap
1275 def from_tensor_variable(cls, tensor_variable, raw_value, need_unwrap=True): argument
1280 need_unwrap=need_unwrap,
1294 need_unwrap = kwargs.pop("need_unwrap", False)
1296 self.need_unwrap = need_unwrap
H A Dbuiltin.py921 need_unwrap = any(
922 x.need_unwrap
932 need_unwrap=need_unwrap,
1150 need_unwrap = any(
1151 x.need_unwrap
1156 result, raw_res, need_unwrap
/aosp_15_r20/external/pytorch/torch/_dynamo/
H A Dcodegen.py208 elif isinstance(value, UnspecializedPythonVariable) and value.need_unwrap: