symbolic_opset9.py 391 B

1234567891011121314
  1. """Backward compatibility module for torch.onnx.symbolic_opset9."""
  2. from __future__ import annotations
  3. __all__: list[str] = []
  4. from torch.onnx._internal.torchscript_exporter.symbolic_opset9 import * # noqa: F401,F403
  5. from torch.onnx._internal.torchscript_exporter.symbolic_opset9 import ( # noqa: F401
  6. _prepare_onnx_paddings,
  7. _reshape_from_tensor,
  8. _slice,
  9. _var_mean,
  10. )