xref: /aosp_15_r20/external/pytorch/torch/onnx/symbolic_opset19.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1"""This file exports ONNX ops for opset 19.
2
3Note [ONNX Operators that are added/updated in opset 19]
4
5~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6https://github.com/onnx/onnx/blob/main/docs/Changelog.md#version-19-of-the-default-onnx-operator-set
7New operators:
8AveragePool
9Cast
10CastLike
11Constant
12DeformConv
13DequantizeLinear
14Equal
15Identity
16If
17Loop
18Pad
19QuantizeLinear
20Reshape
21Resize
22Scan
23Shape
24Size
25"""
26
27from typing import List
28
29
30# EDITING THIS FILE? READ THIS FIRST!
31# see Note [Edit Symbolic Files] in symbolic_helper.py
32
33__all__: List[str] = []
34