├── CMakeLists.txt ├── LICENSE ├── README.md ├── common ├── camera_model │ ├── birdview_model.cpp │ ├── birdview_model.h │ ├── camera_model.cpp │ ├── camera_model.h │ ├── camera_wizard │ │ ├── camera_wizard.cpp │ │ ├── camera_wizard.h │ │ ├── four_point_select_page │ │ │ ├── four_point_select_page.cpp │ │ │ ├── four_point_select_page.h │ │ │ └── four_point_select_page.ui │ │ ├── instruction_page │ │ │ ├── instruction_page.cpp │ │ │ ├── instruction_page.h │ │ │ └── instruction_page.ui │ │ └── measurement_page │ │ │ ├── measurement_page.cpp │ │ │ ├── measurement_page.h │ │ │ └── measurement_page.ui │ └── utils.h ├── onnx_models │ ├── argparse.cpp │ ├── ctdetLayer.cu │ ├── ctdetNet.cpp │ ├── docs │ │ └── README-convert-to-tensorRT │ │ │ ├── ctdet2onnx.md │ │ │ └── dcn │ │ │ ├── __init__.py │ │ │ ├── functions │ │ │ ├── __init__.py │ │ │ ├── deform_conv.py │ │ │ └── deform_pool.py │ │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── deform_conv.py │ │ │ └── deform_pool.py │ │ │ ├── setup.py │ │ │ └── src │ │ │ ├── deform_conv_cuda.cpp │ │ │ ├── deform_conv_cuda_kernel.cu │ │ │ ├── deform_pool_cuda.cpp │ │ │ └── deform_pool_cuda_kernel.cu │ ├── entroyCalibrator.cpp │ ├── include │ │ ├── argparse.h │ │ ├── common.h │ │ ├── ctdetLayer.h │ │ ├── ctdetNet.h │ │ ├── ctdet_utils.h │ │ ├── entroyCalibrator.h │ │ └── python_api.h │ ├── onnx-tensorrt │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── CMakeLists.txt │ │ ├── DCNv2.cpp │ │ ├── DCNv2.hpp │ │ ├── Dockerfile │ │ ├── FancyActivation.cu │ │ ├── FancyActivation.hpp │ │ ├── ImporterContext.hpp │ │ ├── InstanceNormalization.cpp │ │ ├── InstanceNormalization.hpp │ │ ├── LICENSE │ │ ├── ModelImporter.cpp │ │ ├── ModelImporter.hpp │ │ ├── NvOnnxParser.cpp │ │ ├── NvOnnxParser.h │ │ ├── NvOnnxParserRuntime.cpp │ │ ├── NvOnnxParserRuntime.h │ │ ├── NvOnnxParserTypedefs.h │ │ ├── OnnxAttrs.cpp │ │ ├── OnnxAttrs.hpp │ │ ├── PluginFactory.cpp │ │ ├── PluginFactory.hpp │ │ ├── README.md │ │ ├── ResizeNearest.cu │ │ ├── ResizeNearest.hpp │ │ ├── ShapedWeights.cpp │ │ ├── ShapedWeights.hpp │ │ ├── Split.cu │ │ ├── Split.hpp │ │ ├── Status.hpp │ │ ├── TensorOrWeights.hpp │ │ ├── builtin_op_importers.cpp │ │ ├── builtin_op_importers.hpp │ │ ├── builtin_plugins.cpp │ │ ├── builtin_plugins.hpp │ │ ├── common.hpp │ │ ├── dcn_v2_im2col_cuda.cu │ │ ├── dcn_v2_im2col_cuda.h │ │ ├── getSupportedAPITest.cpp │ │ ├── libnvonnxparser.version │ │ ├── libnvonnxparser_runtime.version │ │ ├── main.cpp │ │ ├── nv_onnx_parser_bindings.i │ │ ├── nv_onnx_runtime_bindings.i │ │ ├── onnx2trt.hpp │ │ ├── onnx2trt_common.hpp │ │ ├── onnx2trt_runtime.hpp │ │ ├── onnx2trt_utils.cpp │ │ ├── onnx2trt_utils.hpp │ │ ├── onnx_backend_test.py │ │ ├── onnx_tensorrt │ │ │ ├── __init__.py │ │ │ ├── backend.py │ │ │ ├── parser │ │ │ │ └── __init__.py │ │ │ ├── runtime │ │ │ │ └── __init__.py │ │ │ └── tensorrt_engine.py │ │ ├── onnx_trt_backend.cpp │ │ ├── onnx_utils.hpp │ │ ├── plugin.cpp │ │ ├── plugin.hpp │ │ ├── plugin_common.hpp │ │ ├── serialize.hpp │ │ ├── setup.py │ │ ├── third_party │ │ │ └── onnx │ │ │ │ ├── .circleci │ │ │ │ ├── build.sh │ │ │ │ ├── config.yml │ │ │ │ └── test.sh │ │ │ │ ├── .clang-format │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── .travis.yml │ │ │ │ ├── .travis │ │ │ │ ├── after_failure.sh │ │ │ │ ├── after_success.sh │ │ │ │ ├── before_install.sh │ │ │ │ ├── install.sh │ │ │ │ ├── script.sh │ │ │ │ └── setup.sh │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── MANIFEST.in │ │ │ │ ├── README.md │ │ │ │ ├── RELEASE-MANAGEMENT.md │ │ │ │ ├── VERSION_NUMBER │ │ │ │ ├── appveyor.yml │ │ │ │ ├── cmake │ │ │ │ ├── ONNXConfig.cmake.in │ │ │ │ ├── ONNXConfigVersion.cmake.in │ │ │ │ ├── Utils.cmake │ │ │ │ ├── external │ │ │ │ │ └── googletest.cmake │ │ │ │ ├── summary.cmake │ │ │ │ └── unittest.cmake │ │ │ │ ├── conda │ │ │ │ ├── build.sh │ │ │ │ └── meta.yaml │ │ │ │ ├── docs │ │ │ │ ├── AddNewOp.md │ │ │ │ ├── Broadcasting.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── Changelog-ml.md │ │ │ │ ├── Changelog.md │ │ │ │ ├── DimensionDenotation.md │ │ │ │ ├── Functions-ml.md │ │ │ │ ├── Functions.md │ │ │ │ ├── FunctionsChangelog-ml.md │ │ │ │ ├── FunctionsChangelog.md │ │ │ │ ├── IR.md │ │ │ │ ├── ImplementingAnOnnxBackend.md │ │ │ │ ├── MetadataProps.md │ │ │ │ ├── ONNXIFI.md │ │ │ │ ├── ONNX_logo_main.png │ │ │ │ ├── OnnxBackendTest.md │ │ │ │ ├── OpConventions.md │ │ │ │ ├── Operators-ml.md │ │ │ │ ├── Operators.md │ │ │ │ ├── OpsetVersionConverter.md │ │ │ │ ├── Optimizer.md │ │ │ │ ├── Overview.md │ │ │ │ ├── PythonAPIOverview.md │ │ │ │ ├── ShapeInference.md │ │ │ │ ├── TestCoverage-ml.md │ │ │ │ ├── TestCoverage.md │ │ │ │ ├── TypeDenotation.md │ │ │ │ ├── VersionConverter.md │ │ │ │ └── Versioning.md │ │ │ │ ├── onnx │ │ │ │ ├── __init__.py │ │ │ │ ├── backend │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── test │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── case │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── expand.py │ │ │ │ │ │ │ ├── sign.py │ │ │ │ │ │ │ └── single-relu.py │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── abs.py │ │ │ │ │ │ │ ├── acos.py │ │ │ │ │ │ │ ├── acosh.py │ │ │ │ │ │ │ ├── add.py │ │ │ │ │ │ │ ├── and.py │ │ │ │ │ │ │ ├── argmax.py │ │ │ │ │ │ │ ├── argmin.py │ │ │ │ │ │ │ ├── asin.py │ │ │ │ │ │ │ ├── asinh.py │ │ │ │ │ │ │ ├── atan.py │ │ │ │ │ │ │ ├── atanh.py │ │ │ │ │ │ │ ├── averagepool.py │ │ │ │ │ │ │ ├── batchnorm.py │ │ │ │ │ │ │ ├── cast.py │ │ │ │ │ │ │ ├── ceil.py │ │ │ │ │ │ │ ├── clip.py │ │ │ │ │ │ │ ├── compress.py │ │ │ │ │ │ │ ├── concat.py │ │ │ │ │ │ │ ├── constant.py │ │ │ │ │ │ │ ├── constantlike.py │ │ │ │ │ │ │ ├── conv.py │ │ │ │ │ │ │ ├── convtranspose.py │ │ │ │ │ │ │ ├── cos.py │ │ │ │ │ │ │ ├── cosh.py │ │ │ │ │ │ │ ├── depthtospace.py │ │ │ │ │ │ │ ├── div.py │ │ │ │ │ │ │ ├── dropout.py │ │ │ │ │ │ │ ├── dynamicslice.py │ │ │ │ │ │ │ ├── elu.py │ │ │ │ │ │ │ ├── equal.py │ │ │ │ │ │ │ ├── erf.py │ │ │ │ │ │ │ ├── exp.py │ │ │ │ │ │ │ ├── expand.py │ │ │ │ │ │ │ ├── eyelike.py │ │ │ │ │ │ │ ├── flatten.py │ │ │ │ │ │ │ ├── floor.py │ │ │ │ │ │ │ ├── gather.py │ │ │ │ │ │ │ ├── gemm.py │ │ │ │ │ │ │ ├── globalaveragepool.py │ │ │ │ │ │ │ ├── globalmaxpool.py │ │ │ │ │ │ │ ├── greater.py │ │ │ │ │ │ │ ├── gru.py │ │ │ │ │ │ │ ├── hardmax.py │ │ │ │ │ │ │ ├── hardsigmoid.py │ │ │ │ │ │ │ ├── identity.py │ │ │ │ │ │ │ ├── instancenorm.py │ │ │ │ │ │ │ ├── isnan.py │ │ │ │ │ │ │ ├── leakyrelu.py │ │ │ │ │ │ │ ├── less.py │ │ │ │ │ │ │ ├── log.py │ │ │ │ │ │ │ ├── logsoftmax.py │ │ │ │ │ │ │ ├── lrn.py │ │ │ │ │ │ │ ├── lstm.py │ │ │ │ │ │ │ ├── matmul.py │ │ │ │ │ │ │ ├── max.py │ │ │ │ │ │ │ ├── maxpool.py │ │ │ │ │ │ │ ├── maxunpool.py │ │ │ │ │ │ │ ├── mean.py │ │ │ │ │ │ │ ├── min.py │ │ │ │ │ │ │ ├── mul.py │ │ │ │ │ │ │ ├── mvn.py │ │ │ │ │ │ │ ├── neg.py │ │ │ │ │ │ │ ├── not.py │ │ │ │ │ │ │ ├── onehot.py │ │ │ │ │ │ │ ├── or.py │ │ │ │ │ │ │ ├── pad.py │ │ │ │ │ │ │ ├── pool_op_common.py │ │ │ │ │ │ │ ├── pow.py │ │ │ │ │ │ │ ├── prelu.py │ │ │ │ │ │ │ ├── reciprocal.py │ │ │ │ │ │ │ ├── reduce_log_sum.py │ │ │ │ │ │ │ ├── reducel1.py │ │ │ │ │ │ │ ├── reducel2.py │ │ │ │ │ │ │ ├── reducelogsumexp.py │ │ │ │ │ │ │ ├── reducemax.py │ │ │ │ │ │ │ ├── reducemean.py │ │ │ │ │ │ │ ├── reducemin.py │ │ │ │ │ │ │ ├── reduceprod.py │ │ │ │ │ │ │ ├── reducesum.py │ │ │ │ │ │ │ ├── reducesumsquare.py │ │ │ │ │ │ │ ├── relu.py │ │ │ │ │ │ │ ├── reshape.py │ │ │ │ │ │ │ ├── rnn.py │ │ │ │ │ │ │ ├── scan.py │ │ │ │ │ │ │ ├── scatter.py │ │ │ │ │ │ │ ├── selu.py │ │ │ │ │ │ │ ├── shape.py │ │ │ │ │ │ │ ├── sigmoid.py │ │ │ │ │ │ │ ├── sign.py │ │ │ │ │ │ │ ├── sin.py │ │ │ │ │ │ │ ├── sinh.py │ │ │ │ │ │ │ ├── size.py │ │ │ │ │ │ │ ├── slice.py │ │ │ │ │ │ │ ├── softmax.py │ │ │ │ │ │ │ ├── softplus.py │ │ │ │ │ │ │ ├── softsign.py │ │ │ │ │ │ │ ├── split.py │ │ │ │ │ │ │ ├── sqrt.py │ │ │ │ │ │ │ ├── squeeze.py │ │ │ │ │ │ │ ├── sub.py │ │ │ │ │ │ │ ├── sum.py │ │ │ │ │ │ │ ├── tan.py │ │ │ │ │ │ │ ├── tanh.py │ │ │ │ │ │ │ ├── thresholdedrelu.py │ │ │ │ │ │ │ ├── tile.py │ │ │ │ │ │ │ ├── topk.py │ │ │ │ │ │ │ ├── transpose.py │ │ │ │ │ │ │ ├── unsqueeze.py │ │ │ │ │ │ │ ├── upsample.py │ │ │ │ │ │ │ └── xor.py │ │ │ │ │ │ ├── test_case.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ ├── cmd_tools.py │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── driver │ │ │ │ │ │ │ ├── test_driver.cc │ │ │ │ │ │ │ └── test_driver.h │ │ │ │ │ │ ├── driver_test.cc │ │ │ │ │ │ ├── gtest_utils.cc │ │ │ │ │ │ ├── gtest_utils.h │ │ │ │ │ │ └── test_main.cc │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ ├── test_abs │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_acos │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_acos_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_acosh │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_acosh_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_add │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_add_bcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_and2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_and3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_and4d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_and_bcast3v1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_and_bcast3v2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_and_bcast4v2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_and_bcast4v3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_and_bcast4v4d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmax_default_axis_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmax_default_axis_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmax_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmax_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmax_no_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmax_no_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmin_default_axis_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmin_default_axis_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmin_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmin_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmin_no_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_argmin_no_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_asin │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_asin_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_asinh │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_asinh_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_atan │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_atan_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_atanh │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_atanh_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_1d_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_pads │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_pads_count_include_pad │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_precomputed_pads │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_precomputed_pads_count_include_pad │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_precomputed_same_upper │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_precomputed_strides │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_same_lower │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_same_upper │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_2d_strides │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_averagepool_3d_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_basic_conv_with_padding │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_basic_conv_without_padding │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_batchnorm_epsilon │ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ ├── input_4.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cast_DOUBLE_to_FLOAT │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cast_DOUBLE_to_FLOAT16 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cast_FLOAT16_to_DOUBLE │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cast_FLOAT16_to_FLOAT │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cast_FLOAT_to_DOUBLE │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cast_FLOAT_to_FLOAT16 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ceil │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ceil_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_clip │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_clip_default_inbounds │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_clip_default_max │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_clip_default_min │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_clip_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_clip_inbounds │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_clip_outbounds │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_clip_splitbounds │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_compress_0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_compress_1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_compress_default_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_concat_1d_axis_0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_concat_2d_axis_0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_concat_2d_axis_1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_concat_3d_axis_0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_concat_3d_axis_1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_concat_3d_axis_2 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_constant │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_constant_pad │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_constantlike_ones_with_input │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_constantlike_threes_with_shape_and_dtype │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_constantlike_zeros_without_input_dtype │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_conv_with_strides_and_asymmetric_padding │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_conv_with_strides_no_padding │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_conv_with_strides_padding │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_convtranspose │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_convtranspose_1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_convtranspose_3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_convtranspose_kernel_shape │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_convtranspose_output_shape │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_convtranspose_pad │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_convtranspose_pads │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_convtranspose_with_kernel │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cos │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cos_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cosh │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_cosh_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_depthtospace │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_depthtospace_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_div │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_div_bcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_div_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_dropout_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_dropout_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_dynamic_slice │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_dynamic_slice_default_axes │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_dynamic_slice_end_out_of_bounds │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_dynamic_slice_neg │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_dynamic_slice_start_out_of_bounds │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_edge_pad │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_elu │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_elu_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_elu_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_equal │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_equal_bcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_erf │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_exp │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_exp_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_expand_dim_changed │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_expand_dim_unchanged │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_eyelike_populate_off_main_diagonal │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_eyelike_with_dtype │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_eyelike_without_dtype │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_flatten_axis0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_flatten_axis1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_flatten_axis2 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_flatten_axis3 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_flatten_default_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_floor │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_floor_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_gather_0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_gather_1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_gemm_broadcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_gemm_nobroadcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_globalaveragepool │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_globalaveragepool_precomputed │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_globalmaxpool │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_globalmaxpool_precomputed │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_greater │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_greater_bcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_gru_defaults │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_gru_seq_length │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_gru_with_initial_bias │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_hardmax_axis_0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_hardmax_axis_1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_hardmax_axis_2 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_hardmax_default_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_hardmax_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_hardmax_one_hot │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_hardsigmoid │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_hardsigmoid_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_hardsigmoid_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_identity │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_instancenorm_epsilon │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_instancenorm_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_isnan │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_leakyrelu │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_leakyrelu_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_leakyrelu_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_less │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_less_bcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_log │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_log_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_logsoftmax_axis_0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_logsoftmax_axis_1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_logsoftmax_axis_2 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_logsoftmax_default_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_logsoftmax_example_1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_logsoftmax_large_number │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_lrn │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_lrn_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_lstm_defaults │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_lstm_with_initial_bias │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_lstm_with_peepholes │ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_matmul_3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_matmul_4d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_max_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_max_one_input │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_max_two_inputs │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_1d_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_2d_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_2d_pads │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_2d_precomputed_pads │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_2d_precomputed_same_upper │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_2d_precomputed_strides │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_2d_same_lower │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_2d_same_upper │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_2d_strides │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_3d_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxpool_with_argmax_2d_precomputed_pads │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_maxpool_with_argmax_2d_precomputed_strides │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_maxunpool_export_with_output_shape │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_maxunpool_export_without_output_shape │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_mean_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_mean_one_input │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_mean_two_inputs │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_min_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_min_one_input │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_min_two_inputs │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_mul │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_mul_bcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_mul_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_mvn │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_neg │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_neg_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_not_2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_not_3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_not_4d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_onehot_with_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_onehot_without_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_or2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_or3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_or4d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_or_bcast3v1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_or_bcast3v2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_or_bcast4v2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_or_bcast4v3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_or_bcast4v4d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_pow │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_pow_bcast_array │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_pow_bcast_scalar │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_pow_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_prelu_broadcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_prelu_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reciprocal │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reciprocal_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l1_default_axes_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l1_default_axes_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l1_do_not_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l1_do_not_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l1_keep_dims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l1_keep_dims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l2_default_axes_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l2_default_axes_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l2_do_not_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l2_do_not_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l2_keep_dims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_l2_keep_dims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum_asc_axes │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum_desc_axes │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum_exp_default_axes_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum_exp_default_axes_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum_exp_do_not_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum_exp_do_not_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum_exp_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_log_sum_exp_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_max_default_axes_keepdim_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_max_default_axes_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_max_do_not_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_max_do_not_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_max_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_max_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_mean_default_axes_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_mean_default_axes_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_mean_do_not_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_mean_do_not_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_mean_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_mean_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_min_default_axes_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_min_default_axes_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_min_do_not_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_min_do_not_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_min_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_min_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_prod_default_axes_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_prod_default_axes_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_prod_do_not_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_prod_do_not_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_prod_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_prod_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_default_axes_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_default_axes_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_do_not_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_do_not_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_square_default_axes_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_square_default_axes_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_square_do_not_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_square_do_not_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_square_keepdims_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reduce_sum_square_keepdims_random │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reflect_pad │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_relu │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reshape_extended_dims │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reshape_negative_dim │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reshape_one_dim │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reshape_reduced_dims │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_reshape_reordered_dims │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_rnn_seq_length │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_scan_sum │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_scatter_with_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_scatter_without_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_selu │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_selu_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_selu_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_shape │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_shape_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sigmoid │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sigmoid_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sign │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_simple_rnn_defaults │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_simple_rnn_with_initial_bias │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ ├── input_3.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sin │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sin_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sinh │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sinh_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_size │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_size_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_slice │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_slice_default_axes │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_slice_end_out_of_bounds │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_slice_neg │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_slice_start_out_of_bounds │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softmax_axis_0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softmax_axis_1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softmax_axis_2 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softmax_default_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softmax_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softmax_large_number │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softplus │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softplus_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softsign │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softsign_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_split_equal_parts_1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ ├── output_1.pb │ │ │ │ │ │ │ │ │ └── output_2.pb │ │ │ │ │ │ │ ├── test_split_equal_parts_2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_split_equal_parts_default_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ ├── output_1.pb │ │ │ │ │ │ │ │ │ └── output_2.pb │ │ │ │ │ │ │ ├── test_split_variable_parts_1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_split_variable_parts_2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_split_variable_parts_default_axis │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_sqrt │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sqrt_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_squeeze │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sub │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sub_bcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sub_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sum_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sum_one_input │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sum_two_inputs │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_tan │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_tan_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_tanh │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_tanh_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_thresholdedrelu │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_thresholdedrelu_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_thresholdedrelu_example │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_tile │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_tile_precomputed │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_top_k │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_transpose_all_permutations_0 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_transpose_all_permutations_1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_transpose_all_permutations_2 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_transpose_all_permutations_3 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_transpose_all_permutations_4 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_transpose_all_permutations_5 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_transpose_default │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_unsqueeze │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_upsample_nearest │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_xor2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_xor3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_xor4d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_xor_bcast3v1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_xor_bcast3v2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_xor_bcast4v2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_xor_bcast4v3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ └── test_xor_bcast4v4d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ ├── pytorch-converted │ │ │ │ │ │ │ ├── test_AvgPool1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_AvgPool1d_stride │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_AvgPool2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_AvgPool2d_stride │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_AvgPool3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_AvgPool3d_stride │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_AvgPool3d_stride1_pad0_gpu_input │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_BatchNorm1d_3d_input_eval │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_BatchNorm2d_eval │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_BatchNorm2d_momentum_eval │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_BatchNorm3d_eval │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_BatchNorm3d_momentum_eval │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ConstantPad2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv1d_dilated │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv1d_groups │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv1d_pad1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv1d_pad1size1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv1d_pad2 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv1d_pad2size1 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv1d_stride │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_depthwise │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_depthwise_padded │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_depthwise_strided │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_depthwise_with_multiplier │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_dilated │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_groups │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_groups_thnn │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_no_bias │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_padding │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv2d_strided │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv3d_dilated │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv3d_dilated_strided │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv3d_groups │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv3d_no_bias │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv3d_stride │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Conv3d_stride_padding │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ConvTranspose2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ConvTranspose2d_no_bias │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ELU │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Embedding │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Embedding_sparse │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_GLU │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_GLU_dim │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_LeakyReLU │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_LeakyReLU_with_negval │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Linear │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Linear_no_bias │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_LogSoftmax │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_MaxPool1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_MaxPool1d_stride │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_MaxPool2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_MaxPool3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_MaxPool3d_stride │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_MaxPool3d_stride_padding │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_PReLU_1d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_PReLU_1d_multiparam │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_PReLU_2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_PReLU_2d_multiparam │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_PReLU_3d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_PReLU_3d_multiparam │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_PixelShuffle │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_PoissonNLLLLoss_no_reduce │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ReLU │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ReflectionPad2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ReplicationPad2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_SELU │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Sigmoid │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Softmax │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Softmin │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Softplus │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Softsign │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_Tanh │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_ZeroPad2d │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_log_softmax_dim3 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_log_softmax_lastdim │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_softmax_functional_dim3 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ └── test_softmax_lastdim │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ ├── pytorch-operator │ │ │ │ │ │ │ ├── test_operator_add_broadcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_add_size1_broadcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_add_size1_right_broadcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_add_size1_singleton_broadcast │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_addconstant │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_addmm │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ ├── input_2.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_basic │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_chunk │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_operator_clip │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_concat2 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_conv │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_convtranspose │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_exp │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_flatten │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_index │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_lstm │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ ├── output_1.pb │ │ │ │ │ │ │ │ │ └── output_2.pb │ │ │ │ │ │ │ ├── test_operator_max │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_maxpool │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_min │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_mm │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_non_float_params │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_pad │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_params │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_permute2 │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_pow │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_reduced_mean │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_reduced_mean_keepdim │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_reduced_sum │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_reduced_sum_keepdim │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_repeat │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_repeat_dim_overflow │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_rnn │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_operator_rnn_single_layer │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ ├── output_0.pb │ │ │ │ │ │ │ │ │ └── output_1.pb │ │ │ │ │ │ │ ├── test_operator_selu │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_sqrt │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_symbolic_override │ │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_operator_symbolic_override_nested │ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_expand_shape_model2 │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_expand_shape_model3 │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_expand_shape_model4 │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ ├── input_1.pb │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ ├── test_sign_model │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ │ └── test_single_relu_model │ │ │ │ │ │ │ └── test_data_set_0 │ │ │ │ │ │ │ ├── input_0.pb │ │ │ │ │ │ │ └── output_0.pb │ │ │ │ │ │ ├── loader │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── report │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── coverage.py │ │ │ │ │ │ ├── runner │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── item.py │ │ │ │ │ │ └── stat_coverage.py │ │ │ │ ├── bin │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── checker.py │ │ │ │ ├── checker.cc │ │ │ │ ├── checker.h │ │ │ │ ├── checker.py │ │ │ │ ├── common │ │ │ │ │ ├── array_ref.h │ │ │ │ │ ├── assertions.cc │ │ │ │ │ ├── assertions.h │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── graph_node_list.h │ │ │ │ │ ├── interned_strings.cc │ │ │ │ │ ├── interned_strings.h │ │ │ │ │ ├── ir.h │ │ │ │ │ ├── ir_pb_converter.cc │ │ │ │ │ ├── ir_pb_converter.h │ │ │ │ │ ├── model_helpers.cc │ │ │ │ │ ├── model_helpers.h │ │ │ │ │ ├── status.cc │ │ │ │ │ ├── status.h │ │ │ │ │ ├── stl_backports.h │ │ │ │ │ └── tensor.h │ │ │ │ ├── cpp2py_export.cc │ │ │ │ ├── defs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── controlflow │ │ │ │ │ │ ├── defs.cc │ │ │ │ │ │ └── old.cc │ │ │ │ │ ├── data_type_utils.cc │ │ │ │ │ ├── data_type_utils.h │ │ │ │ │ ├── experiments │ │ │ │ │ │ ├── defs.cc │ │ │ │ │ │ └── experiments_functions.cc │ │ │ │ │ ├── function.cc │ │ │ │ │ ├── function.h │ │ │ │ │ ├── gen_doc.py │ │ │ │ │ ├── gen_shape_inference_information.py │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── defs.cc │ │ │ │ │ │ └── old.cc │ │ │ │ │ ├── logical │ │ │ │ │ │ ├── defs.cc │ │ │ │ │ │ └── old.cc │ │ │ │ │ ├── math │ │ │ │ │ │ ├── defs.cc │ │ │ │ │ │ └── old.cc │ │ │ │ │ ├── nn │ │ │ │ │ │ ├── defs.cc │ │ │ │ │ │ └── old.cc │ │ │ │ │ ├── operator_sets-ml.h │ │ │ │ │ ├── operator_sets.h │ │ │ │ │ ├── reduction │ │ │ │ │ │ └── defs.cc │ │ │ │ │ ├── rnn │ │ │ │ │ │ ├── defs.cc │ │ │ │ │ │ └── old.cc │ │ │ │ │ ├── schema.cc │ │ │ │ │ ├── schema.h │ │ │ │ │ ├── shape_inference.h │ │ │ │ │ ├── tensor │ │ │ │ │ │ ├── defs.cc │ │ │ │ │ │ └── old.cc │ │ │ │ │ └── traditionalml │ │ │ │ │ │ ├── defs.cc │ │ │ │ │ │ └── old.cc │ │ │ │ ├── examples │ │ │ │ │ ├── Protobufs.ipynb │ │ │ │ │ ├── check_model.ipynb │ │ │ │ │ ├── load_model.ipynb │ │ │ │ │ ├── make_model.ipynb │ │ │ │ │ ├── np_array_tensorproto.ipynb │ │ │ │ │ ├── optimize_onnx.ipynb │ │ │ │ │ ├── resources │ │ │ │ │ │ └── tensor.pb │ │ │ │ │ ├── save_model.ipynb │ │ │ │ │ └── shape_inference.ipynb │ │ │ │ ├── frontend │ │ │ │ │ └── __init__.py │ │ │ │ ├── gen_proto.py │ │ │ │ ├── helper.py │ │ │ │ ├── mapping.py │ │ │ │ ├── numpy_helper.py │ │ │ │ ├── onnx-ml.proto │ │ │ │ ├── onnx-ml.proto3 │ │ │ │ ├── onnx-operators-ml.proto │ │ │ │ ├── onnx-operators-ml.proto3 │ │ │ │ ├── onnx-operators.in.proto │ │ │ │ ├── onnx-operators.proto │ │ │ │ ├── onnx-operators.proto3 │ │ │ │ ├── onnx-operators_pb.h │ │ │ │ ├── onnx.in.proto │ │ │ │ ├── onnx.proto │ │ │ │ ├── onnx.proto3 │ │ │ │ ├── onnx_cpp2py_export │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── checker.pyi │ │ │ │ │ ├── defs.pyi │ │ │ │ │ ├── optimizer.pyi │ │ │ │ │ ├── shape_inference.pyi │ │ │ │ │ └── version_converter.pyi │ │ │ │ ├── onnx_pb.h │ │ │ │ ├── onnxifi.h │ │ │ │ ├── onnxifi_dummy.c │ │ │ │ ├── onnxifi_loader.c │ │ │ │ ├── onnxifi_loader.h │ │ │ │ ├── onnxifi_utils.cc │ │ │ │ ├── onnxifi_utils.h │ │ │ │ ├── onnxifi_wrapper.c │ │ │ │ ├── optimizer.py │ │ │ │ ├── optimizer │ │ │ │ │ ├── optimize.cc │ │ │ │ │ ├── optimize.h │ │ │ │ │ ├── pass.cc │ │ │ │ │ ├── pass.h │ │ │ │ │ ├── pass_manager.cc │ │ │ │ │ ├── pass_manager.h │ │ │ │ │ ├── pass_registry.cc │ │ │ │ │ ├── pass_registry.h │ │ │ │ │ └── passes │ │ │ │ │ │ ├── eliminate_deadend.h │ │ │ │ │ │ ├── eliminate_identity.h │ │ │ │ │ │ ├── eliminate_nop_dropout.h │ │ │ │ │ │ ├── eliminate_nop_monotone_argmax.h │ │ │ │ │ │ ├── eliminate_nop_pad.h │ │ │ │ │ │ ├── eliminate_nop_transpose.h │ │ │ │ │ │ ├── eliminate_unused_initializer.h │ │ │ │ │ │ ├── extract_constant_to_initializer.h │ │ │ │ │ │ ├── fuse_add_bias_into_conv.h │ │ │ │ │ │ ├── fuse_bn_into_conv.h │ │ │ │ │ │ ├── fuse_consecutive_concats.h │ │ │ │ │ │ ├── fuse_consecutive_log_softmax.h │ │ │ │ │ │ ├── fuse_consecutive_reduce_unsqueeze.h │ │ │ │ │ │ ├── fuse_consecutive_squeezes.h │ │ │ │ │ │ ├── fuse_consecutive_transposes.h │ │ │ │ │ │ ├── fuse_matmul_add_bias_into_gemm.h │ │ │ │ │ │ ├── fuse_pad_into_conv.h │ │ │ │ │ │ ├── fuse_transpose_into_gemm.h │ │ │ │ │ │ ├── lift_lexical_references.h │ │ │ │ │ │ ├── nop.h │ │ │ │ │ │ └── split.h │ │ │ │ ├── proto_utils.h │ │ │ │ ├── py_utils.h │ │ │ │ ├── shape_inference.py │ │ │ │ ├── shape_inference │ │ │ │ │ ├── implementation.cc │ │ │ │ │ └── implementation.h │ │ │ │ ├── string_utils.h │ │ │ │ ├── test │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── basic_test.py │ │ │ │ │ ├── checker_test.py │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── function_get_test.cc │ │ │ │ │ │ ├── onnxifi_backend_test.cc │ │ │ │ │ │ ├── op_reg_test.cc │ │ │ │ │ │ ├── shape_inference_test.cc │ │ │ │ │ │ └── test_main.cc │ │ │ │ │ ├── elu_test.py │ │ │ │ │ ├── helper_test.py │ │ │ │ │ ├── numpy_helper_test.py │ │ │ │ │ ├── optimizer_test.py │ │ │ │ │ ├── relu_test.py │ │ │ │ │ ├── schema_test.py │ │ │ │ │ ├── shape_inference_test.py │ │ │ │ │ ├── test_backend_test.py │ │ │ │ │ ├── utils_test.py │ │ │ │ │ └── version_converter_test.py │ │ │ │ ├── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── net_drawer.py │ │ │ │ ├── utils.py │ │ │ │ ├── version_converter.py │ │ │ │ └── version_converter │ │ │ │ │ ├── BaseConverter.h │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter.h │ │ │ │ │ ├── averagepool_7_6.h │ │ │ │ │ ├── batch_normalization_6_5.h │ │ │ │ │ ├── batch_normalization_6_7.h │ │ │ │ │ ├── broadcast_backward_compatibility.h │ │ │ │ │ ├── broadcast_forward_compatibility.h │ │ │ │ │ ├── compatible.h │ │ │ │ │ ├── concat_3_4.h │ │ │ │ │ ├── dropout_6_7.h │ │ │ │ │ ├── gemm_6_7.h │ │ │ │ │ ├── gemm_7_6.h │ │ │ │ │ ├── maxpool_8_7.h │ │ │ │ │ ├── no_previous_version.h │ │ │ │ │ ├── remove_consumed_inputs.h │ │ │ │ │ ├── reshape_4_5.h │ │ │ │ │ ├── reshape_5_4.h │ │ │ │ │ ├── set_is_test.h │ │ │ │ │ ├── sum_8_7.h │ │ │ │ │ └── type_restriction.h │ │ │ │ │ ├── convert.cc │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── helper.cc │ │ │ │ │ └── helper.h │ │ │ │ ├── pyproject.toml │ │ │ │ ├── setup.cfg │ │ │ │ ├── setup.py │ │ │ │ ├── stubs │ │ │ │ ├── .gitkeep │ │ │ │ └── google │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── protobuf │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── any_pb2.pyi │ │ │ │ │ ├── any_test_pb2.pyi │ │ │ │ │ ├── api_pb2.pyi │ │ │ │ │ ├── compiler │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── plugin_pb2.pyi │ │ │ │ │ ├── descriptor.pyi │ │ │ │ │ ├── descriptor_pb2.pyi │ │ │ │ │ ├── descriptor_pool.pyi │ │ │ │ │ ├── duration_pb2.pyi │ │ │ │ │ ├── empty_pb2.pyi │ │ │ │ │ ├── field_mask_pb2.pyi │ │ │ │ │ ├── internal │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── containers.pyi │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ ├── encoder.pyi │ │ │ │ │ ├── enum_type_wrapper.pyi │ │ │ │ │ ├── message_listener.pyi │ │ │ │ │ └── wire_format.pyi │ │ │ │ │ ├── map_proto2_unittest_pb2.pyi │ │ │ │ │ ├── map_unittest_pb2.pyi │ │ │ │ │ ├── message.pyi │ │ │ │ │ ├── message_factory.pyi │ │ │ │ │ ├── reflection.pyi │ │ │ │ │ ├── source_context_pb2.pyi │ │ │ │ │ ├── struct_pb2.pyi │ │ │ │ │ ├── symbol_database.pyi │ │ │ │ │ ├── test_messages_proto2_pb2.pyi │ │ │ │ │ ├── test_messages_proto3_pb2.pyi │ │ │ │ │ ├── timestamp_pb2.pyi │ │ │ │ │ ├── type_pb2.pyi │ │ │ │ │ ├── unittest_arena_pb2.pyi │ │ │ │ │ ├── unittest_custom_options_pb2.pyi │ │ │ │ │ ├── unittest_import_pb2.pyi │ │ │ │ │ ├── unittest_import_public_pb2.pyi │ │ │ │ │ ├── unittest_mset_pb2.pyi │ │ │ │ │ ├── unittest_mset_wire_format_pb2.pyi │ │ │ │ │ ├── unittest_no_arena_import_pb2.pyi │ │ │ │ │ ├── unittest_no_arena_pb2.pyi │ │ │ │ │ ├── unittest_no_generic_services_pb2.pyi │ │ │ │ │ ├── unittest_pb2.pyi │ │ │ │ │ ├── unittest_proto3_arena_pb2.pyi │ │ │ │ │ ├── util │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── json_format_proto3_pb2.pyi │ │ │ │ │ └── wrappers_pb2.pyi │ │ │ │ ├── third_party │ │ │ │ ├── benchmark │ │ │ │ │ ├── .clang-format │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis-libcxx-setup.sh │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── WORKSPACE │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── AddCXXCompilerFlag.cmake │ │ │ │ │ │ ├── CXXFeatureCheck.cmake │ │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ │ ├── GetGitVersion.cmake │ │ │ │ │ │ ├── HandleGTest.cmake │ │ │ │ │ │ ├── benchmark.pc.in │ │ │ │ │ │ ├── gnu_posix_regex.cpp │ │ │ │ │ │ ├── llvm-toolchain.cmake │ │ │ │ │ │ ├── posix_regex.cpp │ │ │ │ │ │ ├── split_list.cmake │ │ │ │ │ │ ├── std_regex.cpp │ │ │ │ │ │ ├── steady_clock.cpp │ │ │ │ │ │ └── thread_safety_attributes.cpp │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── AssemblyTests.md │ │ │ │ │ │ └── tools.md │ │ │ │ │ ├── include │ │ │ │ │ │ └── benchmark │ │ │ │ │ │ │ └── benchmark.h │ │ │ │ │ ├── mingw.py │ │ │ │ │ ├── releasing.md │ │ │ │ │ ├── src │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── arraysize.h │ │ │ │ │ │ ├── benchmark.cc │ │ │ │ │ │ ├── benchmark_api_internal.h │ │ │ │ │ │ ├── benchmark_main.cc │ │ │ │ │ │ ├── benchmark_register.cc │ │ │ │ │ │ ├── benchmark_register.h │ │ │ │ │ │ ├── check.h │ │ │ │ │ │ ├── colorprint.cc │ │ │ │ │ │ ├── colorprint.h │ │ │ │ │ │ ├── commandlineflags.cc │ │ │ │ │ │ ├── commandlineflags.h │ │ │ │ │ │ ├── complexity.cc │ │ │ │ │ │ ├── complexity.h │ │ │ │ │ │ ├── console_reporter.cc │ │ │ │ │ │ ├── counter.cc │ │ │ │ │ │ ├── counter.h │ │ │ │ │ │ ├── csv_reporter.cc │ │ │ │ │ │ ├── cycleclock.h │ │ │ │ │ │ ├── internal_macros.h │ │ │ │ │ │ ├── json_reporter.cc │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── re.h │ │ │ │ │ │ ├── reporter.cc │ │ │ │ │ │ ├── sleep.cc │ │ │ │ │ │ ├── sleep.h │ │ │ │ │ │ ├── statistics.cc │ │ │ │ │ │ ├── statistics.h │ │ │ │ │ │ ├── string_util.cc │ │ │ │ │ │ ├── string_util.h │ │ │ │ │ │ ├── sysinfo.cc │ │ │ │ │ │ ├── thread_manager.h │ │ │ │ │ │ ├── thread_timer.h │ │ │ │ │ │ ├── timers.cc │ │ │ │ │ │ └── timers.h │ │ │ │ │ ├── test │ │ │ │ │ │ ├── AssemblyTests.cmake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── basic_test.cc │ │ │ │ │ │ ├── benchmark_gtest.cc │ │ │ │ │ │ ├── benchmark_test.cc │ │ │ │ │ │ ├── clobber_memory_assembly_test.cc │ │ │ │ │ │ ├── complexity_test.cc │ │ │ │ │ │ ├── cxx03_test.cc │ │ │ │ │ │ ├── diagnostics_test.cc │ │ │ │ │ │ ├── donotoptimize_assembly_test.cc │ │ │ │ │ │ ├── donotoptimize_test.cc │ │ │ │ │ │ ├── filter_test.cc │ │ │ │ │ │ ├── fixture_test.cc │ │ │ │ │ │ ├── link_main_test.cc │ │ │ │ │ │ ├── map_test.cc │ │ │ │ │ │ ├── multiple_ranges_test.cc │ │ │ │ │ │ ├── options_test.cc │ │ │ │ │ │ ├── output_test.h │ │ │ │ │ │ ├── output_test_helper.cc │ │ │ │ │ │ ├── register_benchmark_test.cc │ │ │ │ │ │ ├── reporter_output_test.cc │ │ │ │ │ │ ├── skip_with_error_test.cc │ │ │ │ │ │ ├── state_assembly_test.cc │ │ │ │ │ │ ├── statistics_gtest.cc │ │ │ │ │ │ ├── templated_fixture_test.cc │ │ │ │ │ │ ├── user_counters_tabular_test.cc │ │ │ │ │ │ └── user_counters_test.cc │ │ │ │ │ └── tools │ │ │ │ │ │ ├── compare.py │ │ │ │ │ │ ├── compare_bench.py │ │ │ │ │ │ ├── gbench │ │ │ │ │ │ ├── Inputs │ │ │ │ │ │ │ ├── test1_run1.json │ │ │ │ │ │ │ ├── test1_run2.json │ │ │ │ │ │ │ └── test2_run.json │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── report.py │ │ │ │ │ │ └── util.py │ │ │ │ │ │ └── strip_asm.py │ │ │ │ └── pybind11 │ │ │ │ │ ├── .appveyor.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .gitmodules │ │ │ │ │ ├── .readthedocs.yml │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── MANIFEST.in │ │ │ │ │ ├── README.md │ │ │ │ │ ├── docs │ │ │ │ │ ├── Doxyfile │ │ │ │ │ ├── _static │ │ │ │ │ │ └── theme_overrides.css │ │ │ │ │ ├── advanced │ │ │ │ │ │ ├── cast │ │ │ │ │ │ │ ├── chrono.rst │ │ │ │ │ │ │ ├── custom.rst │ │ │ │ │ │ │ ├── eigen.rst │ │ │ │ │ │ │ ├── functional.rst │ │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ │ ├── overview.rst │ │ │ │ │ │ │ ├── stl.rst │ │ │ │ │ │ │ └── strings.rst │ │ │ │ │ │ ├── classes.rst │ │ │ │ │ │ ├── embedding.rst │ │ │ │ │ │ ├── exceptions.rst │ │ │ │ │ │ ├── functions.rst │ │ │ │ │ │ ├── misc.rst │ │ │ │ │ │ ├── pycpp │ │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ │ ├── numpy.rst │ │ │ │ │ │ │ ├── object.rst │ │ │ │ │ │ │ └── utilities.rst │ │ │ │ │ │ └── smart_ptrs.rst │ │ │ │ │ ├── basics.rst │ │ │ │ │ ├── benchmark.py │ │ │ │ │ ├── benchmark.rst │ │ │ │ │ ├── changelog.rst │ │ │ │ │ ├── classes.rst │ │ │ │ │ ├── compiling.rst │ │ │ │ │ ├── conf.py │ │ │ │ │ ├── faq.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── intro.rst │ │ │ │ │ ├── limitations.rst │ │ │ │ │ ├── pybind11-logo.png │ │ │ │ │ ├── pybind11_vs_boost_python1.png │ │ │ │ │ ├── pybind11_vs_boost_python1.svg │ │ │ │ │ ├── pybind11_vs_boost_python2.png │ │ │ │ │ ├── pybind11_vs_boost_python2.svg │ │ │ │ │ ├── reference.rst │ │ │ │ │ ├── release.rst │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── upgrade.rst │ │ │ │ │ ├── include │ │ │ │ │ └── pybind11 │ │ │ │ │ │ ├── attr.h │ │ │ │ │ │ ├── buffer_info.h │ │ │ │ │ │ ├── cast.h │ │ │ │ │ │ ├── chrono.h │ │ │ │ │ │ ├── complex.h │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── class.h │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── descr.h │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ ├── internals.h │ │ │ │ │ │ └── typeid.h │ │ │ │ │ │ ├── eigen.h │ │ │ │ │ │ ├── embed.h │ │ │ │ │ │ ├── eval.h │ │ │ │ │ │ ├── functional.h │ │ │ │ │ │ ├── iostream.h │ │ │ │ │ │ ├── numpy.h │ │ │ │ │ │ ├── operators.h │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ ├── pybind11.h │ │ │ │ │ │ ├── pytypes.h │ │ │ │ │ │ ├── stl.h │ │ │ │ │ │ └── stl_bind.h │ │ │ │ │ ├── pybind11 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ └── _version.py │ │ │ │ │ ├── setup.cfg │ │ │ │ │ ├── setup.py │ │ │ │ │ ├── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── constructor_stats.h │ │ │ │ │ ├── local_bindings.h │ │ │ │ │ ├── object.h │ │ │ │ │ ├── pybind11_cross_module_tests.cpp │ │ │ │ │ ├── pybind11_tests.cpp │ │ │ │ │ ├── pybind11_tests.h │ │ │ │ │ ├── pytest.ini │ │ │ │ │ ├── test_buffers.cpp │ │ │ │ │ ├── test_buffers.py │ │ │ │ │ ├── test_builtin_casters.cpp │ │ │ │ │ ├── test_builtin_casters.py │ │ │ │ │ ├── test_call_policies.cpp │ │ │ │ │ ├── test_call_policies.py │ │ │ │ │ ├── test_callbacks.cpp │ │ │ │ │ ├── test_callbacks.py │ │ │ │ │ ├── test_chrono.cpp │ │ │ │ │ ├── test_chrono.py │ │ │ │ │ ├── test_class.cpp │ │ │ │ │ ├── test_class.py │ │ │ │ │ ├── test_cmake_build │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── embed.cpp │ │ │ │ │ │ ├── installed_embed │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ ├── installed_function │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ ├── installed_target │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── subdirectory_embed │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ ├── subdirectory_function │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ ├── subdirectory_target │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ └── test.py │ │ │ │ │ ├── test_constants_and_functions.cpp │ │ │ │ │ ├── test_constants_and_functions.py │ │ │ │ │ ├── test_copy_move.cpp │ │ │ │ │ ├── test_copy_move.py │ │ │ │ │ ├── test_docstring_options.cpp │ │ │ │ │ ├── test_docstring_options.py │ │ │ │ │ ├── test_eigen.cpp │ │ │ │ │ ├── test_eigen.py │ │ │ │ │ ├── test_embed │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── catch.cpp │ │ │ │ │ │ ├── test_interpreter.cpp │ │ │ │ │ │ └── test_interpreter.py │ │ │ │ │ ├── test_enum.cpp │ │ │ │ │ ├── test_enum.py │ │ │ │ │ ├── test_eval.cpp │ │ │ │ │ ├── test_eval.py │ │ │ │ │ ├── test_eval_call.py │ │ │ │ │ ├── test_exceptions.cpp │ │ │ │ │ ├── test_exceptions.py │ │ │ │ │ ├── test_factory_constructors.cpp │ │ │ │ │ ├── test_factory_constructors.py │ │ │ │ │ ├── test_iostream.cpp │ │ │ │ │ ├── test_iostream.py │ │ │ │ │ ├── test_kwargs_and_defaults.cpp │ │ │ │ │ ├── test_kwargs_and_defaults.py │ │ │ │ │ ├── test_local_bindings.cpp │ │ │ │ │ ├── test_local_bindings.py │ │ │ │ │ ├── test_methods_and_attributes.cpp │ │ │ │ │ ├── test_methods_and_attributes.py │ │ │ │ │ ├── test_modules.cpp │ │ │ │ │ ├── test_modules.py │ │ │ │ │ ├── test_multiple_inheritance.cpp │ │ │ │ │ ├── test_multiple_inheritance.py │ │ │ │ │ ├── test_numpy_array.cpp │ │ │ │ │ ├── test_numpy_array.py │ │ │ │ │ ├── test_numpy_dtypes.cpp │ │ │ │ │ ├── test_numpy_dtypes.py │ │ │ │ │ ├── test_numpy_vectorize.cpp │ │ │ │ │ ├── test_numpy_vectorize.py │ │ │ │ │ ├── test_opaque_types.cpp │ │ │ │ │ ├── test_opaque_types.py │ │ │ │ │ ├── test_operator_overloading.cpp │ │ │ │ │ ├── test_operator_overloading.py │ │ │ │ │ ├── test_pickling.cpp │ │ │ │ │ ├── test_pickling.py │ │ │ │ │ ├── test_pytypes.cpp │ │ │ │ │ ├── test_pytypes.py │ │ │ │ │ ├── test_sequences_and_iterators.cpp │ │ │ │ │ ├── test_sequences_and_iterators.py │ │ │ │ │ ├── test_smart_ptr.cpp │ │ │ │ │ ├── test_smart_ptr.py │ │ │ │ │ ├── test_stl.cpp │ │ │ │ │ ├── test_stl.py │ │ │ │ │ ├── test_stl_binders.cpp │ │ │ │ │ ├── test_stl_binders.py │ │ │ │ │ ├── test_virtual_functions.cpp │ │ │ │ │ └── test_virtual_functions.py │ │ │ │ │ └── tools │ │ │ │ │ ├── FindCatch.cmake │ │ │ │ │ ├── FindEigen3.cmake │ │ │ │ │ ├── FindPythonLibsNew.cmake │ │ │ │ │ ├── check-style.sh │ │ │ │ │ ├── clang │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE.TXT │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cindex.py │ │ │ │ │ └── enumerations.py │ │ │ │ │ ├── libsize.py │ │ │ │ │ ├── mkdoc.py │ │ │ │ │ ├── pybind11Config.cmake.in │ │ │ │ │ └── pybind11Tools.cmake │ │ │ │ └── tools │ │ │ │ ├── __init__.pyi │ │ │ │ ├── gen_coverage_report.py │ │ │ │ ├── mypy-onnx.py │ │ │ │ ├── protobuf-bench.cc │ │ │ │ ├── protoc-gen-mypy.bat │ │ │ │ ├── protoc-gen-mypy.py │ │ │ │ └── update_doc.sh │ │ ├── toposort.hpp │ │ ├── trt_utils.hpp │ │ └── utils.hpp │ ├── python_api.cpp │ └── utils.cpp ├── uff_models │ ├── classification_net │ │ ├── classification_net.cpp │ │ └── classification_net.h │ ├── common │ │ ├── dumpTFWts.py │ │ ├── getOptions.cpp │ │ ├── include │ │ │ ├── BatchStream.h │ │ │ ├── EntropyCalibrator.h │ │ │ ├── ErrorRecorder.h │ │ │ ├── argsParser.h │ │ │ ├── buffers.h │ │ │ ├── common.h │ │ │ ├── filesystem_include.h │ │ │ ├── getOptions.h │ │ │ ├── half.h │ │ │ ├── logger.h │ │ │ ├── logging.h │ │ │ ├── object_class.h │ │ │ ├── parserOnnxConfig.h │ │ │ ├── sampleConfig.h │ │ │ ├── sampleEngines.h │ │ │ ├── sampleOptions.h │ │ │ ├── sampleUtils.h │ │ │ └── uff_model.h │ │ ├── logger.cpp │ │ ├── sampleEngines.cpp │ │ ├── sampleOptions.cpp │ │ └── uff_model.cpp │ └── unet │ │ ├── unet.cpp │ │ └── unet.h └── utils │ ├── file_storage.cpp │ ├── include │ ├── camera.h │ ├── file_storage.h │ ├── filesystem_include.h │ ├── timer.h │ └── utility.h │ ├── timer.cpp │ └── utility.cpp ├── configs ├── config.h └── config_lane_detection.h ├── input_folder ├── README.md ├── _25lUt8pBKpoZRRZXlPkCQ.jpg ├── _2TmVR1rYfo6VWCO5Ke4wg.jpg ├── _2WngOxw65t8UrBoixDOTQ.jpg ├── _3QpPoxYKEY-_RkZ35Qz3g.jpg ├── _3Xr3qO0T_jNou7lFwUu9g.jpg ├── _4jWdbbCdQ7tqYcwLVvP7g.jpg ├── _7rvmK5eUgZ5mw7mGRGDyA.jpg ├── _9SlBIX2glCQxelEqCEHCw.jpg ├── _BZp9fQ0PY2v7LGEesKWwg.jpg ├── _BnmwE5ZtULGoXoo6MGLnQ.jpg ├── _E0A_IDDG90bXutXbE8lPQ.jpg ├── _EiQ4u-v_-Uxe1fYTyPT1Q.jpg ├── _GpNcVfNFXzK2rKQie0QLg.jpg ├── _HnWguqEbRCphUquTMrCCA.jpg ├── _KWGXHTqPT-2Tw1OY_L_Gg.jpg ├── _LZXg8S79gw07HNxh5cPPg.jpg ├── _NKsSzALW2WKIXGfdcP0DA.jpg ├── _NO4CAiTE-WwT_m35Jog3A.jpg ├── _S7ROKytFvHpEx8rOg43dw.jpg ├── _S9YuPJBXltb632wb7GnWQ.jpg ├── _SFV9WjMjF8HXWDju47rnA.jpg ├── _SaYzlQ4UkTgXY0jCAnzGw.jpg ├── _WJr6HbBx2-CjlXR91mrMQ.jpg ├── __IoBfs3I6vB5ND-vqXK1A.jpg ├── _bwhU2Obiph48gnjzLqGeA.jpg ├── _dONBF4K7nJXt3A7y181BA.jpg ├── _dPxSDKxt4Tls91X95Ju9w.jpg ├── _dSsQg3QHNkJeHv5knS7Dw.jpg ├── _mlaN_AnJUb5ba-J_VODDA.jpg ├── _sKlqO3yqBJi6ZBizcgJaQ.jpg ├── _tG9_OEJW0pX6bFzi-RVzw.jpg ├── _tKwEZJoJYzmVL4uKl9NDw.jpg ├── _wPsTEpCES5bhuiajKCUsw.jpg ├── _wxw7N4Uaab48Z2xTKGYwQ.jpg └── test_config.txt ├── lane_detection ├── CMakeLists.txt ├── lane_detector.cpp ├── lane_detector.h ├── lane_line.h ├── test_lane_camera_reader.cpp ├── test_lane_detector.cpp ├── test_lane_identifier.cpp └── test_lane_video_player.cpp ├── lane_detection_NN ├── base │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── functional.cpython-36.pyc │ │ └── objects.cpython-36.pyc │ ├── functional.py │ └── objects.py ├── config.py ├── demo.py ├── losses.py ├── requirements.txt └── train.py ├── main.cpp └── models ├── .gitkeep ├── README.md └── model_config.json /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/README.md -------------------------------------------------------------------------------- /common/camera_model/birdview_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/birdview_model.cpp -------------------------------------------------------------------------------- /common/camera_model/birdview_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/birdview_model.h -------------------------------------------------------------------------------- /common/camera_model/camera_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_model.cpp -------------------------------------------------------------------------------- /common/camera_model/camera_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_model.h -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/camera_wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/camera_wizard.cpp -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/camera_wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/camera_wizard.h -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/four_point_select_page/four_point_select_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/four_point_select_page/four_point_select_page.cpp -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/four_point_select_page/four_point_select_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/four_point_select_page/four_point_select_page.h -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/four_point_select_page/four_point_select_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/four_point_select_page/four_point_select_page.ui -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/instruction_page/instruction_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/instruction_page/instruction_page.cpp -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/instruction_page/instruction_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/instruction_page/instruction_page.h -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/instruction_page/instruction_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/instruction_page/instruction_page.ui -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/measurement_page/measurement_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/measurement_page/measurement_page.cpp -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/measurement_page/measurement_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/measurement_page/measurement_page.h -------------------------------------------------------------------------------- /common/camera_model/camera_wizard/measurement_page/measurement_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/camera_wizard/measurement_page/measurement_page.ui -------------------------------------------------------------------------------- /common/camera_model/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/camera_model/utils.h -------------------------------------------------------------------------------- /common/onnx_models/argparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/argparse.cpp -------------------------------------------------------------------------------- /common/onnx_models/ctdetLayer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/ctdetLayer.cu -------------------------------------------------------------------------------- /common/onnx_models/ctdetNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/ctdetNet.cpp -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/ctdet2onnx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/ctdet2onnx.md -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/functions/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/functions/deform_conv.py -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/functions/deform_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/functions/deform_pool.py -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/modules/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/modules/deform_conv.py -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/modules/deform_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/modules/deform_pool.py -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/setup.py -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/src/deform_conv_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/src/deform_conv_cuda.cpp -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/src/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/src/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/src/deform_pool_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/src/deform_pool_cuda.cpp -------------------------------------------------------------------------------- /common/onnx_models/docs/README-convert-to-tensorRT/dcn/src/deform_pool_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/docs/README-convert-to-tensorRT/dcn/src/deform_pool_cuda_kernel.cu -------------------------------------------------------------------------------- /common/onnx_models/entroyCalibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/entroyCalibrator.cpp -------------------------------------------------------------------------------- /common/onnx_models/include/argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/include/argparse.h -------------------------------------------------------------------------------- /common/onnx_models/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/include/common.h -------------------------------------------------------------------------------- /common/onnx_models/include/ctdetLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/include/ctdetLayer.h -------------------------------------------------------------------------------- /common/onnx_models/include/ctdetNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/include/ctdetNet.h -------------------------------------------------------------------------------- /common/onnx_models/include/ctdet_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/include/ctdet_utils.h -------------------------------------------------------------------------------- /common/onnx_models/include/entroyCalibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/include/entroyCalibrator.h -------------------------------------------------------------------------------- /common/onnx_models/include/python_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/include/python_api.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/.gitignore -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/.gitmodules -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/CMakeLists.txt -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/DCNv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/DCNv2.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/DCNv2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/DCNv2.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/Dockerfile -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/FancyActivation.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/FancyActivation.cu -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/FancyActivation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/FancyActivation.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/ImporterContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/ImporterContext.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/InstanceNormalization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/InstanceNormalization.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/InstanceNormalization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/InstanceNormalization.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/LICENSE -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/ModelImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/ModelImporter.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/ModelImporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/ModelImporter.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/NvOnnxParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/NvOnnxParser.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/NvOnnxParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/NvOnnxParser.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/NvOnnxParserRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/NvOnnxParserRuntime.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/NvOnnxParserRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/NvOnnxParserRuntime.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/NvOnnxParserTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/NvOnnxParserTypedefs.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/OnnxAttrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/OnnxAttrs.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/OnnxAttrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/OnnxAttrs.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/PluginFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/PluginFactory.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/PluginFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/PluginFactory.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/README.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/ResizeNearest.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/ResizeNearest.cu -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/ResizeNearest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/ResizeNearest.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/ShapedWeights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/ShapedWeights.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/ShapedWeights.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/ShapedWeights.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/Split.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/Split.cu -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/Split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/Split.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/Status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/Status.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/TensorOrWeights.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/TensorOrWeights.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/builtin_op_importers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/builtin_op_importers.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/builtin_op_importers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/builtin_op_importers.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/builtin_plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/builtin_plugins.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/builtin_plugins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/builtin_plugins.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/common.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/dcn_v2_im2col_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/dcn_v2_im2col_cuda.cu -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/dcn_v2_im2col_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/dcn_v2_im2col_cuda.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/getSupportedAPITest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/getSupportedAPITest.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/libnvonnxparser.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/libnvonnxparser.version -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/libnvonnxparser_runtime.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/libnvonnxparser_runtime.version -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/main.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/nv_onnx_parser_bindings.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/nv_onnx_parser_bindings.i -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/nv_onnx_runtime_bindings.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/nv_onnx_runtime_bindings.i -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx2trt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx2trt.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx2trt_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx2trt_common.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx2trt_runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx2trt_runtime.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx2trt_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx2trt_utils.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx2trt_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx2trt_utils.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx_backend_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx_backend_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx_tensorrt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx_tensorrt/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx_tensorrt/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx_tensorrt/backend.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx_tensorrt/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx_tensorrt/parser/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx_tensorrt/runtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx_tensorrt/runtime/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx_tensorrt/tensorrt_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx_tensorrt/tensorrt_engine.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx_trt_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx_trt_backend.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/onnx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/onnx_utils.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/plugin.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/plugin.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/plugin_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/plugin_common.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/serialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/serialize.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/setup.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.circleci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.circleci/build.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.circleci/config.yml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.circleci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.circleci/test.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.clang-format -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.gitignore -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.gitmodules -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.travis.yml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/after_failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/after_failure.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/after_success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/after_success.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/before_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/before_install.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/install.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/script.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/.travis/setup.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/CMakeLists.txt -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/LICENSE -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/MANIFEST.in -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/README.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/RELEASE-MANAGEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/RELEASE-MANAGEMENT.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/VERSION_NUMBER: -------------------------------------------------------------------------------- 1 | 1.3.0 2 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/appveyor.yml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/ONNXConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/ONNXConfig.cmake.in -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/ONNXConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/ONNXConfigVersion.cmake.in -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/Utils.cmake -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/external/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/external/googletest.cmake -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/summary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/summary.cmake -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/unittest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/cmake/unittest.cmake -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/conda/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/conda/build.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/conda/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/conda/meta.yaml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/AddNewOp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/AddNewOp.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Broadcasting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Broadcasting.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Changelog-ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Changelog-ml.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Changelog.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/DimensionDenotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/DimensionDenotation.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Functions-ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Functions-ml.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Functions.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/FunctionsChangelog-ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/FunctionsChangelog-ml.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/FunctionsChangelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/FunctionsChangelog.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/IR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/IR.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/ImplementingAnOnnxBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/ImplementingAnOnnxBackend.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/MetadataProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/MetadataProps.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/ONNXIFI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/ONNXIFI.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/ONNX_logo_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/ONNX_logo_main.png -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/OnnxBackendTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/OnnxBackendTest.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/OpConventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/OpConventions.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Operators-ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Operators-ml.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Operators.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/OpsetVersionConverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/OpsetVersionConverter.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Optimizer.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Overview.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/PythonAPIOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/PythonAPIOverview.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/ShapeInference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/ShapeInference.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/TestCoverage-ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/TestCoverage-ml.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/TestCoverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/TestCoverage.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/TypeDenotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/TypeDenotation.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/VersionConverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/VersionConverter.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/docs/Versioning.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/base.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/base.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/model/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/model/expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/model/expand.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/model/sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/model/sign.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/abs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/abs.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/acos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/acos.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/acosh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/acosh.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/add.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/and.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/and.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/argmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/argmax.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/argmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/argmin.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/asin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/asin.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/asinh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/asinh.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/atan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/atan.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/atanh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/atanh.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/averagepool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/averagepool.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/batchnorm.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/cast.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/ceil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/ceil.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/clip.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/compress.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/concat.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/constant.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/conv.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/cos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/cos.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/cosh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/cosh.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/div.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/div.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/dropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/dropout.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/elu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/elu.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/equal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/equal.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/erf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/erf.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/exp.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/expand.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/eyelike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/eyelike.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/flatten.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/floor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/floor.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/gather.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/gemm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/gemm.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/greater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/greater.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/gru.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/hardmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/hardmax.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/hardsigmoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/hardsigmoid.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/identity.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/isnan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/isnan.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/leakyrelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/leakyrelu.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/less.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/less.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/log.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/logsoftmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/logsoftmax.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/lrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/lrn.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/lstm.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/matmul.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/max.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/maxpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/maxpool.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/maxunpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/maxunpool.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/mean.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/min.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/mul.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/mvn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/mvn.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/neg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/neg.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/not.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/onehot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/onehot.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/or.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/or.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/pad.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/pow.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/prelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/prelu.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reciprocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reciprocal.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducel1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducel1.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducel2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducel2.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducemax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducemax.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducemean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducemean.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducemin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducemin.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reduceprod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reduceprod.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducesum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reducesum.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/relu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/relu.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/reshape.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/rnn.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/scan.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/scatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/scatter.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/selu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/selu.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/shape.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sigmoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sigmoid.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sign.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sin.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sinh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sinh.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/size.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/slice.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/softmax.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/softplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/softplus.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/softsign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/softsign.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/split.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sqrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sqrt.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/squeeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/squeeze.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sub.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/sum.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/tan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/tan.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/tanh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/tanh.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/tile.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/topk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/topk.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/transpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/transpose.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/unsqueeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/unsqueeze.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/upsample.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/node/xor.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/test_case.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/case/utils.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cmd_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cmd_tools.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/driver/test_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/driver/test_driver.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/driver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/driver_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/gtest_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/gtest_utils.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/gtest_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/gtest_utils.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/cpp/test_main.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  B conditionJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  B conditionJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  B conditionJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BzJ@@@ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_dynamic_slice_start_out_of_bounds/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_isnan/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BdepthJ A -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | BdepthJ@A -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | BvaluesJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | ByJ@ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BreducedJ[QA -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BreducedJpB -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BreducedJA_A -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | BreducedJN`C -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | ByJA@A -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | ByJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 |  ByJ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | J333? -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/output_1.pb: -------------------------------------------------------------------------------- 1 | J@ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | J -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | J -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_1.pb: -------------------------------------------------------------------------------- 1 | J@ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_2.pb: -------------------------------------------------------------------------------- 1 | J@@ -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/test_data_set_0/input_0.pb: -------------------------------------------------------------------------------- 1 | J -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/test_data_set_0/output_0.pb: -------------------------------------------------------------------------------- 1 | J -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/loader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/loader/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/report/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/report/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/report/base.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/report/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/report/coverage.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/runner/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/runner/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/runner/item.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/stat_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/backend/test/stat_coverage.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/bin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/bin/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/bin/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/bin/checker.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/checker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/checker.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/checker.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/checker.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/array_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/array_ref.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/assertions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/assertions.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/assertions.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/constants.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/graph_node_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/graph_node_list.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/interned_strings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/interned_strings.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/interned_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/interned_strings.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/ir.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/ir_pb_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/ir_pb_converter.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/ir_pb_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/ir_pb_converter.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/model_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/model_helpers.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/model_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/model_helpers.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/status.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/status.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/stl_backports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/stl_backports.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/common/tensor.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/cpp2py_export.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/cpp2py_export.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/controlflow/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/controlflow/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/controlflow/old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/controlflow/old.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/data_type_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/data_type_utils.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/data_type_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/data_type_utils.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/experiments/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/experiments/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/function.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/function.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/function.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/gen_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/gen_doc.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/generator/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/generator/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/generator/old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/generator/old.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/logical/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/logical/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/logical/old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/logical/old.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/math/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/math/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/math/old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/math/old.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/nn/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/nn/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/nn/old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/nn/old.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/operator_sets-ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/operator_sets-ml.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/operator_sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/operator_sets.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/reduction/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/reduction/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/rnn/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/rnn/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/rnn/old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/rnn/old.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/schema.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/schema.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/schema.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/shape_inference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/shape_inference.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/tensor/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/tensor/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/tensor/old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/tensor/old.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/traditionalml/defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/traditionalml/defs.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/traditionalml/old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/defs/traditionalml/old.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/Protobufs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/Protobufs.ipynb -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/check_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/check_model.ipynb -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/load_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/load_model.ipynb -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/make_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/make_model.ipynb -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/np_array_tensorproto.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/np_array_tensorproto.ipynb -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/optimize_onnx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/optimize_onnx.ipynb -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/resources/tensor.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/resources/tensor.pb -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/save_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/save_model.ipynb -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/shape_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/examples/shape_inference.ipynb -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/gen_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/gen_proto.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/helper.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/mapping.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/numpy_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/numpy_helper.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-ml.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-ml.proto -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-ml.proto3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-ml.proto3 -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators-ml.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators-ml.proto -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators-ml.proto3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators-ml.proto3 -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators.in.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators.in.proto -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators.proto -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators.proto3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators.proto3 -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators_pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx-operators_pb.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx.in.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx.in.proto -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx.proto -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx.proto3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx.proto3 -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_cpp2py_export/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_cpp2py_export/__init__.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_cpp2py_export/checker.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_cpp2py_export/checker.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_cpp2py_export/defs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_cpp2py_export/defs.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_cpp2py_export/optimizer.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_cpp2py_export/optimizer.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnx_pb.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_dummy.c -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_loader.c -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_loader.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_utils.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_utils.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/onnxifi_wrapper.c -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/optimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/optimize.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/optimize.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass_manager.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass_manager.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass_registry.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/pass_registry.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/eliminate_deadend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/eliminate_deadend.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/eliminate_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/eliminate_identity.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/eliminate_nop_pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/eliminate_nop_pad.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/fuse_bn_into_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/fuse_bn_into_conv.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/fuse_pad_into_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/fuse_pad_into_conv.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/nop.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/optimizer/passes/split.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/proto_utils.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/py_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/py_utils.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/shape_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/shape_inference.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/shape_inference/implementation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/shape_inference/implementation.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/shape_inference/implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/shape_inference/implementation.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/string_utils.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/__init__.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/basic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/basic_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/checker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/checker_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/function_get_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/function_get_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/onnxifi_backend_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/onnxifi_backend_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/op_reg_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/op_reg_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/shape_inference_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/shape_inference_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/cpp/test_main.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/elu_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/elu_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/helper_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/numpy_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/numpy_helper_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/optimizer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/optimizer_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/relu_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/relu_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/schema_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/shape_inference_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/shape_inference_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/test_backend_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/test_backend_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/utils_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/version_converter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/test/version_converter_test.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/tools/net_drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/tools/net_drawer.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/utils.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/BaseConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/BaseConverter.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/adapters/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/adapters/adapter.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/adapters/gemm_6_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/adapters/gemm_6_7.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/adapters/gemm_7_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/adapters/gemm_7_6.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/adapters/sum_8_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/adapters/sum_8_7.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/convert.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/convert.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/helper.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/onnx/version_converter/helper.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/pyproject.toml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/setup.cfg -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/setup.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/README.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/__init__.pyi: -------------------------------------------------------------------------------- 1 | __version__ = ... # type: str 2 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/any_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/any_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/any_test_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/any_test_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/api_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/api_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/compiler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/descriptor.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/descriptor.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/descriptor_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/descriptor_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/descriptor_pool.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/descriptor_pool.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/duration_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/duration_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/empty_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/empty_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/field_mask_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/field_mask_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/internal/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/internal/decoder.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/internal/decoder.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/internal/encoder.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/internal/encoder.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/map_unittest_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/map_unittest_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/message.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/message.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/message_factory.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/message_factory.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/reflection.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/reflection.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/struct_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/struct_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/symbol_database.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/symbol_database.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/timestamp_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/timestamp_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/type_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/type_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/unittest_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/unittest_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/wrappers_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/stubs/google/protobuf/wrappers_pb2.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/.clang-format -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/.gitignore -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/.travis.yml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/AUTHORS -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/BUILD.bazel -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/CONTRIBUTING.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/CONTRIBUTORS -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/LICENSE -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/README.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/WORKSPACE -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/appveyor.yml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/cmake/Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake") 2 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/cmake/std_regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/cmake/std_regex.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/cmake/thread_safety_attributes.cpp: -------------------------------------------------------------------------------- 1 | #define HAVE_THREAD_SAFETY_ATTRIBUTES 2 | #include "../src/mutex.h" 3 | 4 | int main() {} 5 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/docs/tools.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/mingw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/mingw.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/releasing.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/CMakeLists.txt -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/arraysize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/arraysize.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/benchmark.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/check.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/colorprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/colorprint.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/colorprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/colorprint.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/complexity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/complexity.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/complexity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/complexity.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/counter.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/counter.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/csv_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/csv_reporter.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/cycleclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/cycleclock.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/json_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/json_reporter.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/log.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/mutex.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/re.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/reporter.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/sleep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/sleep.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/sleep.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/statistics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/statistics.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/statistics.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/string_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/string_util.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/string_util.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/sysinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/sysinfo.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/thread_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/thread_manager.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/thread_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/thread_timer.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/timers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/timers.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/src/timers.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/BUILD -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/CMakeLists.txt -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/basic_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/basic_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/cxx03_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/cxx03_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/filter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/filter_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/fixture_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/fixture_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/map_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/map_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/options_test.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/output_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/test/output_test.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/tools/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/tools/compare.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/tools/gbench/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/tools/gbench/util.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/tools/strip_asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/benchmark/tools/strip_asm.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.appveyor.yml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.gitignore -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.gitmodules -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.readthedocs.yml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/.travis.yml -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/CMakeLists.txt -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/CONTRIBUTING.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/LICENSE -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/MANIFEST.in -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/README.md -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/Doxyfile -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/basics.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/benchmark.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/benchmark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/benchmark.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/changelog.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/classes.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/compiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/compiling.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/conf.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/faq.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/index.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/intro.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/limitations.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/reference.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/release.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | breathe == 4.5.0 2 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/docs/upgrade.rst -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/pybind11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/pybind11/__init__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/pybind11/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/pybind11/__main__.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/pybind11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/pybind11/_version.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/setup.cfg -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/setup.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/CMakeLists.txt -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/conftest.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/object.h -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/pytest.ini -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_buffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_buffers.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_class.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_eigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_eigen.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_enum.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_enum.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_eval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_eval.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_eval.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_stl.cpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tests/test_stl.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/libsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/libsize.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/mkdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/mkdoc.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/tools/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/tools/__init__.pyi -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/tools/gen_coverage_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/tools/gen_coverage_report.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/tools/mypy-onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/tools/mypy-onnx.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/tools/protobuf-bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/tools/protobuf-bench.cc -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/tools/protoc-gen-mypy.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python -u %0\..\protoc-gen-mypy.py 3 | -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/tools/protoc-gen-mypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/tools/protoc-gen-mypy.py -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/third_party/onnx/tools/update_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/third_party/onnx/tools/update_doc.sh -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/toposort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/toposort.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/trt_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/trt_utils.hpp -------------------------------------------------------------------------------- /common/onnx_models/onnx-tensorrt/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/onnx-tensorrt/utils.hpp -------------------------------------------------------------------------------- /common/onnx_models/python_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/python_api.cpp -------------------------------------------------------------------------------- /common/onnx_models/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/onnx_models/utils.cpp -------------------------------------------------------------------------------- /common/uff_models/classification_net/classification_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/classification_net/classification_net.cpp -------------------------------------------------------------------------------- /common/uff_models/classification_net/classification_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/classification_net/classification_net.h -------------------------------------------------------------------------------- /common/uff_models/common/dumpTFWts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/dumpTFWts.py -------------------------------------------------------------------------------- /common/uff_models/common/getOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/getOptions.cpp -------------------------------------------------------------------------------- /common/uff_models/common/include/BatchStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/BatchStream.h -------------------------------------------------------------------------------- /common/uff_models/common/include/EntropyCalibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/EntropyCalibrator.h -------------------------------------------------------------------------------- /common/uff_models/common/include/ErrorRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/ErrorRecorder.h -------------------------------------------------------------------------------- /common/uff_models/common/include/argsParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/argsParser.h -------------------------------------------------------------------------------- /common/uff_models/common/include/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/buffers.h -------------------------------------------------------------------------------- /common/uff_models/common/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/common.h -------------------------------------------------------------------------------- /common/uff_models/common/include/filesystem_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/filesystem_include.h -------------------------------------------------------------------------------- /common/uff_models/common/include/getOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/getOptions.h -------------------------------------------------------------------------------- /common/uff_models/common/include/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/half.h -------------------------------------------------------------------------------- /common/uff_models/common/include/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/logger.h -------------------------------------------------------------------------------- /common/uff_models/common/include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/logging.h -------------------------------------------------------------------------------- /common/uff_models/common/include/object_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/object_class.h -------------------------------------------------------------------------------- /common/uff_models/common/include/parserOnnxConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/parserOnnxConfig.h -------------------------------------------------------------------------------- /common/uff_models/common/include/sampleConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/sampleConfig.h -------------------------------------------------------------------------------- /common/uff_models/common/include/sampleEngines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/sampleEngines.h -------------------------------------------------------------------------------- /common/uff_models/common/include/sampleOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/sampleOptions.h -------------------------------------------------------------------------------- /common/uff_models/common/include/sampleUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/sampleUtils.h -------------------------------------------------------------------------------- /common/uff_models/common/include/uff_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/include/uff_model.h -------------------------------------------------------------------------------- /common/uff_models/common/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/logger.cpp -------------------------------------------------------------------------------- /common/uff_models/common/sampleEngines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/sampleEngines.cpp -------------------------------------------------------------------------------- /common/uff_models/common/sampleOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/sampleOptions.cpp -------------------------------------------------------------------------------- /common/uff_models/common/uff_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/common/uff_model.cpp -------------------------------------------------------------------------------- /common/uff_models/unet/unet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/unet/unet.cpp -------------------------------------------------------------------------------- /common/uff_models/unet/unet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/uff_models/unet/unet.h -------------------------------------------------------------------------------- /common/utils/file_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/utils/file_storage.cpp -------------------------------------------------------------------------------- /common/utils/include/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/utils/include/camera.h -------------------------------------------------------------------------------- /common/utils/include/file_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/utils/include/file_storage.h -------------------------------------------------------------------------------- /common/utils/include/filesystem_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/utils/include/filesystem_include.h -------------------------------------------------------------------------------- /common/utils/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/utils/include/timer.h -------------------------------------------------------------------------------- /common/utils/include/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/utils/include/utility.h -------------------------------------------------------------------------------- /common/utils/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/utils/timer.cpp -------------------------------------------------------------------------------- /common/utils/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/common/utils/utility.cpp -------------------------------------------------------------------------------- /configs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/configs/config.h -------------------------------------------------------------------------------- /configs/config_lane_detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/configs/config_lane_detection.h -------------------------------------------------------------------------------- /input_folder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/README.md -------------------------------------------------------------------------------- /input_folder/_25lUt8pBKpoZRRZXlPkCQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_25lUt8pBKpoZRRZXlPkCQ.jpg -------------------------------------------------------------------------------- /input_folder/_2TmVR1rYfo6VWCO5Ke4wg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_2TmVR1rYfo6VWCO5Ke4wg.jpg -------------------------------------------------------------------------------- /input_folder/_2WngOxw65t8UrBoixDOTQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_2WngOxw65t8UrBoixDOTQ.jpg -------------------------------------------------------------------------------- /input_folder/_3QpPoxYKEY-_RkZ35Qz3g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_3QpPoxYKEY-_RkZ35Qz3g.jpg -------------------------------------------------------------------------------- /input_folder/_3Xr3qO0T_jNou7lFwUu9g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_3Xr3qO0T_jNou7lFwUu9g.jpg -------------------------------------------------------------------------------- /input_folder/_4jWdbbCdQ7tqYcwLVvP7g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_4jWdbbCdQ7tqYcwLVvP7g.jpg -------------------------------------------------------------------------------- /input_folder/_7rvmK5eUgZ5mw7mGRGDyA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_7rvmK5eUgZ5mw7mGRGDyA.jpg -------------------------------------------------------------------------------- /input_folder/_9SlBIX2glCQxelEqCEHCw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_9SlBIX2glCQxelEqCEHCw.jpg -------------------------------------------------------------------------------- /input_folder/_BZp9fQ0PY2v7LGEesKWwg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_BZp9fQ0PY2v7LGEesKWwg.jpg -------------------------------------------------------------------------------- /input_folder/_BnmwE5ZtULGoXoo6MGLnQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_BnmwE5ZtULGoXoo6MGLnQ.jpg -------------------------------------------------------------------------------- /input_folder/_E0A_IDDG90bXutXbE8lPQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_E0A_IDDG90bXutXbE8lPQ.jpg -------------------------------------------------------------------------------- /input_folder/_EiQ4u-v_-Uxe1fYTyPT1Q.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_EiQ4u-v_-Uxe1fYTyPT1Q.jpg -------------------------------------------------------------------------------- /input_folder/_GpNcVfNFXzK2rKQie0QLg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_GpNcVfNFXzK2rKQie0QLg.jpg -------------------------------------------------------------------------------- /input_folder/_HnWguqEbRCphUquTMrCCA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_HnWguqEbRCphUquTMrCCA.jpg -------------------------------------------------------------------------------- /input_folder/_KWGXHTqPT-2Tw1OY_L_Gg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_KWGXHTqPT-2Tw1OY_L_Gg.jpg -------------------------------------------------------------------------------- /input_folder/_LZXg8S79gw07HNxh5cPPg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_LZXg8S79gw07HNxh5cPPg.jpg -------------------------------------------------------------------------------- /input_folder/_NKsSzALW2WKIXGfdcP0DA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_NKsSzALW2WKIXGfdcP0DA.jpg -------------------------------------------------------------------------------- /input_folder/_NO4CAiTE-WwT_m35Jog3A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_NO4CAiTE-WwT_m35Jog3A.jpg -------------------------------------------------------------------------------- /input_folder/_S7ROKytFvHpEx8rOg43dw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_S7ROKytFvHpEx8rOg43dw.jpg -------------------------------------------------------------------------------- /input_folder/_S9YuPJBXltb632wb7GnWQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_S9YuPJBXltb632wb7GnWQ.jpg -------------------------------------------------------------------------------- /input_folder/_SFV9WjMjF8HXWDju47rnA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_SFV9WjMjF8HXWDju47rnA.jpg -------------------------------------------------------------------------------- /input_folder/_SaYzlQ4UkTgXY0jCAnzGw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_SaYzlQ4UkTgXY0jCAnzGw.jpg -------------------------------------------------------------------------------- /input_folder/_WJr6HbBx2-CjlXR91mrMQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_WJr6HbBx2-CjlXR91mrMQ.jpg -------------------------------------------------------------------------------- /input_folder/__IoBfs3I6vB5ND-vqXK1A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/__IoBfs3I6vB5ND-vqXK1A.jpg -------------------------------------------------------------------------------- /input_folder/_bwhU2Obiph48gnjzLqGeA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_bwhU2Obiph48gnjzLqGeA.jpg -------------------------------------------------------------------------------- /input_folder/_dONBF4K7nJXt3A7y181BA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_dONBF4K7nJXt3A7y181BA.jpg -------------------------------------------------------------------------------- /input_folder/_dPxSDKxt4Tls91X95Ju9w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_dPxSDKxt4Tls91X95Ju9w.jpg -------------------------------------------------------------------------------- /input_folder/_dSsQg3QHNkJeHv5knS7Dw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_dSsQg3QHNkJeHv5knS7Dw.jpg -------------------------------------------------------------------------------- /input_folder/_mlaN_AnJUb5ba-J_VODDA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_mlaN_AnJUb5ba-J_VODDA.jpg -------------------------------------------------------------------------------- /input_folder/_sKlqO3yqBJi6ZBizcgJaQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_sKlqO3yqBJi6ZBizcgJaQ.jpg -------------------------------------------------------------------------------- /input_folder/_tG9_OEJW0pX6bFzi-RVzw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_tG9_OEJW0pX6bFzi-RVzw.jpg -------------------------------------------------------------------------------- /input_folder/_tKwEZJoJYzmVL4uKl9NDw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_tKwEZJoJYzmVL4uKl9NDw.jpg -------------------------------------------------------------------------------- /input_folder/_wPsTEpCES5bhuiajKCUsw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_wPsTEpCES5bhuiajKCUsw.jpg -------------------------------------------------------------------------------- /input_folder/_wxw7N4Uaab48Z2xTKGYwQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/_wxw7N4Uaab48Z2xTKGYwQ.jpg -------------------------------------------------------------------------------- /input_folder/test_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/input_folder/test_config.txt -------------------------------------------------------------------------------- /lane_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection/CMakeLists.txt -------------------------------------------------------------------------------- /lane_detection/lane_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection/lane_detector.cpp -------------------------------------------------------------------------------- /lane_detection/lane_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection/lane_detector.h -------------------------------------------------------------------------------- /lane_detection/lane_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection/lane_line.h -------------------------------------------------------------------------------- /lane_detection/test_lane_camera_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection/test_lane_camera_reader.cpp -------------------------------------------------------------------------------- /lane_detection/test_lane_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection/test_lane_detector.cpp -------------------------------------------------------------------------------- /lane_detection/test_lane_identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection/test_lane_identifier.cpp -------------------------------------------------------------------------------- /lane_detection/test_lane_video_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection/test_lane_video_player.cpp -------------------------------------------------------------------------------- /lane_detection_NN/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/base/__init__.py -------------------------------------------------------------------------------- /lane_detection_NN/base/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/base/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /lane_detection_NN/base/__pycache__/functional.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/base/__pycache__/functional.cpython-36.pyc -------------------------------------------------------------------------------- /lane_detection_NN/base/__pycache__/objects.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/base/__pycache__/objects.cpython-36.pyc -------------------------------------------------------------------------------- /lane_detection_NN/base/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/base/functional.py -------------------------------------------------------------------------------- /lane_detection_NN/base/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/base/objects.py -------------------------------------------------------------------------------- /lane_detection_NN/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/config.py -------------------------------------------------------------------------------- /lane_detection_NN/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/demo.py -------------------------------------------------------------------------------- /lane_detection_NN/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/losses.py -------------------------------------------------------------------------------- /lane_detection_NN/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/requirements.txt -------------------------------------------------------------------------------- /lane_detection_NN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/lane_detection_NN/train.py -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/main.cpp -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/models/README.md -------------------------------------------------------------------------------- /models/model_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bill-Bi/ADAS/HEAD/models/model_config.json --------------------------------------------------------------------------------