1# 2# Copyright (c) 2023 Apple Inc. All rights reserved. 3# Provided subject to the LICENSE file in the top level directory. 4# 5 6from . import ( # noqa 7 activation_ops, 8 # Binary ops 9 binary_ops, 10 # Clamp ops 11 clamp_ops, 12 # Constant ops 13 constant_ops, 14 # Convolution ops 15 convolution_ops, 16 # Indexing ops 17 indexing_ops, 18 # Linear algebra ops 19 linear_algebra_ops, 20 # Normalization ops 21 normalization_ops, 22 op_clone, 23 op_getitem, 24 # Quant-Dequant ops 25 op_quant_dequant, 26 # Skip ops 27 op_skip_ops, 28 # Pad ops 29 pad_ops, 30 # Pooling ops 31 pooling_ops, 32 # Range ops 33 range_ops, 34 # Reduce ops 35 reduce_ops, 36 # Shape ops 37 shape_ops, 38 # Unary ops 39 unary_ops, 40) 41 42__all__ = [ 43 op_getitem, 44 op_clone, 45 # Binary ops 46 binary_ops, 47 # Activation ops 48 activation_ops, 49 # Linear algebra ops 50 linear_algebra_ops, 51 # Constant ops 52 constant_ops, 53 # Clamp ops 54 clamp_ops, 55 # Indexing ops 56 indexing_ops, 57 # Reduce ops 58 reduce_ops, 59 # Shape ops 60 shape_ops, 61 # Conv ops 62 convolution_ops, 63 # Normalization ops 64 normalization_ops, 65 # Pooling ops 66 pooling_ops, 67 # Pad ops 68 pad_ops, 69 # Range ops 70 range_ops, 71 # Unary ops 72 unary_ops, 73 # Quant-Dequant ops 74 op_quant_dequant, 75 # Skip ops 76 op_skip_ops, 77] 78