• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# mypy: allow-untyped-defs
2# defined in torch/csrc/lazy/python/init.cpp
3
4from typing import Any
5
6from torch import Tensor
7
8def _init(): ...
9def _get_tensors_ts_device_data_node(
10    tensors: list[Tensor],
11) -> tuple[list[int], list[Any]]: ...
12def _run_cached_graph(hash_str: str, graph_inputs: list[Any]) -> list[Tensor]: ...
13