-
Notifications
You must be signed in to change notification settings - Fork 499
/
Copy path__init__.py
53 lines (52 loc) · 1.01 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
from . import ( # noqa
node_visitor,
op_abs,
op_add,
op_addmm,
op_avg_pooling2d,
op_bmm,
op_cat,
op_ceiling,
op_clamp,
op_conv2d,
op_dequantize_per_tensor,
op_div,
op_dynamic_dequantize_ops,
op_dynamic_quantize_ops,
op_elu,
op_floor,
op_hardswish,
op_hardtanh,
op_leaky_relu,
op_linear,
op_matrix_multiplication,
op_max_dim,
op_max_pool2d,
op_maximum,
op_mean_dim,
op_minimum,
op_multiply,
op_negate,
op_permute,
op_prelu,
op_quantize_per_tensor,
op_relu,
op_sdpa,
op_sigmoid,
op_skip_ops,
op_slice_copy,
op_softmax,
op_square,
op_square_root,
op_squeeze,
op_static_constant_pad,
op_static_resize_bilinear_2d,
op_sub,
op_to_copy,
op_view_copy,
)