(t: torch.Tensor)
| 173 | |
| 174 | |
| 175 | def unwrap_functional(t: torch.Tensor) -> torch.Tensor: |
| 176 | assert isinstance(t, torch.Tensor) |
| 177 | return _maybe_unwrap_functional_tensor(t, reapply_views=False) |
| 178 | |
| 179 | |
| 180 | def unwrap_proxy(t: LeafValue) -> Union[LeafValue, torch.fx.Proxy]: |
no outgoing calls
no test coverage detected