/usr/local/lib64/python3.6/site-packages/torch/onnx
NameSizeModeActions
__pycache__/-0755rm
operators.py5790644editdlrm
symbolic_caffe2.py96150644editdlrm
symbolic_helper.py394390644editdlrm
symbolic_opset7.py25770644editdlrm
symbolic_opset8.py112820644editdlrm
symbolic_opset9.py1370010644editdlrm
symbolic_opset10.py145990644editdlrm
symbolic_opset11.py405790644editdlrm
symbolic_opset12.py120900644editdlrm
symbolic_opset13.py136530644editdlrm
symbolic_opset14.py18900644editdlrm
symbolic_registry.py53510644editdlrm
utils.py650620644editdlrm
__init__.py181220644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/torch/onnx/operators.py (579B)
r"""This file provides a location for operators that help exporting models via onnx. E.g. shape_as_tensor and reshape_from_tensor_shape are to make all dynamic sizes operations traceable. NOTE: at one point these functions were implemented differently. Since then we have implemented these directly in ATen, so this file is kept purely for backward-compatibility. """ import torch import torch.onnx import torch.onnx.utils def shape_as_tensor(x): return torch._shape_as_tensor(x) def reshape_from_tensor_shape(x, shape): return torch._reshape_from_tensor(x, shape)