Skip to content

Commit

Permalink
Fix OperatorSetNames Enum
Browse files Browse the repository at this point in the history
  • Loading branch information
liord committed Dec 10, 2024
1 parent f183073 commit eb5bbb2
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@
_current_tp_model

class OperatorSetNames(Enum):
OPSET_NO_QUANTIZATION = "NoQuantization"
OPSET_QUANTIZATION_PRESERVING = "QuantizationPreserving"
OPSET_DIMENSION_MANIPULATION_OPS_WITH_WEIGHTS = "DimensionManipulationOpsWithWeights"
OPSET_DIMENSION_MANIPULATION_OPS = "DimensionManipulationOps"
OPSET_MERGE_OPS = "MergeOps"
OPSET_CONV = "Conv"
OPSET_DEPTHWISE_CONV = "DepthwiseConv2D"
OPSET_CONV_TRANSPOSE = "ConvTraspose"
Expand All @@ -38,7 +33,10 @@ class OperatorSetNames(Enum):
OPSET_GATHER = "Gather"
OPSET_EXPAND = "Expend"
OPSET_BATCH_NORM = "BatchNorm"
OPSET_ANY_RELU = "AnyReLU"
OPSET_RELU = "ReLU"
OPSET_RELU6 = "ReLU6"
OPSET_LEAKY_RELU = "LEAKYReLU"
OPSET_HARD_TANH = "HardTanh"
OPSET_ADD = "Add"
OPSET_SUB = "Sub"
OPSET_MUL = "Mul"
Expand Down

0 comments on commit eb5bbb2

Please sign in to comment.