├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── documents ├── images │ └── mnist.gif ├── onnx.proto3 └── the-supported-operator-table.md ├── examples ├── benchmark │ ├── .gitignore │ ├── Makefile │ └── main.c ├── hello │ ├── .gitignore │ ├── Makefile │ └── main.c └── mnist │ ├── .gitignore │ ├── Makefile │ └── main.c ├── src ├── default │ ├── Abs.c │ ├── Acos.c │ ├── Acosh.c │ ├── Add.c │ ├── AffineGrid.c │ ├── And.c │ ├── ArgMax.c │ ├── ArgMin.c │ ├── Asin.c │ ├── Asinh.c │ ├── Atan.c │ ├── Atanh.c │ ├── Attention.c │ ├── AveragePool.c │ ├── BatchNormalization.c │ ├── Bernoulli.c │ ├── BitShift.c │ ├── BitwiseAnd.c │ ├── BitwiseNot.c │ ├── BitwiseOr.c │ ├── BitwiseXor.c │ ├── BlackmanWindow.c │ ├── Cast.c │ ├── CastLike.c │ ├── Ceil.c │ ├── Celu.c │ ├── CenterCropPad.c │ ├── Clip.c │ ├── Compress.c │ ├── Concat.c │ ├── ConcatFromSequence.c │ ├── Constant.c │ ├── ConstantOfShape.c │ ├── Conv.c │ ├── ConvInteger.c │ ├── ConvTranspose.c │ ├── Cos.c │ ├── Cosh.c │ ├── CumSum.c │ ├── DepthToSpace.c │ ├── DequantizeLinear.c │ ├── Det.c │ ├── Div.c │ ├── Dropout.c │ ├── DynamicQuantizeLinear.c │ ├── Einsum.c │ ├── Elu.c │ ├── Equal.c │ ├── Erf.c │ ├── Exp.c │ ├── Expand.c │ ├── EyeLike.c │ ├── Flatten.c │ ├── Floor.c │ ├── GRU.c │ ├── Gather.c │ ├── GatherElements.c │ ├── GatherND.c │ ├── Gelu.c │ ├── Gemm.c │ ├── GlobalAveragePool.c │ ├── GlobalLpPool.c │ ├── GlobalMaxPool.c │ ├── Greater.c │ ├── GreaterOrEqual.c │ ├── GroupNormalization.c │ ├── HammingWindow.c │ ├── HannWindow.c │ ├── HardSigmoid.c │ ├── HardSwish.c │ ├── Hardmax.c │ ├── Identity.c │ ├── If.c │ ├── InstanceNormalization.c │ ├── IsInf.c │ ├── IsNaN.c │ ├── LRN.c │ ├── LSTM.c │ ├── LayerNormalization.c │ ├── LeakyRelu.c │ ├── Less.c │ ├── LessOrEqual.c │ ├── Log.c │ ├── LogSoftmax.c │ ├── Loop.c │ ├── LpNormalization.c │ ├── LpPool.c │ ├── MatMul.c │ ├── MatMulInteger.c │ ├── Max.c │ ├── MaxPool.c │ ├── MaxRoiPool.c │ ├── MaxUnpool.c │ ├── Mean.c │ ├── MeanVarianceNormalization.c │ ├── Min.c │ ├── Mish.c │ ├── Mod.c │ ├── Mul.c │ ├── Multinomial.c │ ├── Neg.c │ ├── NegativeLogLikelihoodLoss.c │ ├── NonMaxSuppression.c │ ├── NonZero.c │ ├── Not.c │ ├── OneHot.c │ ├── Or.c │ ├── PRelu.c │ ├── Pad.c │ ├── Pow.c │ ├── QLinearConv.c │ ├── QLinearMatMul.c │ ├── QuantizeLinear.c │ ├── RMSNormalization.c │ ├── RNN.c │ ├── RandomNormal.c │ ├── RandomNormalLike.c │ ├── RandomUniform.c │ ├── RandomUniformLike.c │ ├── Range.c │ ├── Reciprocal.c │ ├── ReduceL1.c │ ├── ReduceL2.c │ ├── ReduceLogSum.c │ ├── ReduceLogSumExp.c │ ├── ReduceMax.c │ ├── ReduceMean.c │ ├── ReduceMin.c │ ├── ReduceProd.c │ ├── ReduceSum.c │ ├── ReduceSumSquare.c │ ├── Relu.c │ ├── Reshape.c │ ├── Resize.c │ ├── ReverseSequence.c │ ├── RoiAlign.c │ ├── RotaryEmbedding.c │ ├── Round.c │ ├── Scan.c │ ├── Scatter.c │ ├── ScatterElements.c │ ├── ScatterND.c │ ├── Selu.c │ ├── SequenceAt.c │ ├── SequenceConstruct.c │ ├── SequenceEmpty.c │ ├── SequenceErase.c │ ├── SequenceInsert.c │ ├── SequenceLength.c │ ├── SequenceMap.c │ ├── Shape.c │ ├── Shrink.c │ ├── Sigmoid.c │ ├── Sign.c │ ├── Sin.c │ ├── Sinh.c │ ├── Size.c │ ├── Slice.c │ ├── Softmax.c │ ├── SoftmaxCrossEntropyLoss.c │ ├── Softplus.c │ ├── Softsign.c │ ├── SpaceToDepth.c │ ├── Split.c │ ├── SplitToSequence.c │ ├── Sqrt.c │ ├── Squeeze.c │ ├── StringNormalizer.c │ ├── Sub.c │ ├── Sum.c │ ├── Swish.c │ ├── Tan.c │ ├── Tanh.c │ ├── TensorScatter.c │ ├── TfIdfVectorizer.c │ ├── ThresholdedRelu.c │ ├── Tile.c │ ├── TopK.c │ ├── Transpose.c │ ├── Trilu.c │ ├── Unique.c │ ├── Unsqueeze.c │ ├── Upsample.c │ ├── Where.c │ ├── Xor.c │ ├── default.c │ └── default.h ├── hmap.c ├── hmap.h ├── list.h ├── onnx.c ├── onnx.h ├── onnx.mk ├── onnx.proto3.pb-c.c ├── onnx.proto3.pb-c.h ├── onnxconf.h ├── protobuf-c.c └── protobuf-c.h ├── tests ├── .gitignore ├── Makefile ├── light │ ├── README.md │ ├── light_bvlc_alexnet.onnx │ ├── light_bvlc_alexnet_output_0.pb │ ├── light_densenet121.onnx │ ├── light_densenet121_output_0.pb │ ├── light_inception_v1.onnx │ ├── light_inception_v1_output_0.pb │ ├── light_inception_v2.onnx │ ├── light_inception_v2_output_0.pb │ ├── light_resnet50.onnx │ ├── light_resnet50_output_0.pb │ ├── light_shufflenet.onnx │ ├── light_shufflenet_output_0.pb │ ├── light_squeezenet.onnx │ ├── light_squeezenet_output_0.pb │ ├── light_vgg19.onnx │ ├── light_vgg19_output_0.pb │ ├── light_zfnet512.onnx │ └── light_zfnet512_output_0.pb ├── main.c ├── model │ ├── mnist_8 │ │ ├── model.onnx │ │ ├── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ │ ├── test_data_set_1 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ │ └── test_data_set_2 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── mobilenet_v2_7 │ │ ├── model.onnx │ │ ├── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ │ ├── test_data_set_1 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ │ └── test_data_set_2 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── shufflenet_v1_9 │ │ ├── model.onnx │ │ ├── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ │ ├── test_data_set_1 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ │ └── test_data_set_2 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── squeezenet_v11_7 │ │ ├── model.onnx │ │ ├── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ │ ├── test_data_set_1 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ │ └── test_data_set_2 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── super_resolution_10 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ └── tinyyolo_v2_8 │ │ ├── model.onnx │ │ ├── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ │ ├── test_data_set_1 │ │ ├── input_0.pb │ │ └── output_0.pb │ │ └── test_data_set_2 │ │ ├── input_0.pb │ │ └── output_0.pb ├── node │ ├── test_abs │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_acos │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_acos_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_acosh │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_acosh_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_adagrad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_adagrad_multiple │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_adam │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_adam_multiple │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ ├── input_8.pb │ │ │ ├── input_9.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ ├── output_3.pb │ │ │ ├── output_4.pb │ │ │ └── output_5.pb │ ├── test_add │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_add_bcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_add_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_add_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_add_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_add_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_add_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_add_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_affine_grid_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_affine_grid_2d_align_corners │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_affine_grid_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_affine_grid_3d_align_corners │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_ai_onnx_ml_array_feature_extractor │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_ai_onnx_ml_binarizer │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ai_onnx_ml_label_encoder_string_int │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ai_onnx_ml_label_encoder_string_int_no_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ai_onnx_ml_label_encoder_tensor_mapping │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ai_onnx_ml_label_encoder_tensor_value_only_mapping │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ai_onnx_ml_tree_ensemble_set_membership │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ai_onnx_ml_tree_ensemble_single_tree │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_and2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_and3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_and4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_and_bcast3v1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_and_bcast3v2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_and_bcast4v2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_and_bcast4v3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_and_bcast4v4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_argmax_default_axis_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_default_axis_example_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_default_axis_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_default_axis_random_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_keepdims_example_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_keepdims_random_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_negative_axis_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_negative_axis_keepdims_example_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_negative_axis_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_negative_axis_keepdims_random_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_no_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_no_keepdims_example_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_no_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmax_no_keepdims_random_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_default_axis_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_default_axis_example_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_default_axis_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_default_axis_random_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_keepdims_example_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_keepdims_random_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_negative_axis_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_negative_axis_keepdims_example_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_negative_axis_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_negative_axis_keepdims_random_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_no_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_no_keepdims_example_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_no_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_argmin_no_keepdims_random_select_last_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_asin │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_asin_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_asinh │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_asinh_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_atan │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_atan_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_atanh │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_atanh_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_attention_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_attn_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_diff_heads_sizes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_diff_heads_sizes_attn_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_diff_heads_sizes_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_diff_heads_sizes_scaled │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_diff_heads_sizes_softcap │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_diff_heads_with_past_and_present │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_attention_3d_gqa │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_gqa_attn_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_gqa_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_gqa_scaled │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_gqa_softcap │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_gqa_with_past_and_present │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_attention_3d_scaled │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_softcap │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_transpose_verification │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_3d_with_past_and_present │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_attention_3d_with_past_and_present_qk_matmul │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_3d_with_past_and_present_qk_matmul_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_3d_with_past_and_present_qk_matmul_softcap │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_3d_with_past_and_present_qk_matmul_softmax │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_attn_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_attn_mask_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_attn_mask_3d_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_attn_mask_4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_attn_mask_4d_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_attn_mask_bool │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_attn_mask_bool_4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_diff_heads_mask4d_padded_kv │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_diff_heads_sizes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_diff_heads_sizes_attn_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_diff_heads_sizes_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_diff_heads_sizes_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_diff_heads_sizes_scaled │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_diff_heads_sizes_softcap │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_diff_heads_with_past_and_present │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_attention_4d_diff_heads_with_past_and_present_mask3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_attention_4d_diff_heads_with_past_and_present_mask4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_attention_4d_fp16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_gqa │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_gqa_attn_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_gqa_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_gqa_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_gqa_scaled │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_gqa_softcap │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_gqa_with_past_and_present │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_attention_4d_gqa_with_past_and_present_fp16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_attention_4d_scaled │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_softcap │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_attention_4d_with_past_and_present │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_attention_4d_with_past_and_present_qk_matmul │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_4d_with_past_and_present_qk_matmul_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_4d_with_past_and_present_qk_matmul_bias_3d_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_4d_with_past_and_present_qk_matmul_bias_3d_mask_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_4d_with_past_and_present_qk_matmul_bias_4d_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_4d_with_past_and_present_qk_matmul_bias_4d_mask_causal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_attention_4d_with_qk_matmul │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_attention_4d_with_qk_matmul_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_attention_4d_with_qk_matmul_softcap │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_attention_4d_with_qk_matmul_softmax │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_averagepool_1d_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_ceil │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_ceil_last_window_starts_on_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_dilations │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_pads │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_pads_count_include_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_precomputed_pads │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_precomputed_pads_count_include_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_precomputed_same_upper │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_precomputed_strides │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_same_lower │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_same_upper │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_2d_strides │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_3d_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_3d_dilations_large_count_include_pad_is_0_ceil_mode_is_False │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_3d_dilations_large_count_include_pad_is_0_ceil_mode_is_True │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_3d_dilations_large_count_include_pad_is_1_ceil_mode_is_False │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_3d_dilations_large_count_include_pad_is_1_ceil_mode_is_True │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_averagepool_3d_dilations_small │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_basic_conv_with_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_basic_conv_without_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_basic_deform_conv_with_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_basic_deform_conv_without_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_batchnorm_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_batchnorm_epsilon_training_mode │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_batchnorm_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_batchnorm_example_training_mode │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_bernoulli │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_bernoulli_double │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_bernoulli_double_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_bernoulli_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_bernoulli_seed │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_bernoulli_seed_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_bitshift_left_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitshift_left_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitshift_left_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitshift_left_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitshift_right_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitshift_right_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitshift_right_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitshift_right_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_and_i16_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_and_i32_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_and_ui64_bcast_3v1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_and_ui8_bcast_4v3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_not_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_bitwise_not_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_bitwise_not_4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_bitwise_or_i16_4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_or_i32_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_or_ui64_bcast_3v1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_or_ui8_bcast_4v3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_xor_i16_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_xor_i32_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_xor_ui64_bcast_3v1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_bitwise_xor_ui8_bcast_4v3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_blackmanwindow │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_blackmanwindow_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_blackmanwindow_symmetric │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_blackmanwindow_symmetric_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_BFLOAT16_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_DOUBLE_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_DOUBLE_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT16_to_DOUBLE │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT16_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT16_to_FLOAT4E2M1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT16_to_FLOAT8E4M3FN │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT16_to_FLOAT8E4M3FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT16_to_FLOAT8E5M2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT16_to_FLOAT8E5M2FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT16_to_INT4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT16_to_UINT4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT4E2M1_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT4E2M1_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT8E4M3FNUZ_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT8E4M3FNUZ_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT8E4M3FN_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT8E4M3FN_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT8E5M2FNUZ_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT8E5M2FNUZ_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT8E5M2_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT8E5M2_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_BFLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_DOUBLE │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_FLOAT4E2M1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_FLOAT8E4M3FN │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_FLOAT8E4M3FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_FLOAT8E5M2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_FLOAT8E5M2FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_INT4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_FLOAT_to_UINT4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_INT4_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_INT4_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_INT4_to_INT8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_UINT4_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_UINT4_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_UINT4_to_UINT8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_e8m0_FLOAT16_to_FLOAT8E8M0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_e8m0_FLOAT8E8M0_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_e8m0_FLOAT8E8M0_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_e8m0_FLOAT_to_FLOAT8E8M0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_no_saturate_FLOAT16_to_FLOAT8E4M3FN │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_no_saturate_FLOAT16_to_FLOAT8E4M3FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_no_saturate_FLOAT16_to_FLOAT8E5M2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_no_saturate_FLOAT16_to_FLOAT8E5M2FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_no_saturate_FLOAT_to_FLOAT8E4M3FN │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_no_saturate_FLOAT_to_FLOAT8E4M3FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_no_saturate_FLOAT_to_FLOAT8E5M2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cast_no_saturate_FLOAT_to_FLOAT8E5M2FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_castlike_BFLOAT16_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_BFLOAT16_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_DOUBLE_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_DOUBLE_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_DOUBLE_to_FLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_DOUBLE_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_DOUBLE │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_DOUBLE_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT4E2M1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT4E2M1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT8E4M3FN │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT8E4M3FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT8E4M3FNUZ_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT8E4M3FN_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT8E5M2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT8E5M2FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT8E5M2FNUZ_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT8E5M2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_INT4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_INT4_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_UINT4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT16_to_UINT4_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT4E2M1_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT4E2M1_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT4E2M1_to_FLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT4E2M1_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E4M3FNUZ_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E4M3FNUZ_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E4M3FNUZ_to_FLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E4M3FNUZ_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E4M3FN_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E4M3FN_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E4M3FN_to_FLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E4M3FN_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E5M2FNUZ_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E5M2FNUZ_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E5M2FNUZ_to_FLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E5M2FNUZ_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E5M2_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E5M2_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E5M2_to_FLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT8E5M2_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_BFLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_BFLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_DOUBLE │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_DOUBLE_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT4E2M1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT4E2M1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT8E4M3FN │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT8E4M3FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT8E4M3FNUZ_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT8E4M3FN_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT8E5M2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT8E5M2FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT8E5M2FNUZ_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_FLOAT8E5M2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_INT4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_INT4_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_UINT4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_FLOAT_to_UINT4_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_INT4_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_INT4_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_INT4_to_FLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_INT4_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_INT4_to_INT8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_INT4_to_INT8_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_UINT4_to_FLOAT │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_UINT4_to_FLOAT16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_UINT4_to_FLOAT16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_UINT4_to_FLOAT_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_UINT4_to_UINT8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_UINT4_to_UINT8_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT16_to_FLOAT8E4M3FN │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT16_to_FLOAT8E4M3FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT16_to_FLOAT8E4M3FNUZ_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT16_to_FLOAT8E4M3FN_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT16_to_FLOAT8E5M2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT16_to_FLOAT8E5M2FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT16_to_FLOAT8E5M2FNUZ_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT16_to_FLOAT8E5M2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT_to_FLOAT8E4M3FN │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT_to_FLOAT8E4M3FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT_to_FLOAT8E4M3FNUZ_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT_to_FLOAT8E4M3FN_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT_to_FLOAT8E5M2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT_to_FLOAT8E5M2FNUZ │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT_to_FLOAT8E5M2FNUZ_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_castlike_no_saturate_FLOAT_to_FLOAT8E5M2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_ceil │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ceil_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_celu │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_celu_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop_and_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop_and_pad_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop_axes_chw │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop_axes_chw_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop_axes_hwc │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop_axes_hwc_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop_negative_axes_hwc │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_crop_negative_axes_hwc_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_center_crop_pad_pad_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_clip │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_default_inbounds │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_clip_default_inbounds_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_clip_default_int8_inbounds │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_clip_default_int8_inbounds_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_clip_default_int8_max │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_clip_default_int8_max_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_clip_default_int8_min │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_clip_default_int8_min_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_clip_default_max │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_clip_default_max_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_clip_default_min │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_clip_default_min_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_clip_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_example_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_inbounds │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_inbounds_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_min_greater_than_max │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_min_greater_than_max_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_outbounds │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_outbounds_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_splitbounds │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_clip_splitbounds_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_col2im │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_col2im_5d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_col2im_dilations │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_col2im_pads │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_col2im_strides │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_compress_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_compress_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_compress_default_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_compress_negative_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_1d_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_1d_axis_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_2d_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_2d_axis_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_2d_axis_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_2d_axis_negative_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_3d_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_3d_axis_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_3d_axis_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_3d_axis_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_3d_axis_negative_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_concat_3d_axis_negative_3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_constant │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ └── output_0.pb │ ├── test_constant_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_constant_pad_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_constant_pad_negative_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_constantofshape_float_ones │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_constantofshape_int_shape_zero │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_constantofshape_int_zeros │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_conv_with_autopad_same │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_conv_with_strides_and_asymmetric_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_conv_with_strides_no_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_conv_with_strides_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convinteger_with_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_convinteger_without_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_convtranspose │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_autopad_same │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_dilations │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_group_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_group_2_image_3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_kernel_shape │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_output_shape │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_convtranspose_pads │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_cos │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cos_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cosh │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cosh_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_cumsum_1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_cumsum_1d_exclusive │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_cumsum_1d_int32_exclusive │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_cumsum_1d_reverse │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_cumsum_1d_reverse_exclusive │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_cumsum_2d_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_cumsum_2d_axis_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_cumsum_2d_int32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_cumsum_2d_negative_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_deform_conv_with_mask_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_deform_conv_with_multiple_offset_groups │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_depthtospace_crd_mode_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_depthtospace_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_blocked │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_e4m3fn │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_e4m3fn_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_e4m3fn_zero_point │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_e5m2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_float4e2m1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_int4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_dequantizelinear_uint4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_det_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_det_nd │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_dft │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_dft_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_dft_axis_opset19 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_dft_inverse │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_dft_inverse_opset19 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_dft_opset19 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_div │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_div_bcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_div_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_div_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_div_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_div_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_div_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_div_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_div_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_dropout_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_dropout_default_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_dropout_default_mask_ratio │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_dropout_default_old │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_dropout_default_ratio │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_dropout_random_old │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_dynamicquantizelinear │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_dynamicquantizelinear_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_dynamicquantizelinear_max_adjusted │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_dynamicquantizelinear_max_adjusted_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_dynamicquantizelinear_min_adjusted │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_dynamicquantizelinear_min_adjusted_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_edge_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_einsum_batch_diagonal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_einsum_batch_matmul │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_einsum_inner_prod │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_einsum_scalar │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_einsum_sum │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_einsum_transpose │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_elu │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_elu_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_elu_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_equal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_equal_bcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_equal_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_equal_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_equal_string │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_equal_string_broadcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_equal_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_equal_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_equal_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_equal_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_erf │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_exp │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_exp_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_expand_dim_changed │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_expand_dim_unchanged │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_eyelike_populate_off_main_diagonal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_eyelike_with_dtype │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_eyelike_without_dtype │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_flatten_axis0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_flatten_axis1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_flatten_axis2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_flatten_axis3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_flatten_default_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_flatten_negative_axis1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_flatten_negative_axis2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_flatten_negative_axis3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_flatten_negative_axis4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_floor │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_floor_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_gather_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gather_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gather_2d_indices │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gather_elements_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gather_elements_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gather_elements_negative_indices │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gather_negative_indices │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gathernd_example_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gathernd_example_int32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gathernd_example_int32_batch_dim1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gelu_default_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_gelu_default_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_gelu_tanh_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_gelu_tanh_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_gemm_all_attributes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gemm_alpha │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gemm_beta │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gemm_default_matrix_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gemm_default_no_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gemm_default_scalar_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gemm_default_single_elem_vector_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gemm_default_vector_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gemm_default_zero_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gemm_transposeA │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gemm_transposeB │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_globalaveragepool │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_globalaveragepool_precomputed │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_globalmaxpool │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_globalmaxpool_precomputed │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_greater │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_bcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_bcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_bcast_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_int16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_int8_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_uint16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_uint32_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_uint64_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_equal_uint8_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_greater_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_aligncorners_true │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_bicubic │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_bicubic_align_corners_0_additional_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_bicubic_align_corners_1_additional_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_bilinear │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_bilinear_align_corners_0_additional_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_bilinear_align_corners_1_additional_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_border_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_nearest │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_nearest_align_corners_0_additional_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_nearest_align_corners_1_additional_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_reflection_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_volumetric_bilinear_align_corners_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_volumetric_bilinear_align_corners_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_volumetric_nearest_align_corners_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_volumetric_nearest_align_corners_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_gridsample_zeros_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_group_normalization_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_group_normalization_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_group_normalization_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_group_normalization_example_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gru_batchwise │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_gru_defaults │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_gru_seq_length │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_gru_with_initial_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_hammingwindow │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hammingwindow_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hammingwindow_symmetric │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hammingwindow_symmetric_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hannwindow │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hannwindow_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hannwindow_symmetric │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hannwindow_symmetric_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardmax_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardmax_axis_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardmax_axis_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardmax_default_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardmax_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardmax_negative_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardmax_one_hot │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardsigmoid │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardsigmoid_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardsigmoid_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_hardswish │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_identity │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_identity_opt │ │ ├── model.onnx.bak │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_identity_sequence │ │ ├── model.onnx.bak │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_if │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_if_opt │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_if_seq │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_image_decoder_decode_bmp_rgb │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_image_decoder_decode_jpeg2k_rgb │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_image_decoder_decode_jpeg_bgr │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_image_decoder_decode_jpeg_grayscale │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_image_decoder_decode_jpeg_rgb │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_image_decoder_decode_png_rgb │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_image_decoder_decode_pnm_rgb │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_image_decoder_decode_tiff_rgb │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_image_decoder_decode_webp_rgb │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_instancenorm_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_instancenorm_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_isinf │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_isinf_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_isinf_negative │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_isinf_positive │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_isnan │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_isnan_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_l1normalization_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_l1normalization_axis_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_l1normalization_axis_last │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_l2normalization_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_l2normalization_axis_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_layer_normalization_2d_axis0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis0_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis0_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis1_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis_negative_1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis_negative_1_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis_negative_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis_negative_2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_2d_axis_negative_2_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis0_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis0_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis0_epsilon_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis1_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis1_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis1_epsilon_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis2_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis2_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis2_epsilon_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis_negative_1_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis_negative_1_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis_negative_1_epsilon_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis_negative_2_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis_negative_2_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis_negative_2_epsilon_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis_negative_3_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis_negative_3_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_3d_axis_negative_3_epsilon_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis0_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis0_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis1_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis2_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis3_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis3_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_1_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_2_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_3_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_3_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_4_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_4d_axis_negative_4_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_default_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_default_axis_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_layer_normalization_default_axis_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_leakyrelu │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_leakyrelu_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_leakyrelu_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_less │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_bcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_bcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_bcast_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_int16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_int8_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_uint16_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_uint32_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_uint64_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_equal_uint8_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_less_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_log │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_log_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_axis_0_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_axis_0_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_axis_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_axis_1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_axis_1_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_axis_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_axis_2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_axis_2_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_default_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_default_axis_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_default_axis_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_example_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_example_1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_example_1_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_large_number │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_large_number_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_large_number_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_negative_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_negative_axis_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_logsoftmax_negative_axis_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_loop11 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_loop13_seq │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_loop16_seq_none │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_lpnormalization_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lppool_1d_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lppool_2d_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lppool_2d_dilations │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lppool_2d_pads │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lppool_2d_same_lower │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lppool_2d_same_upper │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lppool_2d_strides │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lppool_3d_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lrn │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lrn_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_lstm_batchwise │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_lstm_defaults │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_lstm_with_initial_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_lstm_with_peepholes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_matmul_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_matmul_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_matmul_4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_matmulinteger │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_max_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_max_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_float64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_int32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_int64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_one_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_max_two_inputs │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_max_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_maxpool_1d_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_ceil │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_ceil_output_size_reduce_by_one │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_dilations │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_pads │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_precomputed_pads │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_precomputed_same_upper │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_precomputed_strides │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_same_lower │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_same_upper │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_strides │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_2d_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_3d_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_3d_dilations │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_3d_dilations_use_ref_impl │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_3d_dilations_use_ref_impl_large │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_maxpool_with_argmax_2d_precomputed_pads │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_maxpool_with_argmax_2d_precomputed_strides │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_maxunpool_export_with_output_shape │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_maxunpool_export_without_output_shape │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mean_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_mean_one_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_mean_two_inputs │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_melweightmatrix │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_min_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_min_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_float64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_int32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_int64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_one_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_min_two_inputs │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_min_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mish │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_mish_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_mod_broadcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_int64_fmod │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_mixed_sign_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_mixed_sign_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_mixed_sign_float64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_mixed_sign_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_mixed_sign_int32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_mixed_sign_int64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_mixed_sign_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mod_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_momentum │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_momentum_multiple │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_mul │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mul_bcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mul_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mul_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mul_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mul_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mul_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mul_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mul_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_mvn │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_mvn_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_mvn_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_neg │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_neg_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_nesterov_momentum │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_nllloss_NC │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NC_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1_mean_weight_negative_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1_mean_weight_negative_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1_weight │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1_weight_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1_weight_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1_weight_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_no_weight_reduction_mean_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_reduction_mean │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_reduction_mean_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_reduction_sum │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_reduction_sum_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_with_weight │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_with_weight_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_with_weight_reduction_mean │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_with_weight_reduction_mean_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_with_weight_reduction_sum │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_with_weight_reduction_sum_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_with_weight_reduction_sum_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2d3_none_no_weight_negative_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2d3_sum_weight_high_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2d3d4d5_mean_weight │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2d3d4d5_mean_weight_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2d3d4d5_none_no_weight │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_nonmaxsuppression_center_point_box_format │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_nonmaxsuppression_flipped_coordinates │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_nonmaxsuppression_identical_boxes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_nonmaxsuppression_limit_output_size │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_nonmaxsuppression_single_box │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_nonmaxsuppression_suppress_by_IOU │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_nonmaxsuppression_suppress_by_IOU_and_scores │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_nonmaxsuppression_two_batches │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_nonmaxsuppression_two_classes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_nonzero_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_not_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_not_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_not_4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_onehot_negative_indices │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_onehot_with_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_onehot_with_negative_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_onehot_without_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_optional_get_element_optional_sequence │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_optional_get_element_optional_tensor │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_optional_get_element_sequence │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_optional_get_element_tensor │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_optional_has_element_empty_no_input_name_optional_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ └── output_0.pb │ ├── test_optional_has_element_empty_no_input_name_tensor_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ └── output_0.pb │ ├── test_optional_has_element_empty_no_input_optional_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ └── output_0.pb │ ├── test_optional_has_element_empty_no_input_tensor_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ └── output_0.pb │ ├── test_optional_has_element_empty_optional_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_optional_has_element_optional_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_optional_has_element_tensor_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_or2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_or3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_or4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_or_bcast3v1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_or_bcast3v2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_or_bcast4v2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_or_bcast4v3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_or_bcast4v4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_bcast_array │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_bcast_scalar │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_types_float32_int32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_types_float32_int64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_types_float32_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_types_float32_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_types_int32_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_types_int32_int32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_types_int64_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_pow_types_int64_int64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_prelu_broadcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_prelu_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_qlinearconv │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_qlinearmatmul_2D_int8_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_qlinearmatmul_2D_int8_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_qlinearmatmul_2D_uint8_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_qlinearmatmul_2D_uint8_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_qlinearmatmul_3D_int8_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_qlinearmatmul_3D_int8_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_qlinearmatmul_3D_uint8_float16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_qlinearmatmul_3D_uint8_float32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ ├── input_5.pb │ │ │ ├── input_6.pb │ │ │ ├── input_7.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_blocked_asymmetric │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_blocked_symmetric │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_e4m3fn │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_e5m2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_float4e2m1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_int4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_quantizelinear_uint4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_range_float_type_positive_delta │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_range_float_type_positive_delta_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_range_int32_type_negative_delta │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_range_int32_type_negative_delta_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_reciprocal │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_reciprocal_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_default_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_default_axes_keepdims_example_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_default_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_default_axes_keepdims_random_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_do_not_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_do_not_keepdims_example_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_do_not_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_do_not_keepdims_random_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_empty_set │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_keep_dims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_keep_dims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_negative_axes_keep_dims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l1_negative_axes_keep_dims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l2_default_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l2_default_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l2_do_not_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l2_do_not_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l2_empty_set │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l2_keep_dims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l2_keep_dims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l2_negative_axes_keep_dims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_l2_negative_axes_keep_dims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_asc_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_asc_axes_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_default_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_desc_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_desc_axes_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_empty_set │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_exp_default_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_exp_default_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_exp_do_not_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_exp_do_not_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_exp_empty_set │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_exp_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_exp_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_exp_negative_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_exp_negative_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_log_sum_negative_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_bool_inputs │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_default_axes_keepdim_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_default_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_do_not_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_do_not_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_empty_set │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_negative_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_max_negative_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_mean_default_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_mean_default_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_mean_do_not_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_mean_do_not_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_mean_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_mean_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_mean_negative_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_mean_negative_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_bool_inputs │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_default_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_default_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_do_not_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_do_not_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_empty_set │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_negative_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_min_negative_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_prod_default_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_reduce_prod_default_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_reduce_prod_do_not_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_prod_do_not_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_prod_empty_set │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_prod_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_prod_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_prod_negative_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_prod_negative_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_default_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_default_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_do_not_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_do_not_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_empty_axes_input_noop │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_empty_axes_input_noop_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_empty_set │ │ ├── model.onnx.bak │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_keepdims_example │ │ ├── model.onnx.bak │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_negative_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_negative_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_default_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_default_axes_keepdims_example_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_default_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_default_axes_keepdims_random_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_do_not_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_do_not_keepdims_example_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_do_not_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_do_not_keepdims_random_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_empty_set │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_keepdims_example_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_keepdims_random_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_negative_axes_keepdims_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_negative_axes_keepdims_example_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_negative_axes_keepdims_random │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reduce_sum_square_negative_axes_keepdims_random_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reflect_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_regex_full_match_basic │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_regex_full_match_email_domain │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_regex_full_match_empty │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_relu │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_reshape_allowzero_reordered │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reshape_extended_dims │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reshape_negative_dim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reshape_negative_extended_dims │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reshape_one_dim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reshape_reduced_dims │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reshape_reordered_all_dims │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reshape_reordered_last_dims │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reshape_zero_and_negative_dim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reshape_zero_dim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_scales_cubic │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_scales_cubic_A_n0p5_exclude_outside │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_scales_cubic_align_corners │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_scales_cubic_antialias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_scales_linear │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_scales_linear_align_corners │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_scales_linear_antialias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_scales_linear_half_pixel_symmetric │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_scales_nearest │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_sizes_cubic │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_sizes_cubic_antialias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_sizes_linear_antialias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_sizes_linear_pytorch_half_pixel │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_sizes_nearest │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_sizes_nearest_not_larger │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_downsample_sizes_nearest_not_smaller │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_tf_crop_and_resize │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_resize_tf_crop_and_resize_axes_2_3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_resize_tf_crop_and_resize_axes_3_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_resize_tf_crop_and_resize_extrapolation_value │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_cubic │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_cubic_A_n0p5_exclude_outside │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_cubic_align_corners │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_cubic_asymmetric │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_linear │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_linear_align_corners │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_linear_half_pixel_symmetric │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_nearest │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_nearest_axes_2_3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_scales_nearest_axes_3_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_sizes_cubic │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_sizes_nearest │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_sizes_nearest_axes_2_3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_sizes_nearest_axes_3_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_sizes_nearest_ceil_half_pixel │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_sizes_nearest_floor_align_corners │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_sizes_nearest_not_larger │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_sizes_nearest_not_smaller │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reversesequence_batch │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_reversesequence_time │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_2d_axis0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_2d_axis0_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_2d_axis1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_2d_axis1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_2d_axis_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_2d_axis_negative_1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_2d_axis_negative_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_2d_axis_negative_2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis0_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis0_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis1_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis1_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis2_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis2_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis_negative_1_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis_negative_1_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis_negative_2_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis_negative_2_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis_negative_3_epsilon │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_3d_axis_negative_3_epsilon_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis0_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis3_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis_negative_1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis_negative_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis_negative_2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis_negative_3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis_negative_3_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis_negative_4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_4d_axis_negative_4_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_default_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rms_normalization_default_axis_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_rnn_seq_length │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_roialign_aligned_false │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_roialign_aligned_true │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_roialign_mode_max │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_3d_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_3d_input_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_interleaved │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_interleaved_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_no_position_ids │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_no_position_ids_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_no_position_ids_interleaved │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_no_position_ids_interleaved_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_no_position_ids_rotary_dim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_no_position_ids_rotary_dim_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_with_interleaved_rotary_dim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_with_interleaved_rotary_dim_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_with_rotary_dim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_rotary_embedding_with_rotary_dim_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_round │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_scan9_sum │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_scan_sum │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_scatter_elements_with_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatter_elements_with_duplicate_indices │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatter_elements_with_negative_indices │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatter_elements_with_reduction_max │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatter_elements_with_reduction_min │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatter_elements_without_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatter_with_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatter_without_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatternd │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatternd_add │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatternd_max │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatternd_min │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_scatternd_multiply │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1_mean_weight_negative_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1_mean_weight_negative_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1_mean_weight_negative_ii_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_NCd1d2d3_none_no_weight_negative_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_NCd1d2d3_sum_weight_high_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1d2d3_sum_weight_high_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1d2d3_sum_weight_high_ii_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_NCd1d2d3d4d5_mean_weight │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1d2d3d4d5_mean_weight_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1d2d3d4d5_mean_weight_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_NCd1d2d3d4d5_none_no_weight │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1d2d3d4d5_none_no_weight_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_NCd1d2d3d4d5_none_no_weight_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_3d_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_3d_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_3d_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_no_weight_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_no_weight_ii_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_no_weight_ii_3d_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_no_weight_ii_3d_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_no_weight_ii_3d_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_no_weight_ii_4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_no_weight_ii_4d_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_no_weight_ii_4d_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_no_weight_ii_4d_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_no_weight_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_no_weight_ii_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_no_weight_ii_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_weight │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_weight_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_weight_ii │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_weight_ii_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_weight_ii_3d_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_weight_ii_3d_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_weight_ii_3d_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_weight_ii_4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_weight_ii_4d_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_weight_ii_4d_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_weight_ii_4d_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_weight_ii_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_mean_weight_ii_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_weight_ii_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_weight_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_mean_weight_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_none │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_none_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_none_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_none_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_none_weights │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_none_weights_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sce_none_weights_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_none_weights_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_sum │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_sum_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sce_sum_log_prob │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_sce_sum_log_prob_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_selu │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_selu_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_selu_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_clip_end │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_clip_start │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_end_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_end_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_start_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_start_1_end_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_start_1_end_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_start_greater_than_end │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shape_start_negative_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shrink_hard │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_shrink_soft │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_sigmoid │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_sigmoid_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_sign │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_simple_rnn_batchwise │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_simple_rnn_defaults │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_simple_rnn_with_initial_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_sin │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_sin_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_sinh │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_sinh_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_size │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_size_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_slice │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_slice_default_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_slice_default_steps │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_slice_end_out_of_bounds │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_slice_neg │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_slice_neg_steps │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_slice_negative_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ └── output_0.pb │ ├── test_slice_start_out_of_bounds │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── input_3.pb │ │ │ ├── input_4.pb │ │ │ └── output_0.pb │ ├── test_softmax_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_axis_0_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_axis_0_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_axis_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_axis_1_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_axis_1_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_axis_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_axis_2_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_axis_2_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_default_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_default_axis_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_default_axis_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_example_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_example_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_large_number │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_large_number_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_large_number_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_negative_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_negative_axis_expanded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_negative_axis_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softplus │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softplus_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softsign │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softsign_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_spacetodepth │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_spacetodepth_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_split_1d_uneven_split_opset18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_split_2d_uneven_split_opset18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_split_equal_parts_1d_opset13 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_split_equal_parts_1d_opset18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_split_equal_parts_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_split_equal_parts_2d_opset13 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_split_equal_parts_default_axis_opset13 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_split_equal_parts_default_axis_opset18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_split_to_sequence_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_split_to_sequence_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_split_to_sequence_nokeepdims │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_split_variable_parts_1d_opset13 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_split_variable_parts_1d_opset18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_split_variable_parts_2d_opset13 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_split_variable_parts_2d_opset18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_split_variable_parts_default_axis_opset13 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_split_variable_parts_default_axis_opset18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_split_zero_size_splits_opset13 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_split_zero_size_splits_opset18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ ├── test_sqrt │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_sqrt_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_squeeze │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_squeeze_negative_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_stft │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_stft_with_window │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_string_concat │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_string_concat_broadcasting │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_string_concat_empty_string │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_string_concat_utf8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_string_concat_zero_dimensional │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_string_split_basic │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_string_split_consecutive_delimiters │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_string_split_empty_string_delimiter │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_string_split_empty_tensor │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_string_split_maxsplit │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_string_split_no_delimiter │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_strnormalizer_export_monday_casesensintive_lower │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_strnormalizer_export_monday_casesensintive_nochangecase │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_strnormalizer_export_monday_casesensintive_upper │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_strnormalizer_export_monday_empty_output │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_strnormalizer_export_monday_insensintive_upper_twodim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_strnormalizer_nostopwords_nochangecase │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_sub │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sub_bcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sub_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sub_int16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sub_int8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sub_uint16 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sub_uint32 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sub_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sub_uint8 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_sum_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_sum_one_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_sum_two_inputs │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_swish │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tan │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tan_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tanh │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tanh_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tensorscatter │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_tensorscatter_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_tensorscatter_circular │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_tfidfvectorizer_tf_batch_onlybigrams_skip0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tfidfvectorizer_tf_batch_onlybigrams_skip5 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tfidfvectorizer_tf_batch_uniandbigrams_skip5 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tfidfvectorizer_tf_only_bigrams_skip0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tfidfvectorizer_tf_onlybigrams_levelempty │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tfidfvectorizer_tf_onlybigrams_skip5 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tfidfvectorizer_tf_uniandbigrams_skip5 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_thresholdedrelu │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_thresholdedrelu_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_thresholdedrelu_default_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_thresholdedrelu_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_thresholdedrelu_example_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_thresholdedrelu_expanded_ver18 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tile │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_tile_precomputed │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_top_k │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_top_k_negative_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_top_k_same_values │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_top_k_same_values_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_top_k_same_values_largest │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_top_k_smallest │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_top_k_uint64 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_training_dropout │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_training_dropout_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_training_dropout_default_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_training_dropout_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_training_dropout_zero_ratio │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_training_dropout_zero_ratio_mask │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_transpose_all_permutations_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_transpose_all_permutations_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_transpose_all_permutations_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_transpose_all_permutations_3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_transpose_all_permutations_4 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_transpose_all_permutations_5 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_transpose_default │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tril │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tril_neg │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_tril_one_row_neg │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tril_out_neg │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_tril_out_pos │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_tril_pos │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_tril_square │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_tril_square_neg │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_tril_zero │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_triu │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_triu_neg │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_triu_one_row │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_triu_out_neg_out │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_triu_out_pos │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_triu_pos │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_triu_square │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_triu_square_neg │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_triu_zero │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_unique_length_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_unique_not_sorted_without_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_unique_sorted_with_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_unique_sorted_with_axis_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_unique_sorted_with_negative_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_unique_sorted_without_axis │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ ├── output_2.pb │ │ │ └── output_3.pb │ ├── test_unsqueeze_axis_0 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_unsqueeze_axis_1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_unsqueeze_axis_2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_unsqueeze_negative_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_unsqueeze_three_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_unsqueeze_two_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_unsqueeze_unsorted_axes │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_upsample_nearest │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_where_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_where_long_example │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_wrap_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_xor2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_xor3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_xor4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_xor_bcast3v1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_xor_bcast3v2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_xor_bcast4v2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_xor_bcast4v3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ └── test_xor_bcast4v4d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ └── output_0.pb ├── pytorch-converted │ ├── test_AvgPool1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_AvgPool1d_stride │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_AvgPool2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_AvgPool2d_stride │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_AvgPool3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_AvgPool3d_stride │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_AvgPool3d_stride1_pad0_gpu_input │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_BatchNorm1d_3d_input_eval │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_BatchNorm2d_eval │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_BatchNorm2d_momentum_eval │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_BatchNorm3d_eval │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_BatchNorm3d_momentum_eval │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ConstantPad2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv1d_dilated │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv1d_groups │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv1d_pad1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv1d_pad1size1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv1d_pad2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv1d_pad2size1 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv1d_stride │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_depthwise │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_depthwise_padded │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_depthwise_strided │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_depthwise_with_multiplier │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_dilated │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_groups │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_groups_thnn │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_no_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv2d_strided │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv3d_dilated │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv3d_dilated_strided │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv3d_groups │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv3d_no_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv3d_stride │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Conv3d_stride_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ConvTranspose2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ConvTranspose2d_no_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ELU │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Embedding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Embedding_sparse │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_GLU │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_GLU_dim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_LeakyReLU │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_LeakyReLU_with_negval │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Linear │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Linear_no_bias │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_LogSoftmax │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_MaxPool1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_MaxPool1d_stride │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_MaxPool1d_stride_padding_dilation │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_MaxPool2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_MaxPool2d_stride_padding_dilation │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_MaxPool3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_MaxPool3d_stride │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_MaxPool3d_stride_padding │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_PReLU_1d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_PReLU_1d_multiparam │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_PReLU_2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_PReLU_2d_multiparam │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_PReLU_3d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_PReLU_3d_multiparam │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_PixelShuffle │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_PoissonNLLLLoss_no_reduce │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ReLU │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ReflectionPad2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ReplicationPad2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_SELU │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Sigmoid │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Softmax │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Softmin │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Softplus │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Softsign │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_Tanh │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_ZeroPad2d │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_log_softmax_dim3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_log_softmax_lastdim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_softmax_functional_dim3 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ └── test_softmax_lastdim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb ├── pytorch-operator │ ├── test_operator_add_broadcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_add_size1_broadcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_add_size1_right_broadcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_add_size1_singleton_broadcast │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_addconstant │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_addmm │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ └── output_0.pb │ ├── test_operator_basic │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_chunk │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── output_0.pb │ │ │ └── output_1.pb │ ├── test_operator_clip │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_concat2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_conv │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_convtranspose │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_exp │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_flatten │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_index │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_max │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_maxpool │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_min │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_mm │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_non_float_params │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_pad │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_params │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_permute2 │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_pow │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ └── output_0.pb │ ├── test_operator_reduced_mean │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_reduced_mean_keepdim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_reduced_sum │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_reduced_sum_keepdim │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_repeat │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_repeat_dim_overflow │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_selu │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_sqrt │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_symbolic_override │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ └── output_0.pb │ ├── test_operator_symbolic_override_nested │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ │ ├── input_0.pb │ │ │ ├── input_1.pb │ │ │ ├── input_2.pb │ │ │ ├── output_0.pb │ │ │ ├── output_1.pb │ │ │ └── output_2.pb │ └── test_operator_view │ │ ├── model.onnx │ │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb ├── real │ ├── test_bvlc_alexnet │ │ └── data.json │ ├── test_densenet121 │ │ └── data.json │ ├── test_inception_v1 │ │ └── data.json │ ├── test_inception_v2 │ │ └── data.json │ ├── test_resnet50 │ │ └── data.json │ ├── test_shufflenet │ │ └── data.json │ ├── test_squeezenet │ │ └── data.json │ ├── test_vgg19 │ │ └── data.json │ └── test_zfnet512 │ │ └── data.json └── simple │ ├── test_expand_shape_model1 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ └── output_0.pb │ ├── test_expand_shape_model2 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ └── output_0.pb │ ├── test_expand_shape_model3 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ └── output_0.pb │ ├── test_expand_shape_model4 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ └── output_0.pb │ ├── test_gradient_of_add │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ ├── output_0.pb │ │ ├── output_1.pb │ │ └── output_2.pb │ ├── test_gradient_of_add_and_mul │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ ├── output_0.pb │ │ ├── output_1.pb │ │ └── output_2.pb │ ├── test_sequence_model1 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ ├── input_2.pb │ │ └── output_0.pb │ ├── test_sequence_model2 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ ├── input_2.pb │ │ └── output_0.pb │ ├── test_sequence_model3 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ ├── input_2.pb │ │ └── output_0.pb │ ├── test_sequence_model4 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ ├── input_2.pb │ │ └── output_0.pb │ ├── test_sequence_model5 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ ├── input_2.pb │ │ └── output_0.pb │ ├── test_sequence_model6 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ ├── test_sequence_model7 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ ├── test_sequence_model8 │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ ├── input_1.pb │ │ └── output_0.pb │ ├── test_shrink │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ ├── test_sign_model │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ ├── test_single_relu_model │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ ├── test_strnorm_model_monday_casesensintive_lower │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ ├── test_strnorm_model_monday_casesensintive_nochangecase │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ ├── test_strnorm_model_monday_casesensintive_upper │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ ├── test_strnorm_model_monday_empty_output │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ ├── test_strnorm_model_monday_insensintive_upper_twodim │ ├── model.onnx │ └── test_data_set_0 │ │ ├── input_0.pb │ │ └── output_0.pb │ └── test_strnorm_model_nostopwords_nochangecase │ ├── model.onnx │ └── test_data_set_0 │ ├── input_0.pb │ └── output_0.pb └── tools └── onnxtool.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/README.md -------------------------------------------------------------------------------- /documents/images/mnist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/documents/images/mnist.gif -------------------------------------------------------------------------------- /documents/onnx.proto3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/documents/onnx.proto3 -------------------------------------------------------------------------------- /examples/benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/examples/benchmark/.gitignore -------------------------------------------------------------------------------- /examples/benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/examples/benchmark/Makefile -------------------------------------------------------------------------------- /examples/benchmark/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/examples/benchmark/main.c -------------------------------------------------------------------------------- /examples/hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/examples/hello/.gitignore -------------------------------------------------------------------------------- /examples/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/examples/hello/Makefile -------------------------------------------------------------------------------- /examples/hello/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/examples/hello/main.c -------------------------------------------------------------------------------- /examples/mnist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/examples/mnist/.gitignore -------------------------------------------------------------------------------- /examples/mnist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/examples/mnist/Makefile -------------------------------------------------------------------------------- /examples/mnist/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/examples/mnist/main.c -------------------------------------------------------------------------------- /src/default/Abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Abs.c -------------------------------------------------------------------------------- /src/default/Acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Acos.c -------------------------------------------------------------------------------- /src/default/Acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Acosh.c -------------------------------------------------------------------------------- /src/default/Add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Add.c -------------------------------------------------------------------------------- /src/default/AffineGrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/AffineGrid.c -------------------------------------------------------------------------------- /src/default/And.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/And.c -------------------------------------------------------------------------------- /src/default/ArgMax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ArgMax.c -------------------------------------------------------------------------------- /src/default/ArgMin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ArgMin.c -------------------------------------------------------------------------------- /src/default/Asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Asin.c -------------------------------------------------------------------------------- /src/default/Asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Asinh.c -------------------------------------------------------------------------------- /src/default/Atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Atan.c -------------------------------------------------------------------------------- /src/default/Atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Atanh.c -------------------------------------------------------------------------------- /src/default/Attention.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Attention.c -------------------------------------------------------------------------------- /src/default/AveragePool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/AveragePool.c -------------------------------------------------------------------------------- /src/default/BatchNormalization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/BatchNormalization.c -------------------------------------------------------------------------------- /src/default/Bernoulli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Bernoulli.c -------------------------------------------------------------------------------- /src/default/BitShift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/BitShift.c -------------------------------------------------------------------------------- /src/default/BitwiseAnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/BitwiseAnd.c -------------------------------------------------------------------------------- /src/default/BitwiseNot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/BitwiseNot.c -------------------------------------------------------------------------------- /src/default/BitwiseOr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/BitwiseOr.c -------------------------------------------------------------------------------- /src/default/BitwiseXor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/BitwiseXor.c -------------------------------------------------------------------------------- /src/default/BlackmanWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/BlackmanWindow.c -------------------------------------------------------------------------------- /src/default/Cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Cast.c -------------------------------------------------------------------------------- /src/default/CastLike.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void resolver_default_op_CastLike(struct onnx_node_t * n) 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/default/Ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Ceil.c -------------------------------------------------------------------------------- /src/default/Celu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Celu.c -------------------------------------------------------------------------------- /src/default/CenterCropPad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/CenterCropPad.c -------------------------------------------------------------------------------- /src/default/Clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Clip.c -------------------------------------------------------------------------------- /src/default/Compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Compress.c -------------------------------------------------------------------------------- /src/default/Concat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Concat.c -------------------------------------------------------------------------------- /src/default/ConcatFromSequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ConcatFromSequence.c -------------------------------------------------------------------------------- /src/default/Constant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Constant.c -------------------------------------------------------------------------------- /src/default/ConstantOfShape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ConstantOfShape.c -------------------------------------------------------------------------------- /src/default/Conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Conv.c -------------------------------------------------------------------------------- /src/default/ConvInteger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ConvInteger.c -------------------------------------------------------------------------------- /src/default/ConvTranspose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ConvTranspose.c -------------------------------------------------------------------------------- /src/default/Cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Cos.c -------------------------------------------------------------------------------- /src/default/Cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Cosh.c -------------------------------------------------------------------------------- /src/default/CumSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/CumSum.c -------------------------------------------------------------------------------- /src/default/DepthToSpace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/DepthToSpace.c -------------------------------------------------------------------------------- /src/default/DequantizeLinear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/DequantizeLinear.c -------------------------------------------------------------------------------- /src/default/Det.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Det.c -------------------------------------------------------------------------------- /src/default/Div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Div.c -------------------------------------------------------------------------------- /src/default/Dropout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Dropout.c -------------------------------------------------------------------------------- /src/default/DynamicQuantizeLinear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/DynamicQuantizeLinear.c -------------------------------------------------------------------------------- /src/default/Einsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Einsum.c -------------------------------------------------------------------------------- /src/default/Elu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Elu.c -------------------------------------------------------------------------------- /src/default/Equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Equal.c -------------------------------------------------------------------------------- /src/default/Erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Erf.c -------------------------------------------------------------------------------- /src/default/Exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Exp.c -------------------------------------------------------------------------------- /src/default/Expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Expand.c -------------------------------------------------------------------------------- /src/default/EyeLike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/EyeLike.c -------------------------------------------------------------------------------- /src/default/Flatten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Flatten.c -------------------------------------------------------------------------------- /src/default/Floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Floor.c -------------------------------------------------------------------------------- /src/default/GRU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/GRU.c -------------------------------------------------------------------------------- /src/default/Gather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Gather.c -------------------------------------------------------------------------------- /src/default/GatherElements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/GatherElements.c -------------------------------------------------------------------------------- /src/default/GatherND.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/GatherND.c -------------------------------------------------------------------------------- /src/default/Gelu.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void resolver_default_op_Gelu(struct onnx_node_t * n) 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/default/Gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Gemm.c -------------------------------------------------------------------------------- /src/default/GlobalAveragePool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/GlobalAveragePool.c -------------------------------------------------------------------------------- /src/default/GlobalLpPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/GlobalLpPool.c -------------------------------------------------------------------------------- /src/default/GlobalMaxPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/GlobalMaxPool.c -------------------------------------------------------------------------------- /src/default/Greater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Greater.c -------------------------------------------------------------------------------- /src/default/GreaterOrEqual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/GreaterOrEqual.c -------------------------------------------------------------------------------- /src/default/GroupNormalization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/GroupNormalization.c -------------------------------------------------------------------------------- /src/default/HannWindow.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void resolver_default_op_HannWindow(struct onnx_node_t * n) 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/default/HardSigmoid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/HardSigmoid.c -------------------------------------------------------------------------------- /src/default/HardSwish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/HardSwish.c -------------------------------------------------------------------------------- /src/default/Hardmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Hardmax.c -------------------------------------------------------------------------------- /src/default/Identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Identity.c -------------------------------------------------------------------------------- /src/default/If.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/If.c -------------------------------------------------------------------------------- /src/default/InstanceNormalization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/InstanceNormalization.c -------------------------------------------------------------------------------- /src/default/IsInf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/IsInf.c -------------------------------------------------------------------------------- /src/default/IsNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/IsNaN.c -------------------------------------------------------------------------------- /src/default/LRN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/LRN.c -------------------------------------------------------------------------------- /src/default/LSTM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/LSTM.c -------------------------------------------------------------------------------- /src/default/LayerNormalization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/LayerNormalization.c -------------------------------------------------------------------------------- /src/default/LeakyRelu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/LeakyRelu.c -------------------------------------------------------------------------------- /src/default/Less.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Less.c -------------------------------------------------------------------------------- /src/default/LessOrEqual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/LessOrEqual.c -------------------------------------------------------------------------------- /src/default/Log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Log.c -------------------------------------------------------------------------------- /src/default/LogSoftmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/LogSoftmax.c -------------------------------------------------------------------------------- /src/default/Loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Loop.c -------------------------------------------------------------------------------- /src/default/LpNormalization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/LpNormalization.c -------------------------------------------------------------------------------- /src/default/LpPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/LpPool.c -------------------------------------------------------------------------------- /src/default/MatMul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/MatMul.c -------------------------------------------------------------------------------- /src/default/MatMulInteger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/MatMulInteger.c -------------------------------------------------------------------------------- /src/default/Max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Max.c -------------------------------------------------------------------------------- /src/default/MaxPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/MaxPool.c -------------------------------------------------------------------------------- /src/default/MaxRoiPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/MaxRoiPool.c -------------------------------------------------------------------------------- /src/default/MaxUnpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/MaxUnpool.c -------------------------------------------------------------------------------- /src/default/Mean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Mean.c -------------------------------------------------------------------------------- /src/default/MeanVarianceNormalization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/MeanVarianceNormalization.c -------------------------------------------------------------------------------- /src/default/Min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Min.c -------------------------------------------------------------------------------- /src/default/Mish.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void resolver_default_op_Mish(struct onnx_node_t * n) 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/default/Mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Mod.c -------------------------------------------------------------------------------- /src/default/Mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Mul.c -------------------------------------------------------------------------------- /src/default/Multinomial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Multinomial.c -------------------------------------------------------------------------------- /src/default/Neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Neg.c -------------------------------------------------------------------------------- /src/default/NegativeLogLikelihoodLoss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/NegativeLogLikelihoodLoss.c -------------------------------------------------------------------------------- /src/default/NonMaxSuppression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/NonMaxSuppression.c -------------------------------------------------------------------------------- /src/default/NonZero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/NonZero.c -------------------------------------------------------------------------------- /src/default/Not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Not.c -------------------------------------------------------------------------------- /src/default/OneHot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/OneHot.c -------------------------------------------------------------------------------- /src/default/Or.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Or.c -------------------------------------------------------------------------------- /src/default/PRelu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/PRelu.c -------------------------------------------------------------------------------- /src/default/Pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Pad.c -------------------------------------------------------------------------------- /src/default/Pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Pow.c -------------------------------------------------------------------------------- /src/default/QLinearConv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/QLinearConv.c -------------------------------------------------------------------------------- /src/default/QLinearMatMul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/QLinearMatMul.c -------------------------------------------------------------------------------- /src/default/QuantizeLinear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/QuantizeLinear.c -------------------------------------------------------------------------------- /src/default/RNN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/RNN.c -------------------------------------------------------------------------------- /src/default/RandomNormal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/RandomNormal.c -------------------------------------------------------------------------------- /src/default/RandomNormalLike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/RandomNormalLike.c -------------------------------------------------------------------------------- /src/default/RandomUniform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/RandomUniform.c -------------------------------------------------------------------------------- /src/default/RandomUniformLike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/RandomUniformLike.c -------------------------------------------------------------------------------- /src/default/Range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Range.c -------------------------------------------------------------------------------- /src/default/Reciprocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Reciprocal.c -------------------------------------------------------------------------------- /src/default/ReduceL1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceL1.c -------------------------------------------------------------------------------- /src/default/ReduceL2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceL2.c -------------------------------------------------------------------------------- /src/default/ReduceLogSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceLogSum.c -------------------------------------------------------------------------------- /src/default/ReduceLogSumExp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceLogSumExp.c -------------------------------------------------------------------------------- /src/default/ReduceMax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceMax.c -------------------------------------------------------------------------------- /src/default/ReduceMean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceMean.c -------------------------------------------------------------------------------- /src/default/ReduceMin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceMin.c -------------------------------------------------------------------------------- /src/default/ReduceProd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceProd.c -------------------------------------------------------------------------------- /src/default/ReduceSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceSum.c -------------------------------------------------------------------------------- /src/default/ReduceSumSquare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReduceSumSquare.c -------------------------------------------------------------------------------- /src/default/Relu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Relu.c -------------------------------------------------------------------------------- /src/default/Reshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Reshape.c -------------------------------------------------------------------------------- /src/default/Resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Resize.c -------------------------------------------------------------------------------- /src/default/ReverseSequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ReverseSequence.c -------------------------------------------------------------------------------- /src/default/RoiAlign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/RoiAlign.c -------------------------------------------------------------------------------- /src/default/Round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Round.c -------------------------------------------------------------------------------- /src/default/Scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Scan.c -------------------------------------------------------------------------------- /src/default/Scatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Scatter.c -------------------------------------------------------------------------------- /src/default/ScatterElements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ScatterElements.c -------------------------------------------------------------------------------- /src/default/ScatterND.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ScatterND.c -------------------------------------------------------------------------------- /src/default/Selu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Selu.c -------------------------------------------------------------------------------- /src/default/SequenceAt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/SequenceAt.c -------------------------------------------------------------------------------- /src/default/SequenceConstruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/SequenceConstruct.c -------------------------------------------------------------------------------- /src/default/SequenceEmpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/SequenceEmpty.c -------------------------------------------------------------------------------- /src/default/SequenceErase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/SequenceErase.c -------------------------------------------------------------------------------- /src/default/SequenceInsert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/SequenceInsert.c -------------------------------------------------------------------------------- /src/default/SequenceLength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/SequenceLength.c -------------------------------------------------------------------------------- /src/default/Shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Shape.c -------------------------------------------------------------------------------- /src/default/Shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Shrink.c -------------------------------------------------------------------------------- /src/default/Sigmoid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Sigmoid.c -------------------------------------------------------------------------------- /src/default/Sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Sign.c -------------------------------------------------------------------------------- /src/default/Sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Sin.c -------------------------------------------------------------------------------- /src/default/Sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Sinh.c -------------------------------------------------------------------------------- /src/default/Size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Size.c -------------------------------------------------------------------------------- /src/default/Slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Slice.c -------------------------------------------------------------------------------- /src/default/Softmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Softmax.c -------------------------------------------------------------------------------- /src/default/SoftmaxCrossEntropyLoss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/SoftmaxCrossEntropyLoss.c -------------------------------------------------------------------------------- /src/default/Softplus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Softplus.c -------------------------------------------------------------------------------- /src/default/Softsign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Softsign.c -------------------------------------------------------------------------------- /src/default/SpaceToDepth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/SpaceToDepth.c -------------------------------------------------------------------------------- /src/default/Split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Split.c -------------------------------------------------------------------------------- /src/default/SplitToSequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/SplitToSequence.c -------------------------------------------------------------------------------- /src/default/Sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Sqrt.c -------------------------------------------------------------------------------- /src/default/Squeeze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Squeeze.c -------------------------------------------------------------------------------- /src/default/StringNormalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/StringNormalizer.c -------------------------------------------------------------------------------- /src/default/Sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Sub.c -------------------------------------------------------------------------------- /src/default/Sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Sum.c -------------------------------------------------------------------------------- /src/default/Swish.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void resolver_default_op_Swish(struct onnx_node_t * n) 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/default/Tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Tan.c -------------------------------------------------------------------------------- /src/default/Tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Tanh.c -------------------------------------------------------------------------------- /src/default/TensorScatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/TensorScatter.c -------------------------------------------------------------------------------- /src/default/TfIdfVectorizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/TfIdfVectorizer.c -------------------------------------------------------------------------------- /src/default/ThresholdedRelu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/ThresholdedRelu.c -------------------------------------------------------------------------------- /src/default/Tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Tile.c -------------------------------------------------------------------------------- /src/default/TopK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/TopK.c -------------------------------------------------------------------------------- /src/default/Transpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Transpose.c -------------------------------------------------------------------------------- /src/default/Trilu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Trilu.c -------------------------------------------------------------------------------- /src/default/Unique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Unique.c -------------------------------------------------------------------------------- /src/default/Unsqueeze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Unsqueeze.c -------------------------------------------------------------------------------- /src/default/Upsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Upsample.c -------------------------------------------------------------------------------- /src/default/Where.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Where.c -------------------------------------------------------------------------------- /src/default/Xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/Xor.c -------------------------------------------------------------------------------- /src/default/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/default.c -------------------------------------------------------------------------------- /src/default/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/default/default.h -------------------------------------------------------------------------------- /src/hmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/hmap.c -------------------------------------------------------------------------------- /src/hmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/hmap.h -------------------------------------------------------------------------------- /src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/list.h -------------------------------------------------------------------------------- /src/onnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/onnx.c -------------------------------------------------------------------------------- /src/onnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/onnx.h -------------------------------------------------------------------------------- /src/onnx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/onnx.mk -------------------------------------------------------------------------------- /src/onnx.proto3.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/onnx.proto3.pb-c.c -------------------------------------------------------------------------------- /src/onnx.proto3.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/onnx.proto3.pb-c.h -------------------------------------------------------------------------------- /src/onnxconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/onnxconf.h -------------------------------------------------------------------------------- /src/protobuf-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/protobuf-c.c -------------------------------------------------------------------------------- /src/protobuf-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/src/protobuf-c.h -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/light/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/README.md -------------------------------------------------------------------------------- /tests/light/light_bvlc_alexnet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_bvlc_alexnet.onnx -------------------------------------------------------------------------------- /tests/light/light_densenet121.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_densenet121.onnx -------------------------------------------------------------------------------- /tests/light/light_inception_v1.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_inception_v1.onnx -------------------------------------------------------------------------------- /tests/light/light_inception_v2.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_inception_v2.onnx -------------------------------------------------------------------------------- /tests/light/light_resnet50.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_resnet50.onnx -------------------------------------------------------------------------------- /tests/light/light_resnet50_output_0.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_resnet50_output_0.pb -------------------------------------------------------------------------------- /tests/light/light_shufflenet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_shufflenet.onnx -------------------------------------------------------------------------------- /tests/light/light_squeezenet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_squeezenet.onnx -------------------------------------------------------------------------------- /tests/light/light_vgg19.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_vgg19.onnx -------------------------------------------------------------------------------- /tests/light/light_vgg19_output_0.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_vgg19_output_0.pb -------------------------------------------------------------------------------- /tests/light/light_zfnet512.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_zfnet512.onnx -------------------------------------------------------------------------------- /tests/light/light_zfnet512_output_0.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/light/light_zfnet512_output_0.pb -------------------------------------------------------------------------------- /tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/main.c -------------------------------------------------------------------------------- /tests/model/mnist_8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/model/mnist_8/model.onnx -------------------------------------------------------------------------------- /tests/model/mobilenet_v2_7/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/model/mobilenet_v2_7/model.onnx -------------------------------------------------------------------------------- /tests/model/shufflenet_v1_9/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/model/shufflenet_v1_9/model.onnx -------------------------------------------------------------------------------- /tests/model/squeezenet_v11_7/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/model/squeezenet_v11_7/model.onnx -------------------------------------------------------------------------------- /tests/model/tinyyolo_v2_8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/model/tinyyolo_v2_8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_abs/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_abs/model.onnx -------------------------------------------------------------------------------- /tests/node/test_acos/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_acos/model.onnx -------------------------------------------------------------------------------- /tests/node/test_acos_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_acos_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_acosh/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_acosh/model.onnx -------------------------------------------------------------------------------- /tests/node/test_adagrad/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_adagrad/model.onnx -------------------------------------------------------------------------------- /tests/node/test_adagrad/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 | BHJ@ -------------------------------------------------------------------------------- /tests/node/test_adagrad_multiple/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 | BH1J@ -------------------------------------------------------------------------------- /tests/node/test_adam/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_adam/model.onnx -------------------------------------------------------------------------------- /tests/node/test_adam_multiple/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 | BV1J@ -------------------------------------------------------------------------------- /tests/node/test_adam_multiple/test_data_set_0/input_8.pb: -------------------------------------------------------------------------------- 1 | BH1J? -------------------------------------------------------------------------------- /tests/node/test_add/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_add/model.onnx -------------------------------------------------------------------------------- /tests/node/test_add_bcast/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_add_bcast/model.onnx -------------------------------------------------------------------------------- /tests/node/test_add_int16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_add_int16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_add_int8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_add_int8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_add_int8/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BsumJ< +   ( -  (  !"$% -------------------------------------------------------------------------------- /tests/node/test_add_uint16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_add_uint16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_add_uint32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_add_uint32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_add_uint64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_add_uint64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_add_uint8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_add_uint8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_ai_onnx_ml_label_encoder_string_int/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | 2a2b2d2c2gBX -------------------------------------------------------------------------------- /tests/node/test_ai_onnx_ml_label_encoder_string_int_no_default/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | 2a2b2d2c2gBX -------------------------------------------------------------------------------- /tests/node/test_ai_onnx_ml_label_encoder_tensor_mapping/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | 2a2b2d2c2gBX -------------------------------------------------------------------------------- /tests/node/test_ai_onnx_ml_label_encoder_tensor_mapping/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BYJ 2 | ** -------------------------------------------------------------------------------- /tests/node/test_ai_onnx_ml_label_encoder_tensor_value_only_mapping/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | 2a2b2d2c2gBX -------------------------------------------------------------------------------- /tests/node/test_ai_onnx_ml_label_encoder_tensor_value_only_mapping/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BYJ 2 | ** -------------------------------------------------------------------------------- /tests/node/test_and2d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_and2d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_and3d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_and3d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_and4d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_and4d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_and_bcast3v1d/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /tests/node/test_asin/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_asin/model.onnx -------------------------------------------------------------------------------- /tests/node/test_asin_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_asin_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_asinh/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_asinh/model.onnx -------------------------------------------------------------------------------- /tests/node/test_atan/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_atan/model.onnx -------------------------------------------------------------------------------- /tests/node/test_atan_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_atan_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_atanh/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_atanh/model.onnx -------------------------------------------------------------------------------- /tests/node/test_attention_3d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_attention_3d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_attention_4d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_attention_4d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_bernoulli/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_bernoulli/model.onnx -------------------------------------------------------------------------------- /tests/node/test_bitshift_left_uint16/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ -------------------------------------------------------------------------------- /tests/node/test_bitshift_left_uint16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /tests/node/test_bitshift_left_uint16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BzJ  -------------------------------------------------------------------------------- /tests/node/test_bitshift_left_uint8/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ -------------------------------------------------------------------------------- /tests/node/test_bitshift_left_uint8/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /tests/node/test_bitshift_left_uint8/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BzJ  -------------------------------------------------------------------------------- /tests/node/test_bitshift_right_uint16/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ -------------------------------------------------------------------------------- /tests/node/test_bitshift_right_uint16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /tests/node/test_bitshift_right_uint16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BzJ -------------------------------------------------------------------------------- /tests/node/test_bitshift_right_uint8/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ -------------------------------------------------------------------------------- /tests/node/test_bitshift_right_uint8/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /tests/node/test_bitshift_right_uint8/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BzJ -------------------------------------------------------------------------------- /tests/node/test_blackmanwindow/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_blackmanwindow_expanded/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_blackmanwindow_symmetric/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_blackmanwindow_symmetric_expanded/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_cast_e8m0_FLOAT8E8M0_to_FLOAT16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  2 | BoutputJ048@@DH -------------------------------------------------------------------------------- /tests/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT4E2M1/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT4E2M1_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT8E4M3FN/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT8E4M3FNUZ/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT8E4M3FNUZ_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT8E4M3FN_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT8E5M2/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT8E5M2FNUZ/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT8E5M2FNUZ_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT8E5M2_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_INT4/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_INT4_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_UINT4/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT16_to_UINT4_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT4E2M1_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT4E2M1_to_FLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT4E2M1_to_FLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT4E2M1_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E4M3FNUZ_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E4M3FNUZ_to_FLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E4M3FNUZ_to_FLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E4M3FNUZ_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E4M3FN_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E4M3FN_to_FLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E4M3FN_to_FLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E4M3FN_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E5M2FNUZ_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E5M2FNUZ_to_FLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E5M2FNUZ_to_FLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E5M2FNUZ_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E5M2_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E5M2_to_FLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E5M2_to_FLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT8E5M2_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT4E2M1/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT4E2M1_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT8E4M3FN/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT8E4M3FNUZ/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT8E4M3FNUZ_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT8E4M3FN_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT8E5M2/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT8E5M2FNUZ/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT8E5M2FNUZ_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_FLOAT8E5M2_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_INT4/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_INT4_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_UINT4/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_FLOAT_to_UINT4_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_INT4_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_INT4_to_FLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_INT4_to_FLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_INT4_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_INT4_to_INT8/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_INT4_to_INT8_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_UINT4_to_FLOAT/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_UINT4_to_FLOAT16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_UINT4_to_FLOAT16_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_UINT4_to_FLOAT_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_UINT4_to_UINT8/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_UINT4_to_UINT8_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT16_to_FLOAT8E4M3FN/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT16_to_FLOAT8E4M3FNUZ/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT16_to_FLOAT8E4M3FNUZ_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT16_to_FLOAT8E4M3FN_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT16_to_FLOAT8E5M2/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT16_to_FLOAT8E5M2FNUZ/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT16_to_FLOAT8E5M2FNUZ_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT16_to_FLOAT8E5M2_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT_to_FLOAT8E4M3FN/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT_to_FLOAT8E4M3FNUZ/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT_to_FLOAT8E4M3FNUZ_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT_to_FLOAT8E4M3FN_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT_to_FLOAT8E5M2/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT_to_FLOAT8E5M2FNUZ/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT_to_FLOAT8E5M2FNUZ_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_castlike_no_saturate_FLOAT_to_FLOAT8E5M2_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Blike -------------------------------------------------------------------------------- /tests/node/test_ceil/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_ceil/model.onnx -------------------------------------------------------------------------------- /tests/node/test_ceil_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_ceil_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_celu/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_celu/model.onnx -------------------------------------------------------------------------------- /tests/node/test_clip/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_clip/model.onnx -------------------------------------------------------------------------------- /tests/node/test_clip_default_int8_max/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BmaxJ -------------------------------------------------------------------------------- /tests/node/test_clip_default_int8_max_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BmaxJ -------------------------------------------------------------------------------- /tests/node/test_clip_default_int8_min/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BminJ -------------------------------------------------------------------------------- /tests/node/test_clip_default_int8_min_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BminJ -------------------------------------------------------------------------------- /tests/node/test_clip_default_max/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BmaxJ -------------------------------------------------------------------------------- /tests/node/test_clip_default_max_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BmaxJ -------------------------------------------------------------------------------- /tests/node/test_clip_default_min/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BminJ -------------------------------------------------------------------------------- /tests/node/test_clip_default_min_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BminJ -------------------------------------------------------------------------------- /tests/node/test_clip_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_clip_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_clip_min_greater_than_max/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BminJ@ -------------------------------------------------------------------------------- /tests/node/test_clip_min_greater_than_max_expanded/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BminJ@ -------------------------------------------------------------------------------- /tests/node/test_col2im/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_col2im/model.onnx -------------------------------------------------------------------------------- /tests/node/test_col2im_5d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_col2im_5d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_col2im_pads/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_col2im_pads/model.onnx -------------------------------------------------------------------------------- /tests/node/test_compress_0/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_compress_0/model.onnx -------------------------------------------------------------------------------- /tests/node/test_compress_0/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  B conditionJ -------------------------------------------------------------------------------- /tests/node/test_compress_1/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_compress_1/model.onnx -------------------------------------------------------------------------------- /tests/node/test_compress_1/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  B conditionJ -------------------------------------------------------------------------------- /tests/node/test_compress_default_axis/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  B conditionJ -------------------------------------------------------------------------------- /tests/node/test_compress_negative_axis/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  B conditionJ -------------------------------------------------------------------------------- /tests/node/test_constant/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_constant/model.onnx -------------------------------------------------------------------------------- /tests/node/test_constant_pad/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_constant_pad/model.onnx -------------------------------------------------------------------------------- /tests/node/test_constantofshape_int_shape_zero/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /tests/node/test_convinteger_with_padding/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ  2 | -------------------------------------------------------------------------------- /tests/node/test_convinteger_with_padding/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BwJ -------------------------------------------------------------------------------- /tests/node/test_convinteger_with_padding/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B x_zero_pointJ -------------------------------------------------------------------------------- /tests/node/test_convinteger_without_padding/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ  2 | -------------------------------------------------------------------------------- /tests/node/test_convinteger_without_padding/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BwJ -------------------------------------------------------------------------------- /tests/node/test_convinteger_without_padding/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B x_zero_pointJ -------------------------------------------------------------------------------- /tests/node/test_cos/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_cos/model.onnx -------------------------------------------------------------------------------- /tests/node/test_cos_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_cos_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_cosh/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_cosh/model.onnx -------------------------------------------------------------------------------- /tests/node/test_cosh_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_cosh_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_cumsum_1d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_cumsum_1d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_cumsum_1d/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BaxisJ -------------------------------------------------------------------------------- /tests/node/test_cumsum_1d_exclusive/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BaxisJ -------------------------------------------------------------------------------- /tests/node/test_cumsum_1d_int32_exclusive/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BaxisJ -------------------------------------------------------------------------------- /tests/node/test_cumsum_1d_reverse/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BaxisJ -------------------------------------------------------------------------------- /tests/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BaxisJ -------------------------------------------------------------------------------- /tests/node/test_cumsum_2d_axis_0/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BaxisJ -------------------------------------------------------------------------------- /tests/node/test_cumsum_2d_axis_1/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BaxisJ -------------------------------------------------------------------------------- /tests/node/test_cumsum_2d_int32/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BaxisJ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_blocked/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B x_zero_pointJ  -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_e4m3fn/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_e4m3fn_float16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_e4m3fn_zero_point/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_e4m3fn_zero_point/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | *B 2 | zero_point -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_e5m2/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_float4e2m1/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | * :Bx -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_float4e2m1/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_float4e2m1/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | *B x_zero_point -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_int16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_int4/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_int4/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | *B x_zero_point -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_uint16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_uint4/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bx_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_dequantizelinear_uint4/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | *B x_zero_point -------------------------------------------------------------------------------- /tests/node/test_det_2d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_det_2d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_det_nd/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_det_nd/model.onnx -------------------------------------------------------------------------------- /tests/node/test_dft/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_dft/model.onnx -------------------------------------------------------------------------------- /tests/node/test_dft_axis/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_dft_axis/model.onnx -------------------------------------------------------------------------------- /tests/node/test_dft_inverse/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_dft_inverse/model.onnx -------------------------------------------------------------------------------- /tests/node/test_dft_opset19/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_dft_opset19/model.onnx -------------------------------------------------------------------------------- /tests/node/test_div/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_div/model.onnx -------------------------------------------------------------------------------- /tests/node/test_div_bcast/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_div_bcast/model.onnx -------------------------------------------------------------------------------- /tests/node/test_div_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_div_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_div_example/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BzJ@@@ -------------------------------------------------------------------------------- /tests/node/test_div_int16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_div_int16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_div_int8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_div_int8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_div_uint16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_div_uint16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_div_uint32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_div_uint32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_div_uint64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_div_uint64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_div_uint8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_div_uint8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_2.pb: -------------------------------------------------------------------------------- 1 | B y_zero_pointJ -------------------------------------------------------------------------------- /tests/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_2.pb: -------------------------------------------------------------------------------- 1 | B y_zero_pointJ -------------------------------------------------------------------------------- /tests/node/test_edge_pad/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_edge_pad/model.onnx -------------------------------------------------------------------------------- /tests/node/test_einsum_sum/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_einsum_sum/model.onnx -------------------------------------------------------------------------------- /tests/node/test_elu/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_elu/model.onnx -------------------------------------------------------------------------------- /tests/node/test_elu_default/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_elu_default/model.onnx -------------------------------------------------------------------------------- /tests/node/test_elu_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_elu_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_equal/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_equal/model.onnx -------------------------------------------------------------------------------- /tests/node/test_equal_bcast/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_equal_bcast/model.onnx -------------------------------------------------------------------------------- /tests/node/test_equal_int16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_equal_int16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_equal_int8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_equal_int8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_equal_string/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_equal_string/model.onnx -------------------------------------------------------------------------------- /tests/node/test_equal_string/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  BzJ -------------------------------------------------------------------------------- /tests/node/test_equal_string_broadcast/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | 2string1By -------------------------------------------------------------------------------- /tests/node/test_equal_string_broadcast/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  BzJ -------------------------------------------------------------------------------- /tests/node/test_equal_uint16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_equal_uint16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_equal_uint32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_equal_uint32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_equal_uint64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_equal_uint64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_equal_uint8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_equal_uint8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_erf/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_erf/model.onnx -------------------------------------------------------------------------------- /tests/node/test_exp/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_exp/model.onnx -------------------------------------------------------------------------------- /tests/node/test_exp_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_exp_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_floor/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_floor/model.onnx -------------------------------------------------------------------------------- /tests/node/test_gather_0/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_gather_0/model.onnx -------------------------------------------------------------------------------- /tests/node/test_gather_1/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_gather_1/model.onnx -------------------------------------------------------------------------------- /tests/node/test_gelu_tanh_1/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_gelu_tanh_1/model.onnx -------------------------------------------------------------------------------- /tests/node/test_gelu_tanh_2/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_gelu_tanh_2/model.onnx -------------------------------------------------------------------------------- /tests/node/test_gemm_alpha/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_gemm_alpha/model.onnx -------------------------------------------------------------------------------- /tests/node/test_gemm_beta/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_gemm_beta/model.onnx -------------------------------------------------------------------------------- /tests/node/test_greater/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_greater/model.onnx -------------------------------------------------------------------------------- /tests/node/test_greater_int8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_greater_int8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_gridsample/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_gridsample/model.onnx -------------------------------------------------------------------------------- /tests/node/test_gru_defaults/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_gru_defaults/model.onnx -------------------------------------------------------------------------------- /tests/node/test_hammingwindow/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_hammingwindow_expanded/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_hammingwindow_symmetric/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_hammingwindow_symmetric_expanded/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_hannwindow/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_hannwindow/model.onnx -------------------------------------------------------------------------------- /tests/node/test_hannwindow/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_hannwindow_expanded/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_hannwindow_symmetric/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_hannwindow_symmetric_expanded/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 | -------------------------------------------------------------------------------- /tests/node/test_hardsigmoid/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_hardsigmoid/model.onnx -------------------------------------------------------------------------------- /tests/node/test_hardswish/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_hardswish/model.onnx -------------------------------------------------------------------------------- /tests/node/test_identity/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_identity/model.onnx -------------------------------------------------------------------------------- /tests/node/test_if/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_if/model.onnx -------------------------------------------------------------------------------- /tests/node/test_if/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 |  BcondJ -------------------------------------------------------------------------------- /tests/node/test_if_opt/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_if_opt/model.onnx -------------------------------------------------------------------------------- /tests/node/test_if_opt/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 |  BcondJ -------------------------------------------------------------------------------- /tests/node/test_if_seq/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_if_seq/model.onnx -------------------------------------------------------------------------------- /tests/node/test_if_seq/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 |  BcondJ -------------------------------------------------------------------------------- /tests/node/test_isinf/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_isinf/model.onnx -------------------------------------------------------------------------------- /tests/node/test_isinf/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /tests/node/test_isinf_float16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /tests/node/test_isinf_negative/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /tests/node/test_isinf_positive/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /tests/node/test_isnan/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_isnan/model.onnx -------------------------------------------------------------------------------- /tests/node/test_isnan/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /tests/node/test_isnan_float16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_2d_axis0/test_data_set_0/output_1.pb: -------------------------------------------------------------------------------- 1 | BMeanJي?? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_1.pb: -------------------------------------------------------------------------------- 1 | BMeanJي?? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_2d_axis0_expanded_ver18/test_data_set_0/output_1.pb: -------------------------------------------------------------------------------- 1 | BMeanJي?? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_1.pb: -------------------------------------------------------------------------------- 1 | BMeanJي?? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_1.pb: -------------------------------------------------------------------------------- 1 | BMeanJي?? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_2d_axis_negative_2_expanded_ver18/test_data_set_0/output_1.pb: -------------------------------------------------------------------------------- 1 | BMeanJي?? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_2.pb: -------------------------------------------------------------------------------- 1 | B InvStdDevJp!c? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_2.pb: -------------------------------------------------------------------------------- 1 | B InvStdDevJp!c? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_3d_axis0_epsilon_expanded_ver18/test_data_set_0/output_2.pb: -------------------------------------------------------------------------------- 1 | B InvStdDevJp!c? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_2.pb: -------------------------------------------------------------------------------- 1 | B InvStdDevJp!c? -------------------------------------------------------------------------------- /tests/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_2.pb: -------------------------------------------------------------------------------- 1 | B InvStdDevJp!c? -------------------------------------------------------------------------------- /tests/node/test_leakyrelu/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_leakyrelu/model.onnx -------------------------------------------------------------------------------- /tests/node/test_less/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_less/model.onnx -------------------------------------------------------------------------------- /tests/node/test_less_bcast/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_less_bcast/model.onnx -------------------------------------------------------------------------------- /tests/node/test_less_equal/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_less_equal/model.onnx -------------------------------------------------------------------------------- /tests/node/test_less_int16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_less_int16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_less_int8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_less_int8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_less_uint16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_less_uint16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_less_uint32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_less_uint32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_less_uint64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_less_uint64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_less_uint8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_less_uint8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_log/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_log/model.onnx -------------------------------------------------------------------------------- /tests/node/test_log_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_log_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_loop11/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_loop11/model.onnx -------------------------------------------------------------------------------- /tests/node/test_loop11/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  BcondJ -------------------------------------------------------------------------------- /tests/node/test_loop11/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | Bres_yJPA -------------------------------------------------------------------------------- /tests/node/test_loop13_seq/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_loop13_seq/model.onnx -------------------------------------------------------------------------------- /tests/node/test_loop13_seq/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  BcondJ -------------------------------------------------------------------------------- /tests/node/test_loop13_seq/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | 2 | seq_empty -------------------------------------------------------------------------------- /tests/node/test_loop16_seq_none/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  BcondJ -------------------------------------------------------------------------------- /tests/node/test_loop16_seq_none/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | 2 | opt_seq* J -------------------------------------------------------------------------------- /tests/node/test_lrn/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_lrn/model.onnx -------------------------------------------------------------------------------- /tests/node/test_lrn_default/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_lrn_default/model.onnx -------------------------------------------------------------------------------- /tests/node/test_matmul_2d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_matmul_2d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_matmul_3d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_matmul_3d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_matmul_4d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_matmul_4d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_matmulinteger/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BAJ  2 |   -------------------------------------------------------------------------------- /tests/node/test_matmulinteger/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BBJ -------------------------------------------------------------------------------- /tests/node/test_matmulinteger/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B a_zero_pointJ -------------------------------------------------------------------------------- /tests/node/test_matmulinteger/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B b_zero_pointJ -------------------------------------------------------------------------------- /tests/node/test_max_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_float16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_float16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_float16/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 |  2 | Bdata_0JB@< -------------------------------------------------------------------------------- /tests/node/test_max_float16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Bdata_1J<DD -------------------------------------------------------------------------------- /tests/node/test_max_float16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  2 | BresultJBDD -------------------------------------------------------------------------------- /tests/node/test_max_float32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_float32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_float64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_float64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_int16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_int16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_int16/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | Bdata_0J -------------------------------------------------------------------------------- /tests/node/test_max_int16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bdata_1J -------------------------------------------------------------------------------- /tests/node/test_max_int16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BresultJ -------------------------------------------------------------------------------- /tests/node/test_max_int32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_int32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_int64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_int64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_int8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_int8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_int8/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | Bdata_0J -------------------------------------------------------------------------------- /tests/node/test_max_int8/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bdata_1J -------------------------------------------------------------------------------- /tests/node/test_max_int8/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BresultJ -------------------------------------------------------------------------------- /tests/node/test_max_uint16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_uint16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_uint16/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | Bdata_0J -------------------------------------------------------------------------------- /tests/node/test_max_uint16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bdata_1J -------------------------------------------------------------------------------- /tests/node/test_max_uint16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BresultJ -------------------------------------------------------------------------------- /tests/node/test_max_uint32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_uint32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_uint64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_uint64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_uint8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_max_uint8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_max_uint8/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | Bdata_0J -------------------------------------------------------------------------------- /tests/node/test_max_uint8/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bdata_1J -------------------------------------------------------------------------------- /tests/node/test_max_uint8/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BresultJ -------------------------------------------------------------------------------- /tests/node/test_maxpool_2d_uint8/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ 2 |  -------------------------------------------------------------------------------- /tests/node/test_mean_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mean_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_melweightmatrix/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | B num_mel_binsJ -------------------------------------------------------------------------------- /tests/node/test_melweightmatrix/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | B 2 | dft_lengthJ -------------------------------------------------------------------------------- /tests/node/test_melweightmatrix/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B sample_rateJ -------------------------------------------------------------------------------- /tests/node/test_melweightmatrix/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | Blower_edge_hertzJ -------------------------------------------------------------------------------- /tests/node/test_min_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_float16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_float16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_float16/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 |  2 | Bdata_0JB@< -------------------------------------------------------------------------------- /tests/node/test_min_float16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  2 | Bdata_1J<DD -------------------------------------------------------------------------------- /tests/node/test_min_float16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  2 | BresultJ<@< -------------------------------------------------------------------------------- /tests/node/test_min_float32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_float32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_float64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_float64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_int16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_int16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_int16/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | Bdata_0J -------------------------------------------------------------------------------- /tests/node/test_min_int16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bdata_1J -------------------------------------------------------------------------------- /tests/node/test_min_int16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BresultJ -------------------------------------------------------------------------------- /tests/node/test_min_int32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_int32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_int64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_int64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_int8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_int8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_int8/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | Bdata_0J -------------------------------------------------------------------------------- /tests/node/test_min_int8/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bdata_1J -------------------------------------------------------------------------------- /tests/node/test_min_int8/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BresultJ -------------------------------------------------------------------------------- /tests/node/test_min_uint16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_uint16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_uint16/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | Bdata_0J -------------------------------------------------------------------------------- /tests/node/test_min_uint16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bdata_1J -------------------------------------------------------------------------------- /tests/node/test_min_uint16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BresultJ -------------------------------------------------------------------------------- /tests/node/test_min_uint32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_uint32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_uint64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_uint64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_uint8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_min_uint8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_min_uint8/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | Bdata_0J -------------------------------------------------------------------------------- /tests/node/test_min_uint8/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | Bdata_1J -------------------------------------------------------------------------------- /tests/node/test_min_uint8/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BresultJ -------------------------------------------------------------------------------- /tests/node/test_mish/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mish/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mod_broadcast/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /tests/node/test_mod_uint16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mod_uint16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mod_uint16/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ -------------------------------------------------------------------------------- /tests/node/test_mod_uint16/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /tests/node/test_mod_uint16/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BzJ -------------------------------------------------------------------------------- /tests/node/test_mod_uint32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mod_uint32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mod_uint64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mod_uint64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mod_uint8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mod_uint8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mod_uint8/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | BxJ -------------------------------------------------------------------------------- /tests/node/test_mod_uint8/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /tests/node/test_mod_uint8/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BzJ -------------------------------------------------------------------------------- /tests/node/test_momentum/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_momentum/model.onnx -------------------------------------------------------------------------------- /tests/node/test_momentum_multiple/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 | BH1J@ -------------------------------------------------------------------------------- /tests/node/test_momentum_multiple/test_data_set_0/output_1.pb: -------------------------------------------------------------------------------- 1 | BX2_newJ^K8?q @ -------------------------------------------------------------------------------- /tests/node/test_mul/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mul/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mul_bcast/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mul_bcast/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mul_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mul_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mul_int16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mul_int16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mul_int8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mul_int8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mul_uint16/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mul_uint16/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mul_uint32/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mul_uint32/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mul_uint64/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mul_uint64/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mul_uint8/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mul_uint8/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mvn/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mvn/model.onnx -------------------------------------------------------------------------------- /tests/node/test_mvn_expanded/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_mvn_expanded/model.onnx -------------------------------------------------------------------------------- /tests/node/test_neg/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_neg/model.onnx -------------------------------------------------------------------------------- /tests/node/test_neg_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_neg_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_nllloss_NC/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_nllloss_NC/model.onnx -------------------------------------------------------------------------------- /tests/node/test_nllloss_NCd1/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_nllloss_NCd1/model.onnx -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B iou_thresholdJ? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 | Bscore_thresholdJ -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B iou_thresholdJ? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 | Bscore_thresholdJ -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B iou_thresholdJ? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 | Bscore_thresholdJ -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B iou_thresholdJ? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 | Bscore_thresholdJ -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_single_box/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BscoresJfff? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_single_box/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B iou_thresholdJ? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_single_box/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 | Bscore_thresholdJ -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B iou_thresholdJ? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 | Bscore_thresholdJ -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B iou_thresholdJ? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B iou_thresholdJ? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 | Bscore_thresholdJ -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_3.pb: -------------------------------------------------------------------------------- 1 | B iou_thresholdJ? -------------------------------------------------------------------------------- /tests/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 | Bscore_thresholdJ -------------------------------------------------------------------------------- /tests/node/test_nonzero_example/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 |  B conditionJ -------------------------------------------------------------------------------- /tests/node/test_not_2d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_not_2d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_not_3d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_not_3d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_not_4d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_not_4d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_onehot_negative_indices/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BdepthJ A -------------------------------------------------------------------------------- /tests/node/test_onehot_with_axis/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BdepthJ A -------------------------------------------------------------------------------- /tests/node/test_onehot_with_negative_axis/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BdepthJ A -------------------------------------------------------------------------------- /tests/node/test_onehot_without_axis/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BdepthJ@A -------------------------------------------------------------------------------- /tests/node/test_onehot_without_axis/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | BvaluesJ -------------------------------------------------------------------------------- /tests/node/test_optional_has_element_empty_no_input_name_optional_input/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  BoutputJ -------------------------------------------------------------------------------- /tests/node/test_optional_has_element_empty_no_input_name_tensor_input/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  BoutputJ -------------------------------------------------------------------------------- /tests/node/test_optional_has_element_empty_no_input_optional_input/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  BoutputJ -------------------------------------------------------------------------------- /tests/node/test_optional_has_element_empty_no_input_tensor_input/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  BoutputJ -------------------------------------------------------------------------------- /tests/node/test_optional_has_element_empty_optional_input/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | 2 | optional_input -------------------------------------------------------------------------------- /tests/node/test_optional_has_element_empty_optional_input/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  BoutputJ -------------------------------------------------------------------------------- /tests/node/test_optional_has_element_optional_input/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  BoutputJ -------------------------------------------------------------------------------- /tests/node/test_optional_has_element_tensor_input/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  BoutputJ -------------------------------------------------------------------------------- /tests/node/test_or2d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_or2d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_or3d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_or3d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_or4d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_or4d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_or_bcast3v1d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_or_bcast3v1d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_or_bcast3v1d/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /tests/node/test_or_bcast3v2d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_or_bcast3v2d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_or_bcast4v2d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_or_bcast4v2d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_or_bcast4v3d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_or_bcast4v3d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_or_bcast4v4d/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_or_bcast4v4d/model.onnx -------------------------------------------------------------------------------- /tests/node/test_pow/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_pow/model.onnx -------------------------------------------------------------------------------- /tests/node/test_pow_bcast_scalar/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | ByJ@ -------------------------------------------------------------------------------- /tests/node/test_pow_example/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_pow_example/model.onnx -------------------------------------------------------------------------------- /tests/node/test_qlinearconv/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboot/libonnx/HEAD/tests/node/test_qlinearconv/model.onnx -------------------------------------------------------------------------------- /tests/node/test_qlinearconv/test_data_set_0/input_7.pb: -------------------------------------------------------------------------------- 1 | B y_zero_pointJ{ -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_int8_float16/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 |  2 | Bb_scaleJ8 -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_int8_float16/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 |  2 | By_scaleJz! -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_int8_float32/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 | By_scaleJO/< -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_uint8_float16/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B a_zero_pointJq -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_uint8_float16/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 |  2 | Bb_scaleJ8 -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_uint8_float16/test_data_set_0/input_5.pb: -------------------------------------------------------------------------------- 1 | B b_zero_pointJr -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_uint8_float16/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 |  2 | By_scaleJz! -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_uint8_float16/test_data_set_0/input_7.pb: -------------------------------------------------------------------------------- 1 | B y_zero_pointJv -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_uint8_float32/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B a_zero_pointJq -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_uint8_float32/test_data_set_0/input_5.pb: -------------------------------------------------------------------------------- 1 | B b_zero_pointJr -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_uint8_float32/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 | By_scaleJO/< -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_2D_uint8_float32/test_data_set_0/input_7.pb: -------------------------------------------------------------------------------- 1 | B y_zero_pointJv -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_int8_float16/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 |  2 | Bb_scaleJ8 -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_int8_float16/test_data_set_0/input_5.pb: -------------------------------------------------------------------------------- 1 | B b_zero_pointJr -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_int8_float16/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 |  2 | By_scaleJz! -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_int8_float32/test_data_set_0/input_5.pb: -------------------------------------------------------------------------------- 1 | B b_zero_pointJr -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_int8_float32/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 | By_scaleJO/< -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_uint8_float16/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B a_zero_pointJq -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_uint8_float16/test_data_set_0/input_4.pb: -------------------------------------------------------------------------------- 1 |  2 | Bb_scaleJ8 -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_uint8_float16/test_data_set_0/input_5.pb: -------------------------------------------------------------------------------- 1 | B b_zero_pointJr -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_uint8_float16/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 |  2 | By_scaleJz! -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_uint8_float16/test_data_set_0/input_7.pb: -------------------------------------------------------------------------------- 1 | B y_zero_pointJv -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_uint8_float32/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B a_zero_pointJq -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_uint8_float32/test_data_set_0/input_5.pb: -------------------------------------------------------------------------------- 1 | B b_zero_pointJr -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_uint8_float32/test_data_set_0/input_6.pb: -------------------------------------------------------------------------------- 1 | By_scaleJO/< -------------------------------------------------------------------------------- /tests/node/test_qlinearmatmul_3D_uint8_float32/test_data_set_0/input_7.pb: -------------------------------------------------------------------------------- 1 | B y_zero_pointJv -------------------------------------------------------------------------------- /tests/node/test_quantizelinear/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | By_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_quantizelinear_blocked_asymmetric/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | B y_zero_pointJ -------------------------------------------------------------------------------- /tests/node/test_quantizelinear_blocked_asymmetric/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | ByJ  -------------------------------------------------------------------------------- /tests/node/test_quantizelinear_e4m3fn/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | By_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_quantizelinear_e4m3fn/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | *B y_zero_point -------------------------------------------------------------------------------- /tests/node/test_quantizelinear_e4m3fn/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | *08~lBy -------------------------------------------------------------------------------- /tests/node/test_quantizelinear_e5m2/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | By_scaleJ@ -------------------------------------------------------------------------------- /tests/node/test_quantizelinear_e5m2/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | *B y_zero_point -------------------------------------------------------------------------------- /tests/node/test_quantizelinear_e5m2/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | *8