mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
Update type reduction operator type usage processors set. (#6976)
This commit is contained in:
parent
b57a85d863
commit
aa60a8368f
1 changed files with 8 additions and 6 deletions
|
|
@ -314,9 +314,10 @@ def _create_operator_type_usage_processors():
|
||||||
#
|
#
|
||||||
# Ops we are ignoring currently so as not to produce meaningless/unused output:
|
# Ops we are ignoring currently so as not to produce meaningless/unused output:
|
||||||
# - Implementation is type agnostic:
|
# - Implementation is type agnostic:
|
||||||
# ai.onnx: If, Loop, Reshape, Scan, Shape, Squeeze, Unsqueeze
|
# ai.onnx: If, Loop, Reshape, Scan, Shape, Squeeze, Tile, Unsqueeze
|
||||||
# com.microsoft: DynamicQuantizeMatMul, MatMulIntegerToFloat
|
# com.microsoft: DynamicQuantizeMatMul, MatMulIntegerToFloat
|
||||||
# - Only one type supported in the ORT implementation:
|
# - Only one type supported in the ORT implementation:
|
||||||
|
# ai.onnx: NonMaxSuppression
|
||||||
# com.microsoft: FusedConv, FusedGemm, FusedMatMul
|
# com.microsoft: FusedConv, FusedGemm, FusedMatMul
|
||||||
# - Implementation does not have any significant type specific code:
|
# - Implementation does not have any significant type specific code:
|
||||||
# ai.onnx: Concat, Flatten, Not, QLinearConv, Reshape, Shape, Squeeze, Unsqueeze
|
# ai.onnx: Concat, Flatten, Not, QLinearConv, Reshape, Shape, Squeeze, Unsqueeze
|
||||||
|
|
@ -330,14 +331,15 @@ def _create_operator_type_usage_processors():
|
||||||
'Gemm',
|
'Gemm',
|
||||||
'IsNaN',
|
'IsNaN',
|
||||||
'Log', 'LogSoftmax', 'LpNormalization',
|
'Log', 'LogSoftmax', 'LpNormalization',
|
||||||
'MatMul', 'Max', 'Min',
|
'MatMul', 'Max', 'MaxPool', 'Mean', 'Min',
|
||||||
'Neg', 'NonMaxSuppression', 'NonZero',
|
'Neg', 'NonZero',
|
||||||
'Pad',
|
'Pad',
|
||||||
'Range', 'Reciprocal', 'ReduceL1', 'ReduceL2', 'ReduceLogSum', 'ReduceLogSumExp',
|
'Range', 'Reciprocal', 'ReduceL1', 'ReduceL2', 'ReduceLogSum', 'ReduceLogSumExp',
|
||||||
'ReduceMax', 'ReduceMean', 'ReduceMin', 'ReduceProd', 'ReduceSum', 'ReduceSumSquare',
|
'ReduceMax', 'ReduceMean', 'ReduceMin', 'ReduceProd', 'ReduceSum', 'ReduceSumSquare',
|
||||||
'Relu', 'Resize', 'RoiAlign', 'Round',
|
'Relu', 'Resize', 'ReverseSequence', 'RoiAlign', 'Round',
|
||||||
'Sigmoid', 'Sin', 'Softmax', 'Split', 'Sqrt',
|
'ScatterND', 'Sigmoid', 'Sin', 'Softmax', 'Split', 'Sqrt', 'Sum',
|
||||||
'Tanh', 'Tile', 'TopK', 'Transpose',
|
'Tanh', 'TopK', 'Transpose',
|
||||||
|
'Unique',
|
||||||
'Where']
|
'Where']
|
||||||
|
|
||||||
default_processor_onnx_ops_requiring_int64_for_input_0 = ['Add',
|
default_processor_onnx_ops_requiring_int64_for_input_0 = ['Add',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue